* doc/lispref/keymaps.texi (Creating Keymaps): Update make-keymap result.
[emacs.git] / lisp / ChangeLog
blob26df503156dd0865ad88b76a5ffe790fa0579118
1 2013-02-02  Alan Mackenzie  <acm@muc.de>
3         Fix bug in the state cache mechanism.  Remove 'BOD "strategy".  Refactor.
4         * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
5         (c-parse-state-get-strategy): Don't return 'BOD any more.
6         (c-append-lower-brace-pair-to-state-cache): Extra parameter HERE
7         instead of narrowing.  Widen to top of buffer before searching
8         backwards for a brace pair.
9         (c-state-push-any-brace-pair): Add HERE parameter to function
10         call.
11         (c-append-to-state-cache): Extra parameter HERE in place of
12         narrowing.  Narrow to parameter HERE, in place of being called
13         narrowed.
14         (c-remove-stale-state-cache): Extra parameter HERE in place of
15         narrowing.  Check there's an open brace in the cache before
16         searching for its match.
17         (c-invalidate-state-cache-1): Add HERE parameter to function call.
18         (c-parse-state-1): Don't narrow here for 'forward strategy,
19         instead passing extra parameter HERE to several functions.  Remove
20         'BOD strategy.
22 2013-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
24         * mouse.el (mouse-drag-track): Always deactivate the mark before
25         running the final event's command since that command is in charge of
26         activating the mark if needed (bug#13523).
28 2013-02-01  Juri Linkov  <juri@jurta.org>
30         * replace.el (perform-replace): Move let-bindings of isearch-*
31         variables deeper to the loop that searches for the next match.
32         Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
33         Use `isearch-search-fun-default' instead of `isearch-search-fun'.
34         (Bug#13579)
36         * isearch.el (isearch-search-fun-default): Check for null
37         first element of isearch-cmds as a precaution when it's used
38         with inactive isearch.
40 2013-02-01  Andrew W. Nosenko  <andrew.w.nosenko@gmail.com>  (tiny change)
42         * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
43         error when buffer in question is narrowed so position 1 is out of
44         visible part.
46 2013-01-31  Glenn Morris  <rgm@gnu.org>
48         * textmodes/remember.el (remember-clipboard): Doc fix.
50 2013-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
52         * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
53         properties (bug#13179).
55 2013-01-30  Glenn Morris  <rgm@gnu.org>
57         * mouse.el (mouse-drag-line): Avoid pushing same event onto
58         unread-command-events twice in some cases.  This tries to implement
59         the 2012-07-26 changes in a different way.  (Bug#13560)
61 2013-01-30  Fabián Ezequiel Gallina  <fgallina@cuca>
63         * progmodes/python.el
64         (python-pdbtrack-comint-output-filter-function): Enhancements on
65         stacktrace detection.  (thanks @gnovak)
67 2013-01-30  Glenn Morris  <rgm@gnu.org>
69         * imenu.el (imenu-default-create-index-function):
70         Put back a version of the infinite loop test removed 2013-01-23.
72 2013-01-28  Fabián Ezequiel Gallina  <fgallina@cuca>
74         * progmodes/python.el (python-shell-parse-command):
75         Find python-shell-interpreter with modified environment.
77 2013-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
79         * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
81 2013-01-24  Fabián Ezequiel Gallina  <fgallina@cuca>
83         * progmodes/python.el: Enhancements to header documentation about
84         skeletons.  (Bug#5716)
86 2013-01-23  Fabián Ezequiel Gallina  <fgallina@cuca>
88         * imenu.el (imenu-default-create-index-function): Remove useless
89         infinite loop check.  (Bug#13438)
91 2013-01-23  Alan Mackenzie  <acm@muc.de>
93         Fix a bug in the state cache mechanism.  Refactor this a bit.
95         * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
96         `cache-pos' element from the return value.
97         (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
98         buffer to enable proper searching from beyond HERE.  Amend the
99         test for detecting the sought brace pair.  Amend the value written
100         to the "brace desert cache" when the brace isn't found.
101         (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
102         and several other variables analogously.
103         (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
104         parameter to a locally calculated variable.
105         (c-parse-state-1): Change the calling conventions to the two
106         defuns involving `cache-pos'.
108 2013-01-23  Chong Yidong  <cyd@gnu.org>
110         * xml.el (xml-entity-or-char-ref-re): Fix regexp.
112 2013-01-18  Leo Liu  <sdl.web@gmail.com>
114         * dired.el (dired-get-marked-files): Prune erroneous values due to
115         last change.  (Bug#13152)
117 2013-01-17  Glenn Morris  <rgm@gnu.org>
119         * progmodes/etags.el (tags-table-check-computed-list):
120         Preserve point in tags buffer.  (Bug#13412)
122 2013-01-16  Glenn Morris  <rgm@gnu.org>
124         * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
126         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
127         Revert 2012-12-29 change.  Ref:
128         <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00360.html>
130 2013-01-10  Fabián Ezequiel Gallina  <fgallina@cuca>
132         * progmodes/python.el (python-nav-end-of-statement):
133         Fix cornercase when handling multiline strings.
135 2013-01-10  Glenn Morris  <rgm@gnu.org>
137         * emacs-lisp/authors.el (authors-ignored-files)
138         (authors-valid-file-names, authors-renamed-files-alist):
139         Add some more entries.
141 2013-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
143         * image-mode.el (image-mode-winprops): Don't throw away the fallback
144         `t' pseudo-window entry.
146 2013-01-09  Alan Mackenzie  <acm@muc.de>
148         Fix bugs in the c-parse-state mechanism.  Reuse some markers
149         instead of continually generating new ones.
151         * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
152         (c-state-old-cpp-end-marker): New variables.
153         (c-append-lower-brace-pair-to-state-cache): Start a backward
154         search for "}" definitively outside CPP constructs.
155         (c-remove-stale-state-cache): Inform the caller of a need to
156         search back for a brace pair in certain circumstances.
157         (c-state-maybe-marker): New macro.
158         (c-parse-state): Reuse markers when appropriate.
160 2013-01-09  Glenn Morris  <rgm@gnu.org>
162         * simple.el (execute-extended-command): Doc fix.
163         Bind prefix-arg around read-extended-command, for prompt.  (Bug#13395)
165 2013-01-09  Chong Yidong  <cyd@gnu.org>
167         * faces.el (read-face-name): Doc fix.
169 2013-01-09  Glenn Morris  <rgm@gnu.org>
171         * emacs-lisp/trace.el (trace-function, trace-function-background):
172         Doc fix.
174 2013-01-09  Juri Linkov  <juri@jurta.org>
176         * international/mule-cmds.el (read-char-by-name): Move let-binding
177         of completion-ignore-case around completing-read to fix regression
178         exhibited by the test case `C-x 8 RET *acc TAB' and caused by
179         `string-match-p' using the nil value of `case-fold-search' and
180         `completion-ignore-case' in `completion-pcm--all-completions'.
181         (Bug#12615).
183 2013-01-07  Glenn Morris  <rgm@gnu.org>
185         * progmodes/compile.el (compilation-parse-errors):
186         Fix typo.  (Bug#13369)
188 2013-01-07  Vitalie Spinu  <spinuvit@gmail.com>  (tiny change)
190         * comint.el (comint-send-input): Check size of buffer before
191         waiting for process output, in case already accepted.  (Bug#13290)
193 2013-01-04  Michael Albinus  <michael.albinus@gmx.de>
195         * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
196         non-negative integers.  Otherwise, the default values are used.
197         (tramp-convert-file-attributes): Convert uid and gid to integers.
199 2013-01-03  Glenn Morris  <rgm@gnu.org>
201         * term.el (term-handle-colors-array): Ensure face attributes
202         are fully specified, not nil.  (Bug#13337)
204         * term.el (term-default-fg-color, term-default-bg-color):
205         Fix custom type.
207         * progmodes/etags.el (tags-compression-info-list): Doc fix.
208         (tag-find-file-of-tag-noselect): Check auto-compression-mode
209         rather than 'jka-compr being loaded.  (Bug#13338)
211         * subr.el (eval-after-load): Don't purecopy the form, so that it
212         can be nconc'd later on; reverts 2009-11-11 change.  (Bug#13331)
214         * emacs-lisp/byte-run.el (defun): Place cl declarations
215         after any interactive spec.  (Bug#13265)
217 2012-12-31  Andreas Schwab  <schwab@linux-m68k.org>
219         * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
220         defun.  Don't check for DECL if DOCSTRING isn't a string.
221         (defun): Likewise.
223 2012-12-31  Glenn Morris  <rgm@gnu.org>
225         * eshell/em-cmpl.el (eshell-pcomplete):
226         More thoroughly imitate pcomplete.  (Bug#13293)
228         * files.el (parse-colon-path): Doc fix.  (Bug#12351)
229         Return nil for empty path elements.  (Bug#13296)
231 2012-12-31  Fabián Ezequiel Gallina  <fgallina@cuca>
233         * progmodes/python.el (python-nav-end-of-statement): Rewrite in
234         order to improve efficiency (Based on Daniel Colascione's
235         <dancol@dancol.org> patch).  (Bug#13182)
237 2012-12-31  Glenn Morris  <rgm@gnu.org>
239         * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
241 2012-12-31  Fabián Ezequiel Gallina  <fgallina@cuca>
243         * progmodes/python.el: Support other commands triggering
244         python-indent-line so indentation cycling continues to work.
245         (python-indent-trigger-commands): New defcustom.
246         (python-indent-line): Use it.
248 2012-12-31  Fabián Ezequiel Gallina  <fgallina@cuca>
250         * progmodes/python.el (python-shell-send-region): Add blank lines
251         for non sent code so backtraces remain correct.
253 2012-12-31  Andreas Schwab  <schwab@linux-m68k.org>
255         * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
256         neither DOCSTRING nor DECL was given.  (Bug#13316)
258 2012-12-30  Glenn Morris  <rgm@gnu.org>
260         * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
261         Remove unnecessary/buggy autoloads (missing interactive).  (Bug#13294)
262         (rmail-summary-displayed, rmail-summary): Declare.
263         (mairix-rmail-display): Just require rmail.
265 2012-12-29  Chong Yidong  <cyd@gnu.org>
267         * emacs-lisp/package.el (package-untar-buffer): Improve integrity
268         check for the tarball contents.
270 2012-12-29  Matt Fidler  <matt.fidler@alcon.com>  (tiny change)
272         * emacs-lisp/package.el (package-untar-buffer): Handle problematic
273         tarfile content listings (Bug#13136).
275 2012-12-29  Mark Lillibridge  <mark.lillibridge@hp.com>
277         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
278         Insert the undecoded text of the message being forwarded.  (Bug#9521)
280 2012-12-28  Michael Albinus  <michael.albinus@gmx.de>
282         * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
283         integers, if they are real numbers.  (Bug#13282)
285 2012-12-26  Dmitry Gutov  <dgutov@yandex.ru>
287         * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
288         "module" and "def" to have indentation before them.
289         Regression from 109911 (see the new test).
291 2012-12-24  Dmitry Gutov  <dgutov@yandex.ru>
293         * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
295 2012-12-23  Alan Mackenzie  <acm@muc.de>
297         Speed up fontification where there's large brace blocks.
298         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
299         to a call of c-beginning-of-decl-1.
301 2012-12-21  Chong Yidong  <cyd@gnu.org>
303         * sort.el (sort-subr): Doc fix (Bug#13056).
305 2012-12-20  Bastien Guerry  <bzg@gnu.org>
307         * progmodes/etags.el (tags-search): Fix typo.  Bug #13232.
309 2012-12-11  Alan Mackenzie  <acm@muc.de>
311         Make CC Mode not hang when _some_ lines end in CRLF.  Bug #11841.
312         * progmodes/cc-engine.el (c-backward-comments): Add code to work
313         around `forward-comment' not recognizing ^M as whitespace.
315 2012-12-11  Fabián Ezequiel Gallina  <fgallina@cuca>
317         * progmodes/python.el (python-skeleton-class)
318         (python-skeleton-def): Do not add space after defun name.
320 2012-12-09  Chong Yidong  <cyd@gnu.org>
322         * simple.el (set-mark-default-inactive): Mark as obsolete, for
323         removal after 24.3.
325 2012-12-08  Dani Moncayo <dmoncayo@gmail.com>
327         * simple.el (just-one-space): Doc fix.
329 2012-12-07  Eli Zaretskii  <eliz@gnu.org>
331         * textmodes/texinfo.el (texinfo-enable-quote-envs):
332         Add "smallexample".
334 2012-12-07  Le Wang  <l26wang@gmail.com>
336         * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
337         narrowed buffer (bug#12361).
339 2012-12-07  Michael Heerdegen  <michael_heerdegen@web.de>
341         * emacs-lisp/debug.el (debug): Fix hard-coded frame counts (bug#10025).
342         Virtually backported from trunk.
344 2012-12-07  Juanma Barranquero  <lekktu@gmail.com>
346         * vc/vc-hooks.el (vc-state): Doc fix.
348 2012-12-06  Glenn Morris  <rgm@gnu.org>
350         * mail/rmail.el (rmail-maybe-display-summary):
351         Preserve buffer, in case select-window changes it.  (Bug#13066)
353 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
355         * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
356         cl-load-hook where they belong.
358 2012-12-06  Chong Yidong  <cyd@gnu.org>
360         * ffap.el (ffap-replace-file-component): Fix typo.
362 2012-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
364         * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
365         fix open-paren-like token test (bug#12785).
367 2012-12-04  Glenn Morris  <rgm@gnu.org>
369         * mail/rmailsum.el (rmail-new-summary): Tweak for
370         rmail-maybe-display-summary changing buffer.  (Bug#13066)
372 2012-12-03  Juri Linkov  <juri@jurta.org>
374         * info.el (Info-fontify-node): Don't hide the last newline.
375         (Bug#12272)
377 2012-12-01  Leo Liu  <sdl.web@gmail.com>
379         * files.el (dir-locals-read-from-file): Check file non-empty
380         before reading.  (Bug#13038)
382 2012-11-28  Glenn Morris  <rgm@gnu.org>
384         * jka-cmpr-hook.el (jka-compr-get-compression-info):
385         Remove any version extension before checking filename.  (Bug#13006)
386         (jka-compr-compression-info-list): Belated :version bump.
388 2012-11-28  Chong Yidong  <cyd@gnu.org>
390         * simple.el (transient-mark-mode): Doc fix (Bug#11523).
392         * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
393         (buffer-menu): Doc fix (Bug#12294).
395 2012-11-27  Roland Winkler  <winkler@gnu.org>
397         * calendar/diary-lib.el (diary-header-line-format): Use keybinding
398         of diary-show-all-entries in the diary buffer (Bug#12994).
400 2012-11-27  Michael Albinus  <michael.albinus@gmx.de>
402         * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
403         "<STDIN>".  This is binary safe.
405 2012-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
407         * textmodes/table.el (table-insert): Don't use `symbol-name' on
408         lexically scoped variables (bug#13005).
410 2012-11-26  Glenn Morris  <rgm@gnu.org>
412         * vc/vc-hooks.el (vc-mistrust-permissions):
413         Default to t, to avoid data-loss.  (Bug#11490)
415 2012-11-26  Fabián Ezequiel Gallina  <fgallina@cuca>
417         * progmodes/python.el (python-indent-guess-indent-offset):
418         If indentation is guessed make python-indent-offset buffer-local.
420         Fix Imenu regression.
421         * progmodes/python.el (python-nav-beginning-of-defun):
422         Fix forward movement when statement(s) separates point from defun.
423         (python-imenu-prev-index-position): New function.
425 2012-11-26  Eli Zaretskii  <eliz@gnu.org>
427         * subr.el (buffer-file-type): Declare with defvar-local.  Doc fix.
429         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
430         Don't set buffer-file-type.  Return nil.  (Bug#12989)
432 2012-11-26  Glenn Morris  <rgm@gnu.org>
434         * hippie-exp.el (hippie-expand-try-functions-list):
435         Re-autoload it.  (Bug#12982)
437 2012-11-25  Eli Zaretskii  <eliz@gnu.org>
439         * descr-text.el (describe-char-padded-string):
440         Call internal-char-font only on GUI frames.  (Bug#11964)
442 2012-11-24  Andreas Schwab  <schwab@linux-m68k.org>
444         * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
445         and obsoletion message.
447 2012-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
449         * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
450         the constructs to keep outside of the `cl-block' (bug#12977).
452 2012-11-24  Chong Yidong  <cyd@gnu.org>
454         * mouse.el (mouse-drag-line): Even if the line is not draggable,
455         keep reading until we get the up-event anyway, in order to process
456         the up-event for mouse-1-click-follows-link (Bug#12971).
458 2012-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
460         * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
461         lexical-binding (bug#12938).
463 2012-11-23  Wolfgang Jenkner  <wjenkner@inode.at>
465         * image-mode.el (image-transform-check-size): Use assertions only
466         for images of type imagemagick.
468         Otherwise no error, image-transform-fit-to-{width,height} is
469         silently ignored, as before.  Doc fix.
471 2012-11-23  Chong Yidong  <cyd@gnu.org>
473         * faces.el (color-defined-p): Doc fix (Bug#12853).
475 2012-11-23  Juri Linkov  <juri@jurta.org>
477         * dired.el (dired-mark): Add optional arg `interactive'.
478         Check for `use-region-p' if `interactive' is non-nil.
479         (dired-unmark, dired-flag-file-deletion): Add optional arg
480         `interactive'.  Call `dired-mark' with the arg `interactive'.
481         (Bug#10624)
483 2012-11-23  Juri Linkov  <juri@jurta.org>
485         * wdired.el: Revert 2012-10-17 change partly and replace it with
486         Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
487         (wdired-finish-edit): Add marks for new file names to
488         `wdired-old-marks'.  Restore marks using `dired-mark-remembered'
489         after `revert-buffer'.
490         (wdired-do-renames): Remove calls to `dired-remove-file',
491         `dired-add-file', `dired-add-entry'.  (Bug#11795)
493 2012-11-21  Alan Mackenzie  <acm@muc.de>
495         * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
497         Fix bugs in the state cache.  Enhance a debugging mechanism.
498         * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
499         "brace at column zero" strategy for C++.
500         (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
501         (c-parse-state-point): New variable.
502         (c-record-parse-state-state): Record old parse state with
503         `copy-tree'.  Record previous value of point.
504         (c-debug-parse-state-double-cons): New debugging function.
505         (c-debug-parse-state): Call the above new function.
506         (c-toggle-parse-state-debug): Output a confirmatory message.
508         * progmodes/cc-mode.el (c-before-change, c-after-change):
509         Call c-invalidate-state-cache from `c-before-change' instead of
510         `c-after-change'.
512 2012-11-20  Daniel Colascione  <dancol@dancol.org>
514         * term/w32-win.el (cygwin-convert-path-from-windows):
515         Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
516         This change is a backport from trunk.
518 2012-11-20  Eli Zaretskii  <eliz@gnu.org>
520         * simple.el (line-move): Don't call line-move-partial if
521         scroll-conservatively is in effect.  (Bug#12927)
523 2012-11-20  Michael Albinus  <michael.albinus@gmx.de>
525         * net/trampver.el (tramp-version): Downgrade to 2.2.6-24.3, in
526         order to distinguish from trunk.
528 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
530         * emacs-lisp/byte-run.el (defun-declarations-alist): Don't accept
531         non-symbols for compiler macros (yet).
533         * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
534         Fallback on completion-at-point rather than
535         pcomplete-expand-and-complete, and only if pcomplete actually failed.
536         (eshell-cmpl-initialize): Setup completion-at-point.
538         * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
540         * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
542 2012-11-19  Michael Albinus  <michael.albinus@gmx.de>
544         * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
545         are remote, check out-of-band property for both.
547 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
549         * window.el (switch-to-buffer): Re-add the warning that was lost in the
550         code rewrite.
552 2012-11-18  Paul Eggert  <eggert@cs.ucla.edu>
554         More minor time fixes.
555         * calendar/time-date.el: Commentary fix.
556         * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
557         too much other code depends on (0 0) time stamps.
558         * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
559         Add a couple of FIXME comments.
561         Minor cleanup for times as lists of four integers.
562         * files.el (dir-locals-directory-cache):
563         * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
564         Doc fixes.
565         * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
566         * ps-bdf.el (bdf-file-newer-than-time):
567         Process four-integers time stamps, not two.  Doc fixes.
569 2012-11-18  Glenn Morris  <rgm@gnu.org>
571         * image.el (insert-image, insert-sliced-image): Doc fix.
573 2012-11-17  Chong Yidong  <cyd@gnu.org>
575         * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
576         (Bug#12810).
578 2012-11-17  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
580         * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
581         response when the target file is in a subdirectory (Bug#12757).
583 2012-11-17  Chong Yidong  <cyd@gnu.org>
585         * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
587 2012-11-17  Glenn Morris  <rgm@gnu.org>
589         * woman.el (woman-non-underline-faces):
590         * emacs-lisp/cl-lib.el (face-underline-p):
591         Use set-face-underline rather than the alias set-face-underline-p.
593         * window.el (with-temp-buffer-window): Doc fix.
594         * subr.el (with-output-to-temp-buffer):
595         Add doc xref to with-temp-buffer-window.
597 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
599         * emacs-lisp/cl-lib.el: Set more meaningful version number.
601 2012-11-16  Martin Rudalics  <rudalics@gmx.at>
603         * window.el (enlarge-window, shrink-window): Don't mention return
604         value in doc-string (Bug#12896).
605         (window--display-buffer): Don't resize frames - it won't work
606         with all window managers and defeat pop-up-frame-alist.
607         (display-buffer-alist): In doc-string explain that CONDITION can
608         be a function and which arguments are passed to it (Bug#12854).
609         (display-buffer-assq-regexp): New argument ACTION.  Handle lambda
610         expressions (Bug#12854).
611         (display-buffer): Pass ACTION argument to
612         display-buffer-assq-regexp.
614 2012-11-16  Glenn Morris  <rgm@gnu.org>
616         * window.el (fit-frame-to-buffer-bottom-margin)
617         (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
619         * faces.el (face-underline-p): Use face-attribute-specified-or.
621 2012-11-15  Juanma Barranquero  <lekktu@gmail.com>
623         * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
625 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
627         * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
629 2012-11-15  Glenn Morris  <rgm@gnu.org>
631         * eshell/em-cmpl.el (eshell-pcomplete): New command.  (Bug#12838)
632         (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
634         * faces.el (face-underline-p): Doc fix.  Handle :underline being
635         things other than `t' (a string, a list).
636         (face-inverse-video-p): Doc fix.
637         (set-face-underline): Rename it back from set-face-underline-p.
638         Doc fix.  Allow interactive input of values other than t.
639         (read-face-attribute): Apply formatting to :underline,
640         since like :box and :stipple it can take list values.
642         * term.el (ansi-term): Don't let C-x escape-char binding
643         clobber the more standard C-c binding.  (Bug#12842)
645 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
647         * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
648         (bug#12879).
650 2012-11-14  Glenn Morris  <rgm@gnu.org>
652         * subr.el (set-temporary-overlay-map): Doc fix.
654 2012-11-13  Martin Rudalics  <rudalics@gmx.at>
656         * window.el (record-window-buffer)
657         (display-buffer-record-window): When copying the markers to
658         window-point preserve window-point-insertion-type. (Bug#12588)
660 2012-11-13  Glenn Morris  <rgm@gnu.org>
662         * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
663         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
664         Use new names for hooks rather than obsolete aliases.
666 2012-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
668         * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
670 2012-11-12  Wolfgang Jenkner  <wjenkner@inode.at>
672         * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
673         39 and 49.  This fixes bug#12792.  Also, treat unimplemented
674         parameters as 0, thereby restoring the behavior of revisions prior
675         to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
677 2012-11-12  Fabián Ezequiel Gallina  <fgallina@cuca>
679         Fix end-of-defun misbehavior.
680         * progmodes/python.el (python-nav-beginning-of-defun): Rename from
681         python-beginning-of-defun-function.  Handle nested defuns
682         correctly.
683         (python-nav-end-of-defun): Rename from
684         python-end-of-defun-function.  Ensure forward movement.
685         (python-info-current-defun): Reimplement to work as intended
686         with new fixed python-nav-{end,beginning}-of-defun.  Stop scanning
687         parent defuns as soon as possible.
689 2012-11-12  Glenn Morris  <rgm@gnu.org>
691         * progmodes/flymake.el (flymake-error-bitmap)
692         (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
693         (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
695 2012-11-12  Dmitry Gutov  <dgutov@yandex.ru>
697         * progmodes/ruby-mode.el (ruby-move-to-block): When moving
698         backward, always stop at indentation.  Reverts the change from
699         2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
701 2012-11-11  Glenn Morris  <rgm@gnu.org>
703         * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
704         Add ibuffer-filter-by-derived-mode.
706         * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
707         the same name shadowing each other.
709         * window.el (with-temp-buffer-window): Doc tweak.
711         * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
713         * help.el (temp-buffer-max-height):
714         * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
715         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
717 2012-11-10  Leo Liu  <sdl.web@gmail.com>
719         * ido.el (ido-set-matches-1): Fix split-string args to avoid
720         performance issue.  (Bug#12796)
722 2012-11-10  Glenn Morris  <rgm@gnu.org>
724         * term.el (term-default-fg-color, term-default-bg-color):
725         Make obsolete, rather than just saying "deprecated" in the doc.
727         * term.el (term): Rename from `term-face'.
728         (term-current-face, ansi-term-color-vector)
729         (term-default-fg-color, term-default-bg-color, term-ansi-reset):
730         Update all users.
732 2012-11-09  Jan Djärv  <jan.h.d@swipnet.se>
734         * server.el (server-create-window-system-frame): Improve comment.
736 2012-11-08  Jan Djärv  <jan.h.d@swipnet.se>
738         * server.el (server-create-window-system-frame): Handle Nextstep
739         specially (Bug#12780).
741 2012-11-08  Glenn Morris  <rgm@gnu.org>
743         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
744         Unautoload, and make obsolete.  (Bug#7449)
746 2012-11-08  Chong Yidong  <cyd@gnu.org>
748         * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
749         rename from diff-remove-trailing-whitespace (Bug#12831).
751 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
753         * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
754         miscompilation of trace.el.
756 2012-11-08  Glenn Morris  <rgm@gnu.org>
758         * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
760 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
762         * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
763         (bug#12812).
765 2012-11-07  Chong Yidong  <cyd@gnu.org>
767         * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
768         a defcustom with an appropriate :set function.
769         (minibuffer-default--in-prompt-regexps): New function.
771 2012-11-07  Glenn Morris  <rgm@gnu.org>
773         * emacs-lisp/cl.el (define-setf-expander, defsetf)
774         (define-modify-macro): Doc fixes.
776         * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
777         (gv-define-simple-setter): Update doc of `fix-return'.
779 2012-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
781         * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
782         twice when `fix-return' is set (bug#12813).
784         * emacs-lisp/cl.el (defsetf): Pass the third arg to
785         gv-define-simple-setter (bug#12812).
787 2012-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
789         * woman.el (woman-decode-region): Disable adaptive-fill when rendering
790         (bug#12756).
792 2012-11-06  Glenn Morris  <rgm@gnu.org>
794         * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
796 2012-11-05  Glenn Morris  <rgm@gnu.org>
798         * emacs-lisp/cl-extra.el (cl-prettyexpand):
799         * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
800         * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
801         (cl-the, cl-compiler-macroexpand): Add basic doc strings.
803         * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
805 2012-11-03  Glenn Morris  <rgm@gnu.org>
807         * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
808         Rename handler properties back from cl-- to cl-.  (Bug#12788)
810         * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
812 2012-11-03  Eli Zaretskii  <eliz@gnu.org>
814         * term/pc-win.el: Don't load term/internal from here.
816         * loadup.el: Load term/internal from here.
818 2012-11-03  Fabián Ezequiel Gallina  <fgallina@cuca>
820         * progmodes/python.el (inferior-python-mode): Fix hang in
821         jit-lock (Bug#12645).
823 2012-11-03  Martin Rudalics  <rudalics@gmx.at>
825         * window.el (switch-to-visible-buffer)
826         (switch-to-buffer-preserve-window-point): Fix doc-strings.
828 2012-11-01  Stephen Berman  <stephen.berman@gmx.net>
830         * play/gomoku.el (gomoku-display-statistics): Update mode line
831         only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
833 2012-10-31  Martin Rudalics  <rudalics@gmx.at>
835         * window.el (quit-restore-window): If the window has been
836         created on an existing frame and ended up as the sole window on
837         that frame, do not delete it (Bug#12764).
839 2012-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
841         * progmodes/sh-script.el (sh--inside-noncommand-expression):
842         Rename from sh--inside-arithmetic-expression, handle more cases
843         (bug#11263).
845         * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
846         (sh-font-lock-open-heredoc): Use it (bug#12770).
848 2012-10-30  Glenn Morris  <rgm@gnu.org>
850         * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie.  Doc fix.
852         * emacs-lisp/cl.el (letf): Doc fix.  (Bug#12760)
854 2012-10-29  Chong Yidong  <cyd@gnu.org>
856         * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
857         function key is stored in a keyboard macro (Bug#4894).
859         * thingatpt.el (number-at-point): Apply a thing-at-point property.
861 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
863         * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
864         header comments".
865         (diff-unified->context, diff-context->unified)
866         (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
868         * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
870         * files.el (find-alternate-file): Only ask one question (bug#12487).
872 2012-10-29  Chong Yidong  <cyd@gnu.org>
874         * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
875         Suggested by Dan Nicolaescu (Bug#6326).
877         * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
879         * startup.el (fancy-about-screen): Don't message (Bug#12680).
881         * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
883         * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
885         * face-remap.el (face-remap-add-relative): Handle the case where a
886         face-remapping-alist entry is a cons cell (Bug#12762).
888 2012-10-29  Kevin Ryde  <user42@zip.com.au>
890         * woman.el (woman-parse-numeric-value): Handle picas correctly
891         (Bug#12639).
893 2012-10-29  Glenn Morris  <rgm@gnu.org>
895         * emacs-lisp/cl.el (defsetf): Doc fix.
897 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
899         * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
900         syntax to the matching opener, if any (bug#12547).
901         (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
902         matching open as a "case-(".
903         (sh-smie-rc-grammar): Add a corresponding rule for it.
905 2012-10-28  Daniel Hackney  <dan@haxney.org>
907         * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
908         "PKGNAME-autoloads.el" in case we created it.
910 2012-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
912         * minibuffer.el (completion--sifn-requote): Rewrite to handle things
913         like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
914         (completion--twq-all): Disable too-strict assertions.
916         * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
918 2012-10-27  Eli Zaretskii  <eliz@gnu.org>
920         * profiler.el (profiler-report-make-entry-part): Fix help-echo
921         text to match the real keybindings.
923 2012-10-27  Juri Linkov  <juri@jurta.org>
925         * wdired.el (wdired-keep-marker-rename): New defcustom.
926         (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
927         (Bug#11795)
929         * dired.el (dired-keep-marker-rename): Add reference to
930         `wdired-keep-marker-rename' in the docstring.
931         Add default character value ?R to display initially in
932         Customization UI instead of ?@.
934 2012-10-27  Martin Rudalics  <rudalics@gmx.at>
936         * window.el (display-buffer): In doc-string describe
937         window-height and window-width alist entries.
939         * time.el (display-time-world): Restore fit-window-to-buffer
940         behavior.
942 2012-10-27  Chong Yidong  <cyd@gnu.org>
944         * subr.el (insert-buffer-substring-as-yank): Doc fix.
946 2012-10-26  Jambunathan K  <kjambunathan@gmail.com>
948         * minibuffer.el (completion-category-overrides): New completion
949         category `bookmark' (bug#11131).
951 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
953         * emacs-lisp/advice.el (ad-assemble-advised-definition):
954         Silence bogus compiler warnings for ad-do-it.
956         * bookmark.el (bookmark-completing-read): Set the completion category
957         to `bookmark' (bug#11131).
959 2012-10-26  Bastien  <bzg@altern.org>
960             Stefan Monnier  <monnier@iro.umontreal.ca>
962         * face-remap.el: Use lexical-binding.
963         (text-scale-adjust): Improve docstring.  Use itself for the temporary
964         overlay-map bindings, so as to repeat the "Use..." message each time.
966 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
968         * emacs-lisp/macroexp.el (macroexp--expand-all):
969         Obey byte-compile-warning-enabled-p (bug#12486).
971         * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
972         (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
974 2012-10-26  Martin Rudalics  <rudalics@gmx.at>
976         * mouse.el (mouse-drag-line): Move last form into preceding when
977         clause (Bug#12731).
979         * help.el (resize-temp-buffer-window): Fix doc-string.
981 2012-10-25  David Engster  <deng@randomsample.de>
983         * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
984         Remove.  This feature is already integrated in imenu.
986         * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
987         always loaded.  Require `speedbar' unconditionally.
989 2012-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
991         * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
993         * minibuffer.el (minibuffer-force-complete): Fix thinko.
995         * net/ldap.el (ldap-search-internal): The official ldif format starts
996         with a "version: 1" header (bug#12724).
998         * emacs-lisp/package.el (package-installed-p): Warn if not ready
999         (bug#12721).
1001 2012-10-25  Glenn Morris  <rgm@gnu.org>
1003         * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
1005 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1007         * minibuffer.el (minibuffer-force-complete): Use one more marker
1008         for the temporary-overlay-map command (bug#12619).
1010 2012-10-24  Chong Yidong  <cyd@gnu.org>
1012         * time.el (display-time-world-mode): Derive from special-mode.
1013         (display-time-world): Use display-buffer (Bug#12708).
1014         (display-time-world-mode-map): Variable deleted.
1015         (display-time-world-display): Wrap the final delete-char inside
1016         inhibit-read-only.
1018 2012-10-24  Chong Yidong  <cyd@gnu.org>
1020         * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
1021         Doc fix.
1023         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
1025 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1027         * minibuffer.el (completion--all-sorted-completions-location): New var.
1028         (completion--cache-all-sorted-completions)
1029         (completion--flush-all-sorted-completions): Use it.
1030         (completion-in-region, completion-in-region--postch)
1031         (completion-at-point, completion-help-at-point): Use markers in
1032         completion-in-region--data (bug#12619).
1034 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1036         * progmodes/compile.el (compilation-start): Try to handle common
1037         quoting of `cd' argument (bug#12640).
1039         * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
1040         (bug#12671).
1042 2012-10-23  Glenn Morris  <rgm@gnu.org>
1044         * progmodes/gud.el (gud-menu-map):
1045         Check gdb-active-process is bound.  (Bug#12358)
1047 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1049         * repeat.el (repeat): Set real-this-command (bug#12232).
1051         * htmlfontify.el (hfy-post-html-hook):
1052         * filesets.el (filesets-cache-fill-content-hook):
1053         * arc-mode.el (archive-extract-hook):
1054         * progmodes/cc-mode.el (c-prepare-bug-report-hook):
1055         * net/rcirc.el (rcirc-sentinel-functions)
1056         (rcirc-receive-message-functions, rcirc-activity-functions)
1057         (rcirc-print-functions):
1058         * net/dbus.el (dbus-event-error-functions):
1059         * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
1060         * emacs-lisp/checkdoc.el (checkdoc-style-functions)
1061         (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
1062         * term/sun.el (sun-raw-prefix-hooks):
1063         * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
1065 2012-10-23  Michael Albinus  <michael.albinus@gmx.de>
1067         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1068         Set `tramp-chunksize' to 1.  This improves the performance.
1069         (tramp-smb-wait-for-output): Add timeout to
1070         `tramp-accept-process-output' calls.
1072 2012-10-23  Chong Yidong  <cyd@gnu.org>
1074         * faces.el (font-list-limit): Define as an obsolete variable.
1076         * startup.el (command-line):
1077         * cus-start.el: Don't refer to font-list-limit.
1079         * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
1081 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1083         * subr.el (internal-temp-output-buffer-show): Rename from
1084         temp-output-buffer-show, since previously compiled files expect this name.
1086 2012-10-23  Glenn Morris  <rgm@gnu.org>
1088         * image.el (image-type-from-file-name): If multiple types match,
1089         return the first one that is supported.  (Bug#9045)
1091 2012-10-22  Glenn Morris  <rgm@gnu.org>
1093         * image.el (imagemagick-enabled-types): Doc fix.
1095 2012-10-22  Takafumi Arakaki  <aka.tkf@gmail.com>  (tiny change)
1097         * progmodes/which-func.el (which-func-current): The hash-table may have
1098         an explicit nil (bug#12338).
1100 2012-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1102         * electric.el (electric-pair-delete-selection-self-insert-function):
1103         Rename to electric-pair-will-use-region, return a boolean.
1104         (electric-pair-mode): Adjust accordingly.  Don't require delsel.
1106         * delsel.el (delete-selection-helper): Use a function instead of a hook.
1107         (delete-selection-pre-hook): Use use-region-p.
1108         (delete-selection-self-insert-function): Remove.
1109         (self-insert-command): Obey self-insert-uses-region-functions.
1110         (self-insert-iso): Revert to previous setting, since we don't actually
1111         know what that command does.
1112         (delete-selection-self-insert-hooks): Remove.
1114 2012-10-22  Simon Law  <sfllaw@sfllaw.ca>  (tiny change)
1116         * delsel.el (delete-selection-helper): New function, extracted from
1117         delete-selection-pre-hook.
1118         (delete-selection-pre-hook): Use it.
1119         (delete-selection-self-insert-function): New function.
1120         (delete-selection-self-insert-hooks): New hook.
1121         (self-insert-command, self-insert-iso): Use it.
1122         * electric.el (electric-pair-syntax): New function, extracted from
1123         electric-pair-post-self-insert-function.
1124         (electric-pair-post-self-insert-function): Use it.
1125         (electric-pair-delete-selection-self-insert-function): New function.
1126         (electric-pair-mode): Require delsel and setup
1127         delete-selection-self-insert-hooks (bug#11520).
1129 2012-10-20  Chong Yidong  <cyd@gnu.org>
1131         * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
1132         no changes to show (Bug#12586).
1134         * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
1135         list explicitly (Bug#12571).
1137 2012-10-20  Arne Jørgensen  <arne@arnested.dk>
1139         * progmodes/flymake.el (flymake-create-temp-inplace):
1140         Use file-truename.
1142 2012-10-20  Eli Zaretskii  <eliz@gnu.org>
1144         * loadup.el: Update comment about uncompiled Lisp files.  (Bug#12395)
1146 2012-10-20  Jay Belanger  <jay.p.belanger@gmail.com>
1148         * calc/calc-units.el (math-extract-units): Properly extract powers
1149         of units.
1151 2012-10-20  Daniel Colascione  <dancol@dancol.org>
1153         * frame.el (make-frame): Set x-display-name as we used to in order
1154         to unbreak creating an X11 frame from an Emacs daemon started
1155         without a display.
1157 2012-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1159         * minibuffer.el (minibuffer-force-complete): Make the next completion use
1160         the same completion-field (bug@12221).
1162 2012-10-19  Martin Rudalics  <rudalics@gmx.at>
1164         * emacs-lisp/debug.el (debug): Record height of debugger window
1165         also when debugger will be back (Bug#8789).
1167 2012-10-18  Chong Yidong  <cyd@gnu.org>
1169         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
1170         Convert to defcustom.
1171         (gdb-get-source-file): Don't bind pop-up-windows.
1173         * progmodes/gud.el (gud-display-line): Don't specially re-use
1174         other frames for the gdb-mi case (Bug#12648).
1176 2012-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1178         * emacs-lisp/advice.el: Clean up commentary a bit.
1179         (ad-do-advised-functions, ad-with-originals): Use `declare'.
1180         (byte-code-function-p): Never redefine.
1182         * emacs-lisp/gv.el (cond): Same fix as before for `if'.
1184 2012-10-18  Glenn Morris  <rgm@gnu.org>
1186         * dired.el (dired-sort-toggle): Some ls implementations only allow
1187         a single option string.  (Bug#12666)
1189         * minibuffer.el (completion-cycle-threshold): Doc fix.
1191 2012-10-17  Kenichi Handa  <handa@gnu.org>
1193         * international/mule.el (set-keyboard-coding-system):
1194         Recover input meta mode when the new coding system doesn not use 8-bit.
1195         Supply TERMINAL arg to set-input-meta-mode.
1197 2012-10-17  Michael Heerdegen <michael_heerdegen@web.de>
1199         * wdired.el (wdired-old-marks): New variable.
1200         (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
1201         (wdired-do-renames): Move point with renamed file and don't lose
1202         mark status (Bug#11795).
1204 2012-10-16  Juri Linkov  <juri@jurta.org>
1206         * replace.el (query-replace-help): Mention multi-buffer replacement
1207         keys in the Help message.  (Bug#12655)
1209 2012-10-15  Chong Yidong  <cyd@gnu.org>
1211         * emacs-lisp/byte-run.el (defsubst): Doc fix.
1213 2012-10-14  Eli Zaretskii  <eliz@gnu.org>
1215         * window.el (display-buffer): Doc fix.
1217         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1218         Adjust the msft regexp to the output of Studio 2010, and move msft
1219         before edg-1.  See the discussion on emacs-devel,
1220         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
1221         for the details.
1223 2012-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1225         * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
1226         (oset): Move uses of object-class-fast macro after its definition.
1228         * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
1230 2012-10-13  Chong Yidong  <cyd@gnu.org>
1232         * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
1233         enabled, re-enable it (Bug#11963).
1235 2012-10-13  Martin Rudalics  <rudalics@gmx.at>
1237         * emacs-lisp/debug.el (debug): When debugger-will-be-back is
1238         non-nil, restore window configuration (Bug#12623).
1240 2012-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1242         * help-fns.el (describe-variable, describe-function-1):
1243         * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
1245         * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
1247 2012-10-12  Glenn Morris  <rgm@gnu.org>
1249         * mail/rmailsum.el (rmail-header-summary):
1250         Fix 2010-11-26 test for multiline Subject: field.  (Bug#12625)
1252 2012-10-12  Fabián Ezequiel Gallina  <fgallina@cuca>
1254         * progmodes/python.el (python-mode-map):
1255         Replace subtitute-key-definition with proper command remapping.
1256         (python-nav--up-list): Fix behavior for blocks on the same level.
1258 2012-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1260         * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
1262         * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
1263         changes to the format of load-history.
1265         * international/mule-cmds.el (read-char-by-name): Move let-binding of
1266         completion-ignore-case in case that var is buffer-local (bug#12615).
1268 2012-10-11  Kenichi Handa  <handa@gnu.org>
1270         * international/eucjp-ms.el: Re-generated.
1272 2012-10-10  Kenichi Handa  <handa@gnu.org>
1274         * select.el (xselect--encode-string): If a coding is specified for
1275         selection, and that is compatible with COMPOUND_TEXT, use it.
1277 2012-10-10  Martin Rudalics  <rudalics@gmx.at>
1279         * window.el (switch-to-buffer-preserve-window-point): New option.
1280         (switch-to-buffer):
1281         Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
1283 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1285         * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
1286         Don't document nil as a useful value (bug#12583).
1288 2012-10-09  Michael Albinus  <michael.albinus@gmx.de>
1290         * net/tramp.el (tramp-debug-message):
1291         Remove "tramp-with-progress-reporter" from regexp of ignored functions.
1292         (with-tramp-progress-reporter): Rename from
1293         `tramp-with-progress-reporter'.
1294         (with-tramp-file-property, with-tramp-connection-property):
1295         Move from tramp-cache.el, rename from `with-file-property' and
1296         `with-connection-property', respectively.
1298         * net/tramp-cache.el: Remove `with-file-property' and
1299         `with-connection-property'.
1301         * net/tramp.el:
1302         * net/tramp-gvfs.el:
1303         * net/tramp-sh.el:
1304         * net/tramp-smb.el: Adapt callees.
1306         * net/trampver.el: Update release number.
1308 2012-10-09  Glenn Morris  <rgm@gnu.org>
1310         * w32-fns.el (set-message-beep):
1311         * term/w32-win.el (set-message-beep): Update declarations.
1313 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1315         * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
1316         (mode-line-widen, mode-line-input-method-map)
1317         (mode-line-coding-system-map, mode-line-remote)
1318         (mode-line-unbury-buffer, mode-line-bury-buffer)
1319         (mode-line-next-buffer, mode-line-previous-buffer):
1320         Replace save-selected-window+select-window => with-selected-window.
1322         * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
1323         * progmodes/cc-vars.el (bq-process): Remove, unused.
1325         * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
1327 2012-10-09  Fabián Ezequiel Gallina  <fgallina@cuca>
1329         Implemented `backward-up-list'-like navigation.
1330         * progmodes/python.el (python-nav-up-list)
1331         (python-nav-backward-up-list): New functions.
1332         (python-mode-map): Define substitute key for backward-up-list to
1333         python-nav-backward-up-list.
1335 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
1337         * progmodes/python.el (python-fill-paragraph): Rename from
1338         python-fill-paragraph-function.  Fixed fill-paragraph for
1339         decorators (Bug#12605).
1341 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
1343         * progmodes/python.el (python-shell-output-filter): Handle extra
1344         carriage return in OSX (Bug#12409).
1346 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
1348         Fix shell handling of unbalanced quotes and parens in output.
1349         * progmodes/python.el (python-rx-constituents): Add string-delimiter.
1350         (python-syntax-propertize-function): Use it.
1351         (python-shell-output-syntax-table): New var.
1352         (inferior-python-mode): Prevent unbalanced parens/quotes from
1353         previous output mess with current input context.
1355 2012-10-08  Juanma Barranquero  <lekktu@gmail.com>
1357         * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
1358         Make obsolete aliases of js-mode and js-mode-hook (from js.el).
1360 2012-10-08  Michael Albinus  <michael.albinus@gmx.de>
1362         * ffap.el (ffap-replace-file-component): Support Tramp file name
1363         syntax, not only ange-ftp's one.
1365 2012-10-08  Glenn Morris  <rgm@gnu.org>
1367         * cus-start.el (message-log-max): Set :version.
1369         * calendar/calendar.el (calendar-intermonth-header): Doc fix.
1371 2012-10-08  Martin Rudalics  <rudalics@gmx.at>
1373         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
1374         the minibuffer window (Bug#10851).
1376 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
1378         Enhancements on forward-sexp movement.
1379         * progmodes/python.el (python-nav-beginning-of-statement)
1380         (python-nav-end-of-statement): Return point-marker.
1381         (python-nav-forward-sexp): lisp-like forward-sexp behavior.
1382         (python-info-current-symbol)
1383         (python-info-statement-starts-block-p): Rename from
1384         python-info-beginning-of-block-p.
1385         (python-info-statement-ends-block-p): Rename from
1386         python-info-end-of-block-p.
1387         (python-info-beginning-of-statement-p)
1388         (python-info-end-of-statement-p)
1389         (python-info-beginning-of-block-p, python-info-end-of-block-p):
1390         New functions.
1392 2012-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1394         * comint.el (comint-preinput-scroll-to-bottom): Preserve the
1395         frame-selected-windows.
1397 2012-10-08  Daniel Colascione  <dancol@dancol.org>
1399         * battery.el (battery-status-function): Check for
1400         w32-battery-status itself, not system-time windows-nt.
1402         * frame.el: Require cl-lib.
1403         (display-format-alist): New variable mapping frame types to
1404         functions that initialize them.
1405         (window-system-for-display): New function: interprets
1406         display-format-alist.
1407         (make-frame-on-display): Remove existing display-selection logic
1408         and just forward to make-frame, which will now DTRT.
1409         (make-frame): Restructure to use window-system-for-display to
1410         figure out how to create a frame on a given display.
1411         (display-mouse-p): Look for frame-type w32, not a particular
1412         system-type.
1414         * loadup.el: Load w32 lisp code when we have the w32 feature.
1416         * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
1417         system-type windows-nt.
1419         * server.el (server-create-window-system-frame): Look for window
1420         type.
1421         (server-proces-filter): Only force a window system when windows-nt
1422         _and_ w32.  Explain why.
1424         * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
1425         of window systems we configure for the mode.
1427         * startup.el (command-line): Mark window system is initialized
1428         after we've done it.
1430         * common-win.el (x-select-text): Look for w32, not windows-nt.
1432         * ns-win.el: Require cl-lib.  Add ourselves to
1433         display-format-alist.
1434         (ns-initialize-window-system): Assert we're not initialized twice.
1436         * w32-win.el: Enable lexical binding; require cl-lib; add
1437         ourselves to display-format-alist.
1438         (w32-handle-dropped-file): Convert incoming dropped files from
1439         Windows paths to Cygwin ones before passing them on to the rest of
1440         Emacs.
1441         (w32-drag-n-drop): New paramter new-frame.  Simplify logic.
1442         (w32-initialize-window-system): Assert we're not initialized twice.
1444         * x-win.el: Require cl-lib; add ourselves to display-format-alist.
1445         (x-initialize-window-system): Assert we're not initialized twice.
1447         * w32-common-fns.el: New File.
1448         (w32-version, w32-using-nt, w32-get-clipboard-data)
1449         (w32-set-clipboard-data, x-set-selection, x-get-selection)
1450         (w32-charset-info-alist, x-last-selected, text)
1451         (x-get-selection-value, x-selection-value): Move here.
1453         * w32-fns.el: Require w32-common-fns.
1454         (w32-version, w32-using-nt, w32-get-clipboard-data)
1455         (w32-set-clipboard-data, x-set-selection, x-get-selection)
1456         (w32-charset-info-alist, x-last-selected, text)
1457         (x-get-selection-value, x-selection-value): Move to
1458         w32-common-fns.
1460         * w32-vars.el:
1461         (w32-allow-system-shell, w32-system-shells): Define only in
1462         non-cygwin case.
1464 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1466         * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
1467         (read-passwd): Remove a few more potential sources of leaks.
1469 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
1471         * progmodes/python.el (inferior-python-mode)
1472         (python-shell-make-comint): Fix initialization of local
1473         variables copied from parent buffer.
1475 2012-10-07  Jan Djärv  <jan.h.d@swipnet.se>
1477         * term/ns-win.el (ns-read-file-name): Update declaration to match
1478         nsfns.m.
1479         (ns-respond-to-change-font): Change fontsize separatly so we are sure
1480         it is set when font is acted upon.
1482 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
1484         Enhancements to indentation.
1485         * progmodes/python.el (python-indent-context): Give priority to
1486         inside-string context.  Make comments indentation markers.
1487         (python-indent-region): Do not mess with strings, unless it's the
1488         enclosing set of quotes.
1490 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1492         * window.el (internal--before-save-selected-window)
1493         (internal--after-save-selected-window): New functions extracted from
1494         save-selected-window.  Make sure we return the `alist' we construct.
1495         (save-selected-window): Use them.
1497         * textmodes/tex-mode.el (tex-recenter-output-buffer):
1498         Use with-selected-window.
1500         * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
1501         forms that define macros (bug#12593).
1503 2012-10-07  Kenichi Handa  <handa@gnu.org>
1505         * international/mule-conf.el (compound-text-with-extensions):
1506         Add :mime-charset property as x-ctext.
1508 2012-10-07  Stefan Merten  <smerten@oekonux.de>
1510         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1511         (rst-indent-literal-normal, rst-indent-literal-minimized)
1512         (rst-indent-comment): Correct :version tag.
1513         (rst-official-cvs-rev): Correct version string.
1515 2012-10-07  Glenn Morris  <rgm@gnu.org>
1517         * mail/rmailmm.el (rmail-mime-process-multipart):
1518         Do not confuse a multipart message with an epilogue
1519         with a "truncated" one; fixes 2011-06-27 change.  (Bug#10101)
1521 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
1523         Fix shell output retrieval and comint-prompt-regexp init.
1524         * progmodes/python.el (inferior-python-mode):
1525         (python-shell-make-comint): Fix initialization of
1526         comint-prompt-regexp from copied file local variables.
1527         (python-shell-fetched-lines): Remove var.
1528         (python-shell-output-filter-in-progress): Rename from
1529         python-shell-fetch-lines-in-progress.
1530         (python-shell-output-filter-buffer): Rename from
1531         python-shell-fetch-lines-string.
1532         (python-shell-fetch-lines-filter): Delete function.
1533         (python-shell-output-filter): New function.
1534         (python-shell-send-string-no-output): Use them.
1536 2012-10-07  Glenn Morris  <rgm@gnu.org>
1538         * hi-lock.el (hi-lock-process-phrase):
1539         Try to make it less fragile.  (Bug#7161)
1541         * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
1543 2012-10-06  Glenn Morris  <rgm@gnu.org>
1545         * ehelp.el (electric-help-mode): Use help-mode rather than
1546         non-existent mode `help'.
1547         (electric-help-map): Use button-buffer-map.  (Bug#10917)
1549         * textmodes/reftex-vars.el (reftex-create-bibtex-header)
1550         (reftex-create-bibtex-footer): Fix custom types.
1552         * progmodes/sh-script.el (sh-indent-after-continuation):
1553         Add explicit :group.
1555         * textmodes/rst.el (rst-preferred-decorations)
1556         (rst-shift-basic-offset): Clarify obsolescence versions.
1558         * profiler.el (profiler): Add missing group :version tag.
1559         * avoid.el (mouse-avoidance-banish-position):
1560         * proced.el (proced-renice-command):
1561         * calc/calc.el (calc-ensure-consistent-units):
1562         * calendar/icalendar.el (icalendar-import-format-uid):
1563         * net/tramp.el (tramp-save-ad-hoc-proxies):
1564         * progmodes/bug-reference.el (bug-reference-bug-regexp):
1565         * progmodes/flymake.el (flymake-error-bitmap)
1566         (flymake-warning-bitmap, flymake-fringe-indicator-position):
1567         * progmodes/sh-script.el (sh-indent-after-continuation):
1568         * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
1569         (verilog-before-save-font-hook, verilog-after-save-font-hook):
1570         * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
1571         (vhdl-array-index-record-field-in-sensitivity-list)
1572         (vhdl-indent-comment-like-next-code-line):
1573         * textmodes/reftex-vars.el (reftex-ref-style-alist)
1574         (reftex-ref-macro-prompt, reftex-ref-style-default-list)
1575         (reftex-cite-key-separator, reftex-create-bibtex-header)
1576         (reftex-create-bibtex-footer):
1577         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1578         (rst-indent-literal-normal, rst-indent-literal-minimized)
1579         (rst-indent-comment): Add missing custom :version tags.
1581         * calendar/timeclock.el (timeclock-modeline-display):
1582         Add missing obsolete alias for renamed user option.
1584         * strokes.el (strokes-modeline-string):
1585         * emulation/crisp.el (crisp-mode-modeline-string):
1586         * eshell/esh-mode.el (eshell-status-in-modeline):
1587         Aliases to defcustoms must come before the defcustom.
1589         * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
1590         (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1591         (cal-tex-cursor-week-monday): Doc fixes.
1592         (cal-tex-cursor-week2-summary): Doc fix.
1593         Rename from cal-tex-cursor-week-at-a-glance.
1595         * calendar/cal-menu.el (cal-menu-context-mouse-menu):
1596         Tweak week descriptions.  Add cal-tex-cursor-week2-summary.
1598         * calendar/calendar.el (calendar-mode-map):
1599         Add cal-tex-cursor-week2-summary.
1601 2012-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1603         * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
1605         * subr.el (read-passwd-map): New var.
1606         (read-passwd): Use `read-string' again.
1607         * minibuffer.el (delete-minibuffer-contents): Make it interactive.
1609 2012-10-06  Jambunathan K  <kjambunathan@gmail.com>
1611         * register.el (append-to-register, prepend-to-register):
1612         Deactivate mark, as does `copy-to-register' (bug#12389).
1614 2012-10-06  Chong Yidong  <cyd@gnu.org>
1616         * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
1618 2012-10-06  Ikumi Keita  <ikumi@ikumi.que.jp>  (tiny change)
1620         * international/characters.el: Fix simple mistake ((car chars) ->
1621         elt), delete duplicated code.
1623 2012-10-06  Glenn Morris  <rgm@gnu.org>
1625         * subr.el (read-passwd): Allow C-u to erase entry.  (Bug#12570)
1627 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
1629         * color.el (color-hsl-to-rgb): Fix incorrect results for
1630         small and large hue values.  (Bug#12559)
1632 2012-10-05  Fabián Ezequiel Gallina  <fgallina@cuca>
1634         Enhancements to docstring formatting when filling paragraphs.
1635         * progmodes/python.el (python-fill-docstring-style): Rename from
1636         python-fill-string-style.  Added new style.
1637         (python-fill-string): Use new style.  Better checks for
1638         docstrings.
1640 2012-10-05  Glenn Morris  <rgm@gnu.org>
1642         * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1644         * color.el (color-name-to-rgb, color-rgb-to-hex)
1645         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1646         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1647         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1648         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1650         * emacs-lisp/timer.el (with-timeout): Add missing progn.  (Bug#12577)
1652 2012-10-05  Juanma Barranquero  <lekktu@gmail.com>
1654         * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1655         to get the correct size across symlinks.
1657         * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1659 2012-10-04  Juri Linkov  <juri@jurta.org>
1661         * replace.el (query-replace-interactive): Declare obsolete.
1662         (query-replace-read-from): Add the last incremental search string
1663         to the list of default values accessible via M-n.
1664         (map-query-replace-regexp): Use `read-regexp'.
1665         (query-replace, query-replace-regexp, query-replace-regexp-eval)
1666         (map-query-replace-regexp, replace-string, replace-regexp):
1667         Fix docstrings to replace mentions of `query-replace-interactive'
1668         with alternatives.  (Bug#12526)
1670 2012-10-04  Juri Linkov  <juri@jurta.org>
1672         * dired.el (dired-shrink-to-fit): Declare obsolete.  (Bug#1806)
1673         (dired-pop-to-buffer): Declare obsolete.
1674         (dired-mark-pop-up): Doc fix.
1676 2012-10-04  Fabián Ezequiel Gallina  <fgallina@cuca>
1678         Allow user to set docstring style for fill-paragraph.
1679         * progmodes/python.el
1680         (python-fill-comment-function, python-fill-string-function)
1681         (python-fill-decorator-function, python-fill-paren-function):
1682         Remove :safe for defcustoms.
1683         (python-fill-string-style): New defcustom
1684         (python-fill-paragraph-function): Enhance context detection.
1685         (python-fill-string): Honor python-fill-string-style settings.
1687 2012-10-04  Martin Rudalics  <rudalics@gmx.at>
1689         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1690         after setting its buffer (Bug#10805).
1692 2012-10-03  Fabián Ezequiel Gallina  <fgallina@cuca>
1694         Fix cornercase for string syntax.
1695         * progmodes/python.el (python-syntax-propertize-function):
1696         Simplify and enhance the regexp for unescaped quotes.  Now it also
1697         matches quotes in weird situations like the single quote in
1698         "something\"'".
1699         (python-syntax-stringify): Simplify num-quotes detecting code.
1701 2012-10-03  Glenn Morris  <rgm@gnu.org>
1703         * help-macro.el (three-step-help):
1704         Revert 2012-09-29 change.  (Bug#12567)
1706 2012-10-03  Martin Rudalics  <rudalics@gmx.at>
1708         * menu-bar.el (kill-this-buffer): Don't do anything when
1709         `menu-frame' is not alive or visible (Bug#8184).
1711         * emacs-lisp/debug.el (debug): When quitting the debugger window
1712         restore current buffer (Bug#12502).
1714 2012-10-02  Chong Yidong  <cyd@gnu.org>
1716         * progmodes/hideif.el (hif-lookup, hif-defined):
1717         Handle semantic-c-takeover-hideif.
1719 2012-10-02  Paul Eggert  <eggert@cs.ucla.edu>
1721         Change sampling interval units from ms to ns.
1722         * profiler.el (profiler-sampling-interval): Change units
1723         from ms to ns, multiplying the default by 1000000 so that
1724         it remains 1 ms.
1725         (profiler-report-cpu-line-format): Give enough room for
1726         the maximum counters on 64-bit hosts.
1727         (profiler-report-render-calltree-1): Call them "CPU samples",
1728         not "Time (ms)", since they are not milliseconds now (and
1729         never really were).
1731 2012-10-02  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
1733         * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1734         Fix querying BBDB for entries without a last name (Bug#11580).
1736 2012-10-02  Chong Yidong  <cyd@gnu.org>
1738         * emacs-lisp/eieio.el: Restore Version header.
1740 2012-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1742         * vc/diff-mode.el (diff--auto-refine-data): New var.
1743         (diff-hunk): Use it to delay refinement.
1744         (diff-mode): Remove overlays when we turn off font-lock.
1746         * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1747         (table-initialize-table-fixed-width-mode)
1748         (table-set-table-fixed-width-mode): Remove functions.
1749         (table-command-list): Move initialization into declaration.
1750         (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1751         (table-with-cache-buffer): Use `declare'.
1752         (table-span-cell): Simplify via CSE.
1753         (table-fixed-width-mode): Use define-minor-mode.
1754         (table-call-interactively, table-funcall, table-apply): Remove.
1755         (table-function): New function, to replace them.
1757         * bookmark.el (bookmark-search-pattern): Remove var.
1758         (bookmark-read-search-input): Remove function.
1759         (bookmark-bmenu-search): Reimplement using a minibuffer.
1761         * faces.el (modeline): Remove obsolete face name.
1763         * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1764         and give a non-nil default value.
1765         (add-change-log-entry): Simplify accordingly.
1767 2012-10-01  Dmitry Gutov  <dgutov@yandex.ru>
1769         * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
1770         (vc-git-log-edit-toggle-amend): New function.
1771         (vc-git-log-edit-toggle-signoff): New function.
1772         (vc-git-log-edit-mode): New major mode.
1773         (vc-git-log-edit-mode-map): Keymap for it.
1774         (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
1776         * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
1777         header names.
1778         (log-edit-toggle-header): New function.
1779         (log-edit-extract-headers): Accept function values in HEADERS alist.
1781 2012-10-01  David Engster  <deng@randomsample.de>
1783         * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
1784         from symbol property and change message to be more consistent with
1785         Emacs proper.
1786         (eieio-describe-generic): Add filename for each implementation.
1787         Fix indices for generic and normal methods.
1788         (eieio-method-def, eieio-class-def): New buttons.
1789         (eieio-help-find-method-definition)
1790         (eieio-help-find-class-definition): New functions.
1791         (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
1792         class, constructor and method definitions.
1794         * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
1795         information in symbol property.
1796         (scoped-class): Remove.
1797         (eieio-slot-name-index, call-next-method): Check if it is bound.
1799 2012-10-01  Leo P. White  <lpw25@cam.ac.uk>
1801         * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
1802         (eieio-custom-mode): New major mode.
1803         (eieio-customize-object): Use it.
1805 2012-10-01  Eric Ludlam  <zappo@gnu.org>
1807         * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
1808         specifying the expected class, and whether subclassing is allowed.
1809         (eieio-persistent-convert-list-to-object):
1810         (eieio-persistent-validate/fix-slot-value)
1811         (eieio-persistent-slot-type-is-class-p): New functions.
1812         (eieio-named::slot-missing): Doc fix.
1814         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
1815         Stop using unused publd variable.
1817         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1818         (eieio-speedbar-description, eieio-speedbar-derive-line-path)
1819         (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
1820         (eieio-speedbar-handle-click): Do not specify a class for the
1821         method.  Fixes method invocation order problems with EDE.
1823 2012-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1825         * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
1826         (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
1828 2012-10-01  Karl Fogel  <kfogel@red-bean.com>
1830         * bookmark.el (bookmark-version-control): Give tags in the
1831         :type choices (Bug#12309), and improve doc string.
1832         (bookmark-write-file): Bind `print-circle' to `t' to allow
1833         circular custom bookmark types.  (Bug#12503)
1835 2012-10-01  Paul Eggert  <eggert@cs.ucla.edu>
1837         Revert the FOLLOW-SYMLINKS change for file-attributes.
1838         * files.el (remote-file-name-inhibit-cache, after-find-file):
1839         * time.el (display-time-file-nonempty-p): Undo last change.
1841         * profiler.el (profiler-sampling-interval): Change default back to 1.
1842         See Stefan Monnier in
1843         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
1845 2012-10-01  Fabián Ezequiel Gallina  <fgallina@cuca>
1847         Shell output catching a la gud-gdb.
1848         * progmodes/python.el (python-shell-fetch-lines-in-progress)
1849         (python-shell-fetch-lines-string, python-shell-fetched-lines):
1850         New Vars.
1851         (python-shell-fetch-lines-filter): New function.
1852         (python-shell-send-string-no-output): Use them.
1854 2012-09-30  Tomohiro Matsuyama  <tomo@cx4a.org>
1856         * profiler.el (profiler-sampling-interval): Rename from
1857         profiler-sample-interval.
1858         (profiler-sampling-interval): Default to 10.
1859         (profiler-find-profile): New command (was profiler-find-log).
1860         (profiler-find-profile-other-window): New command.
1861         (profiler-find-profile-other-frame): New command.
1862         (profiler-profile): Introduce API-level data structure.
1864 2012-09-30  Paul Eggert  <eggert@cs.ucla.edu>
1866         file-attributes has a new optional arg FOLLOW-SYMLINKS.
1867         * files.el (remote-file-name-inhibit-cache):
1868         * time.el (display-time-file-nonempty-p): Use it.
1869         * files.el (after-find-file): Don't chase links before calling
1870         file-exists-p, as file-exists-p already does the right thing.
1872 2012-09-30  Ralf Angeli  <angeli@caeruleus.net>
1874         Merge from standalone RefTeX repository.
1876         The following ChangeLog entries are shortened versions of the
1877         original ones with file paths adapted.  A not so strongly edited
1878         version of the original ChangeLog can be found in the commit log.
1880         * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
1881         (reftex-arg-cite): Use `reftex-cite-key-separator'.
1882         Correctly handle new value type returned by `reftex-citation'.
1884         * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
1885         that entries with whitespace at various places are found.
1886         Doc fix. Include entries that are cross-referenced from cited entries.
1887         Include @String definitions in the resulting bib file.  Add header
1888         and footer defined in `reftex-create-bibtex-header' and
1889         `reftex-create-bibtex-footer'.
1890         (reftex-do-citation): Make it possible again to insert
1891         non-existent entries.  Save match data when asking for optional
1892         arguments. Return all keys, not just the first one.
1893         (reftex-all-used-citation-keys): Fix regexp to correctly extract
1894         all citations in the same line.
1895         (reftex-parse-bibtex-entry): Accept additional optional argument
1896         `raw' and keep quotes or braces if it is non-nil.  Match fields
1897         containing hyphens besides word constituents.
1898         (reftex-get-string-refs): New function.
1899         (reftex-extract-bib-entries): Check if BibTeX file changed on disk
1900         and ask if it should be reread in case it did.
1901         (reftex-pop-to-bibtex-entry)
1902         (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
1903         entries with spaces or tabs in front of arguments.
1904         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
1905         (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
1906         Match entries containing numbers and symbol constituents.
1907         (reftex-do-citation, reftex-figure-out-cite-format):
1908         Use `reftex-cite-key-separator'.
1910         * textmodes/reftex-dcr.el: Move provide statement to end of file.
1911         (reftex-mouse-view-crossref): Explain why point is set.
1913         * textmodes/reftex-global.el: Whitespace changes.
1915         * textmodes/reftex-index.el: Move provide statement to end of
1916         file.
1917         (reftex-index-selection-or-word): Use `reftex-region-active-p'.
1918         (reftex-index-visit-phrases-buffer): Set marker when visiting
1919         buffer.  This allows for returning from the phrases file to the
1920         file one was just editing instead of the file where the last
1921         phrases was added from.
1922         (reftex-index-phrases-syntax-table): New variable.  Give ?\"
1923         punctuation syntax as it usually is not used as string quote in
1924         TeX-related modes and may occur unmatched.  The change also
1925         prevents fontification of quoted content.
1926         (reftex-index-phrases-mode): Use it.
1928         * textmodes/reftex-parse.el (reftex-parse-from-file):
1929         Move backward one char if a `\' was matched after a section macro.
1930         (reftex-parse-from-file): Use beginning of match instead of end as
1931         bound.
1933         * textmodes/reftex-ref.el: Adapt creation of
1934         `reftex-<package>-<macro>' functions to new structure of
1935         `reftex-ref-style-alist'.
1936         (reftex-reference): Use `reftex-ref-style-list' function.
1937         Adapt to new structure of `reftex-ref-style-alist'.  Prompt for a
1938         reference macro if `reftex-ref-macro-prompt' is non-nil.
1939         (reftex-reference): Pass refstyle to `reftex-format-special'.
1940         Determine reference macro by looking at
1941         `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
1942         Use only one special format function.
1943         (reftex-varioref-vref, reftex-fancyref-fref)
1944         (reftex-fancyref-Fref): Remove definitions.  The functions are now
1945         generated from `reftex-ref-style-alist'.
1946         (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
1947         Remove.
1948         (reftex-format-special): New function.
1950         * textmodes/reftex-sel.el
1951         (reftex-select-cycle-ref-style-internal): Adapt to new structure
1952         of `reftex-ref-style-alist'. Remove code for testing macro type.
1953         (reftex-select-toggle-varioref)
1954         (reftex-select-toggle-fancyref): Remove.
1955         (reftex-select-cycle-ref-style-internal)
1956         (reftex-select-cycle-ref-style-forward)
1957         (reftex-select-cycle-ref-style-backward): New functions.
1958         (reftex-select-label-map): Use `v' and `V' for general cycling
1959         through reference styles.  Add `p' for switching between number
1960         and page reference types.
1962         * textmodes/reftex-toc.el (reftex-re-enlarge):
1963         Call `enlarge-window' only if there is something to do because in Emacs
1964         the horizontal version throws an error even if the parameter is 0.
1966         * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
1967         (reftex-plug-into-AUCTeX): Doc fix.
1968         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
1969         string.  Adapt to new name.
1970         (reftex-ref-style-alist): Change structure so that it is not
1971         possible to use multiple different package names within a style.
1972         Remove the symbols for symbols for macro type distinction.
1973         Add characters for macro selection.
1974         (reftex-ref-macro-prompt, reftex-create-bibtex-header)
1975         (reftex-create-bibtex-footer): New variables.
1976         (reftex-format-ref-function): Mention third argument of special
1977         format function.
1978         (reftex-ref-style-alist, reftex-ref-style-default-list):
1979         New variables.
1980         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
1981         to new implementation.  Mark as obsolete.  Add compatibility code
1982         for honoring the variable values in case they are set.
1983         (reftex-cite-format-builtin, reftex-bibliography-commands):
1984         Add support for ConTeXt.
1985         (reftex-format-ref-function, reftex-format-cite-function):
1986         Fix custom type.
1987         (reftex-cite-key-separator): New variable.
1989         * textmodes/reftex.el (reftex-syntax-table-for-bib)
1990         (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
1991         `reftex-syntax-table' because parens have to retain their paren
1992         syntax in order for parsing of BibTeX entries like @book(...) to
1993         work.
1994         (reftex-in-comment): Do not error out if `comment-start-skip' is
1995         not set.  Deal correctly with escaped comment characters.
1996         (reftex-tie-multifile-symbols): Add doc string.
1997         Initialize `reftex-ref-style-list'.
1998         (reftex-untie-multifile-symbols): Add doc string.
1999         (reftex-add-index-macros): Doc fix.
2000         (reftex-ref-style-activate, reftex-ref-style-toggle)
2001         (reftex-ref-style-list): New functions.
2002         (reftex-mode-menu): Use them.  Adapt to new structure of
2003         `reftex-ref-style-alist'.
2004         (reftex-select-with-char): Kill the RefTeX Select buffer when
2005         done.
2006         (reftex-remove-if): New function.
2007         (reftex-erase-all-selection-and-index-buffers)
2008         (reftex-mode-menu): Reference styles are now computed from
2009         `reftex-ref-style-alist'.  Fix typo.
2010         (reftex-report-bug): New function.
2011         (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
2012         algorithms with O(n log n).  Introduce optional argument SORT (not
2013         yet used).
2015 2012-09-30  Fabián Ezequiel Gallina  <fgallina@cuca>
2017         Enhancements for triple-quote string syntax.
2018         * progmodes/python.el (python-syntax-propertize-function):
2019         Match both quote cases in one regexp.
2020         (python-syntax-stringify): Handle matches properly.
2022 2012-09-30  Juri Linkov  <juri@jurta.org>
2024         * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
2025         to nil around the call to `insert' to prevent
2026         directory time modification by lock_file.  (Bug#2295)
2027         * tar-mode.el (tar-summarize-buffer): Idem.
2029 2012-09-30  Juri Linkov  <juri@jurta.org>
2031         * facemenu.el (list-colors-sort): Add option "Luminance".
2032         (list-colors-sort-key): Implement it.
2034         * vc/diff-mode.el (diff-refine-removed):
2035         * vc/ediff-init.el (ediff-fine-diff-A):
2036         * vc/smerge-mode.el (smerge-refined-removed):
2037         Change background color "#ffaaaa" to "#ffbbbb".  (Bug#10181)
2039 2012-09-30  Jan Djärv  <jan.h.d@swipnet.se>
2041         * term/ns-win.el (x-file-dialog): New function.
2043 2012-09-30  Juanma Barranquero  <lekktu@gmail.com>
2045         * ido.el (ido-max-directory-size): Default to nil; the current
2046         default is small for POSIX systems, and impractical on Windows 7
2047         now that lstat returns directory sizes for NTFS.
2049 2012-09-30  Martin Rudalics  <rudalics@gmx.at>
2051         In buffer display functions handle window-height/window-width
2052         alist entries.  Suggested by Juri Linkov as fix for Bug#1806.
2053         * window.el (window--display-buffer): New argument ALIST.
2054         Obey window-height and window-width alist entries.
2055         (window--try-to-split-window): New argument ALIST.
2056         Bind window-combination-limit to t when the window's size shall be
2057         changed and window-combination-limit equals `window-size'.
2058         (display-buffer-in-atom-window)
2059         (display-buffer-in-major-side-window)
2060         (display-buffer-in-side-window, display-buffer-same-window)
2061         (display-buffer-reuse-window, display-buffer-pop-up-frame)
2062         (display-buffer-pop-up-window, display-buffer-below-selected)
2063         (display-buffer-at-bottom, display-buffer-in-previous-window)
2064         (display-buffer-use-some-window): Adjust all callers of
2065         window--display-buffer and window--try-to-split-window.
2066         (fit-frame-to-buffer): New option.
2067         (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
2068         is non-nil.
2069         (display-buffer-in-major-side-window): Evaluate window-height /
2070         window-width alist entries.
2072         * help.el (temp-buffer-resize-frames)
2073         (temp-buffer-resize-regexps): Remove options.
2074         (temp-buffer-resize-mode): Adjust doc-string.
2075         (resize-temp-buffer-window): Don't consult
2076         temp-buffer-resize-regexps.  Use fit-frame-to-buffer instead of
2077         temp-buffer-resize-frames.
2079         * dired.el (dired-mark-pop-up):
2080         Call display-buffer-below-selected with a fit-window-to-buffer alist
2081         entry.
2083 2012-09-30  Chong Yidong  <cyd@gnu.org>
2085         * server.el (server-host): Document the security implications.
2086         (server-auth-key): Doc fix.
2088         * startup.el (initial-buffer-choice): Doc fix.
2090         * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
2092         * simple.el (delete-trailing-whitespace): Avoid an unnecessary
2093         restriction change.
2095         * bindings.el (goto-map): Bind M-g TAB to move-to-column.
2097         * help-fns.el (help-fns--obsolete): Fix last change.
2099 2012-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2101         * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
2102         (minor-mode-map-alist): Remove redundant code.
2104         * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
2105         visited in a buffer.
2106         (cvs-insert-visited-file): New function.
2107         (find-file-hook): Use it.
2109         * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
2111         * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
2112         chose face.
2113         (log-edit-empty-buffer-p): Don't require a space after a header.
2115         * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
2117         * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
2119         * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
2120         a proper minor-mode.
2122         * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
2124 2012-09-29  Glenn Morris  <rgm@gnu.org>
2126         * winner.el (winner-mode): Remove variable (let define-minor-mode
2127         handle it).
2128         (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
2129         Doc fixes.
2130         (winner-mode-leave-hook): Rename to winner-mode-off-hook.
2131         (winner-mode): Use define-minor-mode.
2133         * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
2134         the full definition in loaddefs, rather than duplicating it.
2136         * help-macro.el (three-step-help): No need to autoload defcustom.
2138         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
2139         (inferior-lisp-program, inferior-lisp-load-command)
2140         (inferior-lisp-prompt, inferior-lisp-mode-hook):
2141         No need to autoload defcustoms.
2143         * hippie-exp.el (hippie-expand-try-functions-list)
2144         (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
2145         (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
2146         (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
2147         (hippie-expand-only-buffers): No need to autoload defcustoms.
2148         * progmodes/vhdl-mode.el (vhdl-line-expand):
2149         Explicitly load hippie-exp, so it does not get autoloaded
2150         while hippie-expand-try-functions-list is let-bound.
2152 2012-09-28  Glenn Morris  <rgm@gnu.org>
2154         * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
2156         * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
2157         Only "cl.el" counts as cl these days.
2159 2012-09-28  Juri Linkov  <juri@jurta.org>
2161         Display archive errors in the echo area instead of inserting
2162         to the file buffer.
2164         * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
2165         to STDERR-TEST that can be a regexp matching a successful output.
2166         Create a temporary file and redirect stderr to it.  Search for
2167         STDERR-TEST in the stderr output and display it in the echo area
2168         if no match is found.
2169         (archive-extract-by-file): New function like
2170         `archive-extract-by-stdout' but extracting archives to files
2171         and looking for successful matches in stdout.  Function body is
2172         mostly copied from `archive-rar-extract'.
2173         (archive-rar-extract): Use `archive-extract-by-file'.
2174         (archive-7z-extract): Use `archive-extract-by-stdout'.  (Bug#10347)
2176 2012-09-28  Leo Liu  <sdl.web@gmail.com>
2178         * pcomplete.el (pcomplete-show-completions):
2179         Use minibuffer-message to make pcomplete usable in minibuffer.
2181         * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
2183 2012-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2185         * type-break.el: Use lexical-binding.
2186         (type-break-mode): Use define-minor-mode.
2188         * emacs-lisp/pcase.el (pcase--mark-used): New.
2189         (pcase--u1): Use it (bug#12512).
2191         * custom.el (load-theme): Set buffer-file-name so the load is recorded
2192         in load-history with the right file name.
2194 2012-09-28  Tassilo Horn  <tsdh@gnu.org>
2196         * doc-view.el (doc-view-current-cache-doc-pdf): New function.
2197         (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
2198         (doc-view-get-bounding-box): Make bounding box slicing work for
2199         ODF and DVI documents.
2201 2012-09-28  Glenn Morris  <rgm@gnu.org>
2203         * type-break.el (type-break-mode, type-break-interval)
2204         (type-break-good-rest-interval, type-break-keystroke-threshold):
2205         No need to autoload.
2206         (type-break-good-rest-interval, type-break-keystroke-threshold):
2207         Add :set-after.
2209 2012-09-28  Chong Yidong  <cyd@gnu.org>
2211         * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
2212         Add :version tag.
2214 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2216         * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
2218 2012-09-27  Glenn Morris  <rgm@gnu.org>
2220         * faces.el (x-display-name): Declare (for without-x builds).
2222         * linum.el (linum-format): Don't autoload it.  Improve :type.
2224         * progmodes/tcl.el: Don't require outline when compiling.
2225         (outline-regexp, outline-level): Declare.
2226         * textmodes/sgml-mode.el: Don't require outline when compiling.
2227         (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
2229         * term.el (term-ansi-reset):
2230         Try setting term-ansi-face-already-done to nil.  (Bug#11785)
2232         * vc/vc.el (vc-next-action): Only gripe about committing read-only
2233         files for RCS and SCCS.  (Bug#9781)
2235 2012-09-27  Chong Yidong  <cyd@gnu.org>
2237         * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
2238         change; value should be t.
2240 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2242         * image-mode.el: Use lexical-binding.
2243         (image-mode-winprops): Use t to stand for the window of
2244         a buffer that's not displayed.
2245         * doc-view.el (doc-view-new-window-function): Handle the new
2246         t in winprops.
2247         (doc-view-enlarge): Make it a real nop if the size is not changed.
2248         (doc-view-display): Handle the case where the buffer is not (yet?)
2249         displayed in any window.
2250         (doc-view-saved-settings): New var.
2251         (doc-view-mode): Use it.
2252         (doc-view-fallback-mode): Set it.
2254         * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
2255         Set lexical-binding.
2256         (minibuffer-eldef-shorten-default): New var.
2257         (minibuffer-default-in-prompt-regexps): Use it for new default.
2258         (minibuf-eldef-setup-minibuffer): Add replacement functionality.
2260 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
2262         * international/uni-bidi.el:
2263         * international/uni-category.el:
2264         * international/uni-name.el:
2265         * international/uni-numeric.el: Regenerate.
2267 2012-09-26  Tomohiro Matsuyama  <tomo@cx4a.org>
2268             Stefan Monnier  <monnier@iro.umontreal.ca>
2270         * profiler.el: New file.
2272 2012-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2274         * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
2275         (testcover-reinstrument): Simplify with CSE.
2277 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
2279         * window.el (temp-buffer-window-setup): Fix typo in docstring.
2281 2012-09-25  Wilson Snyder  <wsnyder@wsnyder.org>
2283         * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
2284         (verilog-auto-input, verilog-auto-insert-lisp)
2285         (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2286         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
2287         (verilog-auto-unused, verilog-auto-wire)
2288         (verilog-forward-or-insert-line): Fix AUTOs with no trailing
2289         newline.  Reported by Andrew Jones.
2290         (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
2291         Reported by Brad Dobbie.
2292         (verilog-batch-delete-trailing-whitespace):
2293         Create verilog-batch-delete-trailing-whitespace.
2294         Reported by Brad Dobbie.
2295         (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
2296         parameters from another module.  Reported by Dan Katz.
2297         (verilog-auto, verilog-auto-assign-modport)
2298         (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
2299         AUTOINOUTMODPORT for UVM interface module shell generation.
2300         Reported by Brad Dobbie.
2301         (verilog-auto-inst-interfaced-ports): Make default nil, as more
2302         standard behavior.
2303         (verilog-auto): Fix AUTO parameters with parenthesis arguments.
2304         Reported by Matt Martin.
2306 2012-09-25  Martin Rudalics  <rudalics@gmx.at>
2308         * window.el (window--resize-child-windows): When resizing child
2309         windows proportionally, process them in reverse order to
2310         preserve the "when splitting a window the new one gets the odd
2311         line" behavior.
2312         (window--resize-root-window-vertically): When resizing the
2313         minibuffer window try to affect only windows at the bottom of the
2314         frame.  (Bug#12419)
2316 2012-09-25  Chong Yidong  <cyd@gnu.org>
2318         * subr.el (declare): Doc fix.
2320         * help-fns.el (help-fns--obsolete): Handle macros properly.
2322 2012-09-25  Chong Yidong  <cyd@gnu.org>
2324         * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
2325         this function obsolete.
2327         * calendar/cal-x.el (calendar-two-frame-setup)
2328         (calendar-only-one-frame-setup, calendar-one-frame-setup):
2329         * calendar/calendar.el (american-calendar, european-calendar)
2330         (calendar-for-loop):
2331         * comint.el (comint-dynamic-simple-complete)
2332         (comint-dynamic-complete-as-filename, comint-unquote-filename):
2333         * desktop.el (desktop-load-default):
2334         * dired-x.el (dired-omit-here-always)
2335         (dired-hack-local-variables, dired-default-directory):
2336         * emacs-lisp/derived.el (derived-mode-class):
2337         * emacs-lisp/timer.el (timer-set-time-with-usecs):
2338         * emacs-lock.el (toggle-emacs-lock):
2339         * epa.el (epa-display-verify-result):
2340         * epg.el (epg-sign-keys, epg-start-sign-keys)
2341         (epg-passphrase-callback-function):
2342         * eshell/esh-util.el (eshell-for):
2343         * eshell/eshell.el (eshell-remove-from-window-buffer-names)
2344         (eshell-add-to-window-buffer-names):
2345         * files.el (locate-file-completion):
2346         * imenu.el (imenu-example--create-c-index)
2347         (imenu-example--create-lisp-index)
2348         (imenu-example--lisp-extract-index-name)
2349         (imenu-example--name-and-position):
2350         * international/mule-cmds.el (princ-list):
2351         * international/mule-diag.el (decode-codepage-char):
2352         * international/mule-util.el (detect-coding-with-priority):
2353         * iswitchb.el (iswitchb-read-buffer):
2354         * mail/mailalias.el (mail-complete):
2355         * mail/sendmail.el (mail-sent-via):
2356         * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
2357         (mouse-major-mode-menu):
2358         * password-cache.el (password-read-and-add):
2359         * pcomplete.el (pcomplete-parse-comint-arguments):
2360         * progmodes/sh-script.el (sh-maybe-here-document):
2361         * replace.el (query-replace-regexp-eval):
2362         * savehist.el (savehist-load):
2363         * simple.el (choose-completion-delete-max-match):
2364         * term.el (term-dynamic-simple-complete):
2365         * vc/ediff-init.el (ediff-check-version):
2366         * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
2367         * vc/vc.el (vc-diff-switches-list):
2368         * view.el (view-return-to-alist-update): Likewise.
2370         * subr.el (eval-next-after-load, makehash, insert-string)
2371         (assoc-ignore-representation, assoc-ignore-case): Use declare to
2372         mark obsolete.
2373         (mode-line-inverse-video): Variable deleted.
2375         * international/mule-util.el (string-to-sequence): Remove.
2377         * calendar/calendar.el (calendar-version):
2378         * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
2379         (icalendar-convert-diary-to-ical):
2380         * cus-edit.el (custom-mode):
2381         * ansi-color.el (ansi-color-unfontify-region):
2382         * international/latin1-disp.el (latin1-char-displayable-p):
2383         * progmodes/cwarn.el (turn-on-cwarn-mode):
2384         * progmodes/which-func.el (which-func-update-1):
2385         Use define-obsolete-function-alias.
2387         * net/newst-backend.el (newsticker-cache-filename):
2388         * net/newst-treeview.el (newsticker-groups-filename):
2389         Fix incorrect obsolescence declaration.
2391         * allout.el (allout-passphrase-hint-string): Likewise.
2392         (allout-init): Use a declare form to mark obsolete.
2394         * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
2395         this applies to functions.
2397         * iswitchb.el (iswitchb-read-buffer): Move code of
2398         iswitchb-define-mode-map here, and delete that obsolete function.
2400         * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
2401         font-lock-reference-face.
2403 2012-09-25  Glenn Morris  <rgm@gnu.org>
2405         * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
2406         Doc fixes.
2408         * eshell/em-term.el (eshell-term-name):
2409         Default to term-term-name.  (Bug#12485)
2411 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
2413         * progmodes/python.el (python-shell-send-buffer): Better handling
2414         of "if __name__ == '__main__':" conditionals when sending the buffer.
2416 2012-09-24  Glenn Morris  <rgm@gnu.org>
2418         * eshell/esh-cmd.el (eshell-find-alias-function):
2419         Tighten up file-name regexp.  (Bug#12499)
2421 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
2423         Enhancements for triple-quote string syntax.
2424         * progmodes/python.el (python-quote-syntax): Remove.
2425         (python-syntax-propertize-function): New value.
2426         (python-syntax-count-quotes, python-syntax-stringify):
2427         New functions.
2429 2012-09-24  Chong Yidong  <cyd@gnu.org>
2431         * mail/supercite.el (sc-version): Remove obsolete function.
2432         (sc-describe): Don't mark as obsolete, since it is bound.
2433         (sc-submit-bug-report): Remove.
2435         * vc/log-edit.el (cvs-changelog-full-paragraphs)
2436         (cvs-commit-buffer-require-final-newline): Remove.
2437         (log-edit-require-final-newline)
2438         (log-edit-changelog-full-paragraphs): Default to t.
2440         * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
2441         * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
2442         * vc/vc.el (vc-checkout-carefully): Likewise.
2444         * vc/emerge.el (emerge-mode): Make it an obsolete alias.
2445         (emerge-version): Remove.
2447         * progmodes/compile.el (compile-internal): Remove.
2448         (compilation-parse-errors-function): Fix typo.
2450         * international/mule.el (set-char-table-default): Remove.
2451         (set-coding-priority, make-coding-system, generic-char-p)
2452         (charset-list, charset-bytes, charset-id): Use declare to mark
2453         functions as obsolete.
2455         * vc/pcvs-defs.el (cvs-buffer-name-alist)
2456         (cvs-invert-ignore-marks): Remove references to obsolete vars.
2457         * vc/vc-hooks.el (vc-default-registered): Don't use
2458         vc-master-templates.
2460         * font-lock.el (font-lock-reference-face):
2461         Use define-obsolete-variable-alias.
2463         * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
2464         * calendar/calendar.el (calendar-font-lock-keywords):
2465         * calendar/diary-lib.el (diary-font-lock-keywords)
2466         (diary-fancy-font-lock-keywords):
2467         * textmodes/reftex-sel.el (reftex-insert-docstruct):
2468         * textmodes/reftex-index.el (reftex-insert-index):
2469         * textmodes/reftex-cite.el (reftex-format-bib-entry):
2470         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2471         * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
2472         * progmodes/prolog.el (prolog-font-lock-keywords):
2473         * progmodes/idlwave.el (idlwave-idl-keywords):
2474         * progmodes/ada-mode.el (ada-font-lock-keywords):
2475         * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
2477 2012-09-24  Glenn Morris  <rgm@gnu.org>
2479         * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
2481 2012-09-23  Fabián Ezequiel Gallina  <fgallina@cuca>
2483         * progmodes/python.el (python-indent-line): More consistent cursor
2484         movement behavior.
2486 2012-09-23  Stefan Merten  <smerten@oekonux.de>
2488         * textmodes/rst.el: Fix compiler warning.
2490 2012-09-23  Roland Winkler  <winkler@gnu.org>
2492         * textmodes/bibtex.el (bibtex-autokey-transcriptions):
2493         Transcribe also LaTeX hyphenation.
2494         (bibtex-reformat): Bug fix. Do not quote twice the elements of
2495         bibtex-reformat-previous-options.
2497 2012-09-23  Roland Winkler  <winkler@gnu.org>
2499         * proced.el (proced-renice-command): New variable.
2500         (proced-marked-processes): New function.
2501         (proced-with-processes-buffer): New macro.
2502         (proced-send-signal): Use them.
2503         (proced-renice): New command bound to r.
2505 2012-09-23  Roland Winkler  <winkler@gnu.org>
2507         * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
2508         ibuffer-saved-filter-groups has one element, shortcut the call of
2509         completing-read.  (Bug#12331)
2511 2012-09-23  Chong Yidong  <cyd@gnu.org>
2513         * bindings.el (mode-line-toggle-read-only):
2514         * bs.el (bs-toggle-readonly):
2515         * buff-menu.el (Buffer-menu-toggle-read-only):
2516         * dired.el (dired-toggle-read-only):
2517         * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
2519 2012-09-23  Chong Yidong  <cyd@gnu.org>
2521         * image.el (image-type-available-p): Adapt to init-image-library
2522         argument changes.
2524 2012-09-22  Juri Linkov  <juri@jurta.org>
2526         * dired.el (dired-mode-map): Add [remap read-only-mode] for
2527         `dired-toggle-read-only'.  (Bug#12462)
2529 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
2531         * subr.el (temp-output-buffer-show): New function.
2532         (with-output-to-temp-buffer): Call temp-output-buffer-show
2533         instead of internal-temp-output-buffer-show.
2535 2012-09-22  Chong Yidong  <cyd@gnu.org>
2537         * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
2538         (Bug#12462).
2540         * repeat.el (repeat): Doc fix (Bug#12348).
2542         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
2543         (Bug#10909).
2545         * simple.el (shell-command-on-region): Doc fix.
2546         (read-only-mode): Doc fix.
2548 2012-09-22  Eli Zaretskii  <eliz@gnu.org>
2550         * emacs-lisp/timer.el (run-with-idle-timer)
2551         (timer-activate-when-idle): Warn against reinvoking an idle timer
2552         from within its own timer action.  (Bug#12447)
2554 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
2556         * cus-start.el (window-combination-limit): Add new optional
2557         values.
2558         * window.el (temp-buffer-window-show)
2559         (window--try-to-split-window): Handle new values of
2560         window-combination-limit (Bug#1806).
2561         (split-window): Test window-combination-limit for t instead of
2562         non-nil.
2563         (display-buffer-at-bottom): New buffer display action function.
2564         * help.el (temp-buffer-resize-regexps): New option.
2565         (temp-buffer-resize-mode): Rewrite doc-string.
2566         (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
2567         Don't resize reused window.  Suggested by Glenn Morris.
2569 2012-09-22  Stefan Merten  <smerten@oekonux.de>
2571         * textmodes/rst.el: Revamp section title faces.
2572         (rst-official-version)
2573         (rst-package-emacs-version-alist): Sync with official version
2574         V1.4.0.
2575         (rst-faces-defaults, rst-set-level-default)
2576         (rst-level-face-max, rst-level-face-base-color)
2577         (rst-level-face-base-light, rst-level-face-format-light)
2578         (rst-level-face-step-light, rst-define-level-faces): Obsolete.
2579         (rst-adornment-faces-alist): Match new setup.
2580         (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
2581         (rst-level-5, rst-level-6): New faces.
2583 2012-09-22  Chong Yidong  <cyd@gnu.org>
2585         * simple.el (undo): Handle indirect buffers (Bug#8207).
2587 2012-09-21  Leo Liu  <sdl.web@gmail.com>
2589         IDO: Disable match re-ordering for buffer switching.
2590         * ido.el (ido-buffer-disable-smart-matches): New variable.
2591         (ido-set-matches-1): Use it.  (Bug#2042)
2593 2012-09-21  Jose Marino  <marinoj@nso.edu>  (tiny change)
2595         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
2596         Fix 2011-05-17 change.  (Bug#12418)
2598 2012-09-21  Leo Liu  <sdl.web@gmail.com>
2600         * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
2602 2012-09-21  Glenn Morris  <rgm@gnu.org>
2604         * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
2605         Be more robust about locating simple.el.
2607 2012-09-21  Glenn Morris  <rgm@gnu.org>
2609         * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2611 2012-09-21  Joel Bion  <jpbion@westvi.com>  (tiny change)
2613         * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz.  (Bug#12382)
2615 2012-09-20  Juri Linkov  <juri@jurta.org>
2617         * replace.el (query-replace-read-from): Use `read-regexp' instead
2618         of `read-from-minibuffer' when `regexp-flag' is non-nil.
2619         (occur-read-primary-args): Use `read-regexp' instead of
2620         `read-string'.
2621         (multi-occur-in-matching-buffers): Use `read-regexp' instead of
2622         `read-from-minibuffer'.
2623         * isearch.el (isearch-occur): Use `read-regexp' instead of
2624         `read-string'.
2625         * dired.el (dired-read-regexp): Use `read-regexp' instead of
2626         `read-from-minibuffer'.
2627         * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2628         of `read-string'.  (Bug#7567)
2630         * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2631         and allow accepting a list of strings prepended to a list of
2632         standard default values.  Doc fix.  (Bug#12321)
2634         * replace.el (read-regexp): Add HISTORY arg.  (Bug#7567)
2636         * replace.el (read-regexp): Don't add ": " when PROMPT already
2637         ends with a colon and space.  (Bug#12321)
2639 2012-09-20  Tassilo Horn  <tsdh@gnu.org>
2641         * doc-view.el (doc-view-display): Better fix for the cl-assertion
2642         error.
2644 2012-09-20  Stefan Merten  <smerten@oekonux.de>
2646         * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
2647         Fixes feature request bug#11711.
2648         (rst-mode): Create `imenu-create-index-function'.
2649         (rst-get-stripped-line): Delete after refactoring.
2650         (rst-section-tree, rst-section-tree-rec)
2651         (rst-section-tree-point): Refactor and document properly.
2652         (rst-imenu-find-adornments-for-position)
2653         (rst-imenu-convert-cell, rst-imenu-create-index):
2654         New function.
2656 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2658         * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2659         (macroexp--expand-all): Use it.
2660         (macroexp--funcall-and-return): Remove by folding it into its sole
2661         caller (macroexp--warn-and-return).
2662         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2663         Use macroexp--obsolete-warning.
2665         * calc/calc.el: Fix last change by removing the whole chunk, since it
2666         was only needed back when Calc was not bundled.
2668 2012-09-20  Martin Rudalics  <rudalics@gmx.at>
2670         * emacs-lisp/debug.el (debug): Restore assignment to
2671         debugger-old-buffer removed on 2012-09-08.
2673 2012-09-20  Juri Linkov  <juri@jurta.org>
2675         * dired-aux.el (dired-diff): Remove (require 'diff) since
2676         `diff-latest-backup-file' is now autoloaded.
2678 2012-09-20  Chong Yidong  <cyd@gnu.org>
2680         * vc/diff.el (diff-latest-backup-file): Autoload.
2682 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2684         * calc/calc.el: Remove redundant autoload shape check.
2685         (sel-mode): Don't defvar.
2686         (calc-get-stack-element): Add `sel-mode' arg instead.
2687         (calc-top, calc-top-list): Pass it this additional argument.
2688         * calc/calc-store.el (calc-store-map):
2689         * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2690         (calc-map-equation, calc-outer-product, calc-inner-product):
2691         * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2693         * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2695 2012-09-19  Juri Linkov  <juri@jurta.org>
2697         * dired-aux.el (dired-diff): Add (require 'diff) because
2698         `diff-latest-backup-file' is not autoloaded.
2699         (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2700         of `dired-get-filename' to t to not report error when there is
2701         no default file on the current line.
2703 2012-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2705         * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2706         macroexp--eval-if-compile.
2707         (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2708         (macroexp--expand-all): Use them (bug#12371).
2710         * doc-view.el (doc-view-guess-paper-size)
2711         (doc-view-scale-bounding-box): Fix unbound `caddr'.
2713 2012-09-19  Tassilo Horn  <tsdh@gnu.org>
2715         New feature: set optimal slice from BoundingBox information.
2716         * doc-view.el (doc-view-mode-map): Add keybinding.
2717         (doc-view-menu): Add menu entry.
2718         (doc-view-set-slice): Adapt docstring.
2719         (doc-view-get-bounding-box, doc-view-guess-paper-size)
2720         (doc-view-scale-bounding-box)
2721         (doc-view-set-slice-from-bounding-box): New functions.
2722         (doc-view-paper-sizes): New defvar.
2724 2012-09-19  Glenn Morris  <rgm@gnu.org>
2726         * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2727         (byte-compile-log-warning): Autoload.  (Bug#12371)
2729         * calendar/calendar.el (calendar-american-month-header)
2730         (calendar-european-month-header, calendar-iso-month-header)
2731         (calendar-month-header): New options.
2732         (calendar-set-date-style): Set calendar-month-header.  Redraw calendar.
2733         (calendar-generate-month): Use calendar-month-header.  (Bug#9510)
2735 2012-09-19  Jan Djärv  <jan.h.d@swipnet.se>
2737         * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2739 2012-09-18  Juri Linkov  <juri@jurta.org>
2741         * dired-aux.el (dired-diff): Restore original functionality of
2742         getting the default value, but keep new feature of using the
2743         latest existing backup file (`diff-latest-backup-file').
2745 2012-09-18  Juri Linkov  <juri@jurta.org>
2747         * dired.el (dired-mark): If the region is active in Transient Mark
2748         mode, mark all files in the active region.  Doc fix.
2749         (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2750         Doc fix.  (Bug#10624)
2752 2012-09-18  Juri Linkov  <juri@jurta.org>
2754         * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2755         attributes for M-n are pulled from the file at point.
2756         (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2757         Suggested by Drew Adams.  (Bug#10624)
2759 2012-09-18  Dmitry Gutov  <dgutov@yandex.ru>
2761         * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2762         whitespace after "end".
2763         (ruby-do-end-to-brace): Collapse block to one line if it fits
2764         within fill-column.
2766 2012-09-18  Martin Rudalics  <rudalics@gmx.at>
2768         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
2769         value.
2770         (debug): Don't remove debugger window when debugger is expected
2771         to be back.
2773 2012-09-18  Chong Yidong  <cyd@gnu.org>
2775         * custom.el (defface): Doc fix.
2777         * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
2779 2012-09-18  Martin Blais  <blais@furius.ca>  (tiny change)
2781         * progmodes/compile.el (compilation-start): Use compilation-always-kill
2782         to initialize query-on-exit; then test that instead (bug#12288).
2784 2012-09-17  Stefan Merten  <smerten@oekonux.de>
2786         * textmodes/rst.el: Add support for `testcover'.
2787         (rst-defcustom-testcover, rst-testcover-add-compose)
2788         (rst-testcover-add-1value): New functions.
2789         (rst-portable-mark-active-p): Replace by `use-region-p'.
2790         (rst-update-section, rst-classify-adornment)
2791         (rst-find-title-line): Mark `1value' forms.
2792         (rst-classify-adornment): Remove superfluous form.
2793         (rst-update-section, rst-get-adornments-around)
2794         (rst-adornment-complete-p, rst-get-next-adornment)
2795         (rst-adjust, rst-promote-region)
2796         (rst-display-adornments-hierarchy, rst-straighten-adornments)
2797         (rst-find-pfx-in-region, rst-section-tree-rec)
2798         (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
2799         (rst-toc-node, rst-toc, rst-forward-section)
2800         (rst-iterate-leftmost-paragraphs)
2801         (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
2802         (rst-bullet-list-region)
2803         (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
2804         (rst-compile-find-conf, rst-compile)
2805         (rst-repeat-last-character): Fix style.
2807 2012-09-17  Chong Yidong  <cyd@gnu.org>
2809         * comint.el (comint--complete-file-name-data): Don't add a space
2810         if the status is `sole'; that adds a gratuitous space in the
2811         completion-cycling case (Bug#12092).
2813         * pcomplete.el (pcomplete-completions-at-point): Likewise.
2815 2012-09-17  Richard Stallman  <rms@gnu.org>
2817         * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
2818         only in the mime-shown mode, not in raw mode.
2819         (rmail-mime): Toggle off mime by displaying the message without
2820         mime processing.  (Bug#12305)
2822         * mail/rmail.el (rmail-retry-failure):
2823         Turn off mime processing first.  (Bug#12037)
2825         * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
2827 2012-09-17  Chong Yidong  <cyd@gnu.org>
2829         * shell.el (shell-file-name-chars, shell-file-name-quote-list)
2830         (shell-dynamic-complete-functions): Convert to defcustom.
2831         (shell-prompt-pattern, shell-completion-fignore): Doc fix.
2833         * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
2834         * comint.el (comint-prompt-read-only):
2835         * custom.el (defcustom):
2836         * hi-lock.el (hi-lock-mode):
2837         * ibuffer.el (ibuffer-formats):
2838         * ielm.el (ielm-prompt-read-only):
2839         * novice.el (disable-command):
2840         * saveplace.el (toggle-save-place):
2841         * speedbar.el (speedbar-supported-extension-expressions):
2842         * startup.el (auto-save-list-file-prefix, init-file-user)
2843         (after-init-hook, inhibit-startup-echo-area-message):
2844         * strokes.el (strokes-help):
2845         * time-stamp.el (time-stamp):
2846         * calendar/calendar.el (calendar, diary-file):
2847         * calendar/diary-lib.el (diary-mail-entries, diary)
2848         (diary-list-entries-hook):
2849         * calendar/holidays.el (holidays, calendar-holidays):
2850         * calendar/lunar.el (lunar-phases):
2851         * calendar/solar.el (sunrise-sunset):
2852         * emulation/edt.el (edt-load-keys):
2853         * emulation/viper.el (viper-mode):
2854         * eshell/em-alias.el (eshell-command-aliases-list):
2855         * eshell/esh-util.el (eshell-convert-numeric-arguments):
2856         * international/ogonek.el (ogonek-information):
2857         * net/tramp-cmds.el (tramp-bug):
2858         * net/quickurl.el (quickurl-reread-hook-postfix):
2859         * play/decipher.el (decipher-font-lock-keywords):
2860         * progmodes/cc-styles.el (c-set-style):
2861         * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
2862         * progmodes/inf-lisp.el (inferior-lisp-prompt):
2863         * progmodes/octave-mod.el (octave-mode):
2864         * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
2865         * progmodes/verilog-mode.el (verilog-read-defines):
2866         * textmodes/two-column.el (2C-mode): Likewise.
2868 2012-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2870         * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
2871         that holds many addresses.
2873 2012-09-16  Chong Yidong  <cyd@gnu.org>
2875         * align.el (align-areas): Call the indication function with
2876         positions instead of markers for arguments (Bug#12343).
2878         * files.el (parse-colon-path): Use split-string (Bug#12351).
2880         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
2881         (display-buffer-function): Mark as obsolete.
2883         * progmodes/compile.el (compilation-parse-errors): Accept list
2884         values similar to font-lock-keywords (Bug#12136).
2885         Suggested by Oleksandr Manzyuk.
2886         (compilation-error-regexp-alist): Doc fix.
2888 2012-09-15  Glenn Morris  <rgm@gnu.org>
2890         * version.el (emacs-bzr-version-bzr): New function.
2891         (emacs-bzr-get-version): Add optional EXTERNAL argument.
2893         * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
2894         checkouts, check the parent dirstate matches the branch.
2895         Add "--tree" to "bzr revno" arguments.  Don't try to shorten the
2896         empty string.
2898         * version.el (emacs-bzr-version): Doc fix.
2899         (emacs-bzr-version-dirstate): New function.
2900         (emacs-bzr-get-version): For lightweight checkouts, if the parent
2901         is local try and check that it matches the branch.  If not, just
2902         use dirstate information.  (Bug#12441)
2904 2012-09-14  Juri Linkov  <juri@jurta.org>
2906         * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
2907         (Bug#12399)
2909 2012-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2911         * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
2913         * emacs-lisp/edebug.el: Miscellaneous cleanup.
2914         Remove obsolete byte-compiler hack that tried to silence some warnings.
2915         (edebug-submit-bug-report): Remove.
2916         (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
2917         Remove aliases, use the un-prefixed name instead.
2918         (edebug-pop-to-buffer): Consider other frames.
2919         (edebug-original-read):: Make it more obvious that it's always defined.
2920         (edebug--make-form-data-entry, edebug--form-data-name)
2921         (edebug--form-data-begin, edebug--form-data-end): Rename from the
2922         single-dashed name, and implement with cl-defstruct.
2923         (edebug-set-form-data-entry): Use the standard accessors.
2924         (edebug-make-top-form-data-entry): Use push.
2925         (edebug-no-match): Drop useless `funcall'.
2926         (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
2927         to functions.
2928         (defsubst, dont-compile, eval-when-compile, eval-and-compile)
2929         (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
2930         (with-syntax-table, push, pop, 1value, noreturn, defadvice)
2931         (easy-menu-define, with-custom-print): Remove redundant specs.
2932         (edebug-outside-overriding-local-map)
2933         (edebug-outside-overriding-terminal-local-map): Remove, unused.
2934         (edebug--display): Bind unread-command-events directly to nil rather
2935         than binding it to unread-command-events and later setting it to nil.
2936         (edebug--display): Kill edebug-eval-buffer here...
2937         (edebug--recursive-edit): ...rather than here.
2938         Bind standard-output and standard-input.
2939         (edebug-eval): Check cl-macroexpand-all is fboundp.
2940         (edebug-temp-display-freq-count): Fix last change.
2942         * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
2943         * subr.el (noreturn, 1value): Add `debug' spec.
2944         * emacs-lisp/advice.el: Require cl-lib.
2945         (ad-copy-tree): Remove, use copy-tree instead.
2946         (ad-dolist): Remove use dolist or cl-dolist instead.
2947         (ad-do-return): Remove, use cl-return instead.
2948         (defadvice): Add `debug' spec.
2950 2012-09-13  Juri Linkov  <juri@jurta.org>
2952         * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
2953         (Bug#12399)
2955 2012-09-13  Glenn Morris  <rgm@gnu.org>
2957         * calc/calc.el (math-compose-expr):
2958         * calc/calc-ext.el (math-compose-expr):
2959         * progmodes/cc-defs.el (cl-macroexpand-all):
2960         * progmodes/cc-langs.el (delete-duplicates, mapcan)
2961         (cl-macroexpand-all): Update declarations.
2963         * vc/vc.el: No need to require ediff.
2964         (ediff-load-version-control): Declare.
2965         (ediff-vc-internal): Fix declaration.
2966         (vc-version-ediff): Require ediff.
2968 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
2970         Use a more backwards-compatible timer format (Bug#12430).
2971         * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
2972         being right after USECS, as that better supports old code that
2973         inadvisedly looked directly at the timer vector.
2975 2012-09-13  Kenichi Handa  <handa@gnu.org>
2977         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
2978         ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
2979         `coding-priority' property of these language environment.
2981 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
2983         Fix glitches caused by addition of psec to timers (Bug#12430).
2984         * image.el (image-animate-timer):
2985         * time.el (display-time-world-timer):
2986         Use timer--function and timer--args rather than raw access to
2987         timer vector.
2989 2012-09-13  Glenn Morris  <rgm@gnu.org>
2991         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
2992         If not compiling a file, try using load-file-name.
2994 2012-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2996         * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
2997         Fix last change.
2998         (edebug-update-eval-list): Use `push'.
3000         * emacs-lisp/edebug.el: Use lexical-binding.
3001         Remove the "edebug-" prefix from non-dynamically-scoped variables.
3002         Mark unused args with underscore.
3003         (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
3004         (edebug-form-data): Use defvar-local.
3005         (edebug-make-before-and-after-form, edebug-make-after-form):
3006         Use backquote.
3007         (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
3008         Not dynamically scoped any more.
3009         (edebug--enter-trace): Add arguments `function' and `args'.
3010         Rename from edebug-enter-trace.
3011         (edebug-enter): Call it accordingly.  Bind edebug-function explicitly.
3012         (edebug--update-coverage): Add `after-index' and `value' args.
3013         Rename from edebug-update-coverage.
3014         (edebug-slow-after): Call it accordingly.
3015         (edebug--recursive-edit): Add arg `arg-mode'.  Rename from
3016         edebug-recursive-edit.
3017         (edebug--display): Call it accordingly.  Add args `value',
3018         `offset-index', and `arg-mode'.  Rename from edebug-display.
3019         (edebug-debugger, edebug): Call it accordingly.
3020         (edebug-eval-display-list): Use dolist.
3022 2012-09-12  Juri Linkov  <juri@jurta.org>
3024         * info.el (Info-search): Don't check for isearch-mode and
3025         isearch-regexp before let-binding search-spaces-regexp to
3026         Info-search-whitespace-regexp.
3027         (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
3028         search-whitespace-regexp if isearch-lax-whitespace or
3029         isearch-regexp-lax-whitespace is non-nil.
3030         (Info-mode): Don't set local variable search-whitespace-regexp.
3031         http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
3033 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3035         * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
3036         (debugger-env-macro): Remove support for unread-command-char.
3038         * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
3039         the temporary map re-appearing on emulation-mode-map-alists.
3041         * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
3042         since 22.1.
3044         * ehelp.el (with-electric-help): Accept functions in
3045         electric-help-form-to-execute.
3046         (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
3047         And replace unread-command-char -> unread-command-events.
3049 2012-09-12  Michael Albinus  <michael.albinus@gmx.de>
3051         Sync with Tramp 2.2.6.
3053         * net/tramp.el (tramp-accept-process-output): Don't use
3054         JUST-THIS-ONE in the XEmacs case.
3056         * net/trampver.el: Update release number.
3058 2012-09-12  Martin Rudalics  <rudalics@gmx.at>
3060         * emacs-lisp/debug.el (debugger-previous-window-height):
3061         New variable.
3062         (debug): When debugger-jumping-flag is non-nil try to restore
3063         height of debugger window.  (Bug#8789)
3065 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3067         * emacs-lisp/edebug.el (edebug-enter): Don't mess with
3068         overriding-local-map and pre/post-command-hook here.
3069         (edebug-recursive-edit): Do it here instead (bug#12345).
3070         (edebug-outside-unread-command-char): Remove all uses of
3071         unread-command-char.
3073         * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
3074         inhibit-debugger is bound instead.
3076 2012-09-11  Bastien Guerry  <bzg@gnu.org>
3078         * subr.el (set-temporary-overlay-map): Add a docstring.
3079         (Bug#12346)
3081 2012-09-11  Bastien Guerry  <bzg@gnu.org>
3083         * minibuffer.el (completion-table-subvert): Fix docstring.
3084         (Bug#12347)
3086 2012-09-11  Bastien Guerry  <bzg@gnu.org>
3088         * help-fns.el (describe-variable): Fix typo.  (Bug#12346)
3090 2012-09-10  Michael R. Mauger  <mmaug@yahoo.com>
3092         * progmodes/sql.el: Version 3.1
3093         (sql-db2-escape-newlines): New variable.
3094         (sql-escape-newlines-filter): Use it.
3096 2012-09-10  Juanma Barranquero  <lekktu@gmail.com>
3098         * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
3100 2012-09-10  Dan Nicolaescu  <dann@gnu.org>
3102         * vc/diff-mode.el (diff-mode-menu):
3103         Bind diff-remove-trailing-whitespace.
3105 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3107         * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
3108         (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
3109         (emacs-lisp-byte-code-mode): New functions.
3110         (eval-sexp-add-defvars): Don't skip defvars in column >0.
3111         (eval-defun-2): Remove bogus interactive spec.
3112         (lisp-indent-line): Remove redundant whole-exp code, now done in
3113         indent-according-to-mode.
3114         (save-match-data): Remove redundant indent data.
3116         * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
3117         Use `declare'.
3119 2012-09-09  Juri Linkov  <juri@jurta.org>
3121         * replace.el (replace-regexp-lax-whitespace): New defcustom.
3122         (replace-lax-whitespace, query-replace-regexp)
3123         (query-replace-regexp-eval, replace-regexp): Doc fix.
3124         (perform-replace, replace-highlight): Let-bind
3125         isearch-lax-whitespace to replace-lax-whitespace and
3126         isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
3128         * isearch.el (isearch-query-replace): Let-bind
3129         replace-lax-whitespace to isearch-lax-whitespace and
3130         replace-regexp-lax-whitespace to
3131         isearch-regexp-lax-whitespace.  (Bug#10885)
3133 2012-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3135         * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
3137 2012-09-09  Alan Mackenzie  <acm@muc.de>
3139         * progmodes/cc-engine.el (c-state-cache-init):
3140         Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
3141         (c-record-parse-state-state):
3142         Record c-state-semi-nonlit-pos-cache\(-limit\)?.
3144 2012-09-09  Andreas Schwab  <schwab@linux-m68k.org>
3146         * register.el (register-separator): Rename from
3147         separator-register.  All uses changed.  Doc fix.
3148         (register): Fix version.
3150 2012-09-09  Chong Yidong  <cyd@gnu.org>
3152         * replace.el (query-replace-map): Bind four new symbols for
3153         requesting window scrolling.
3155         * subr.el (y-or-n-p): Handle the window-scrolling bindings in
3156         query-replace-map (Bug#8948).
3158         * custom.el (custom-theme-load-confirm): Use y-or-n-p.
3160         * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
3161         since they are now in query-replace-map.
3163         * window.el (scroll-other-window-down): Make the arg optional.
3165 2012-09-09  Chong Yidong  <cyd@gnu.org>
3167         * files.el (hack-local-variables-confirm): Use quit-window to kill
3168         the *Local Variables* buffer.
3170 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
3172         * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
3173         not just expect to be at its beginning.  Adjust callees.
3174         Succeed when do-end block has no space before the pipe character.
3175         (ruby-brace-to-do-end): When the original block is one-liner,
3176         convert to multiline.  Reindent the result.
3178 2012-09-08  Jambunathan K  <kjambunathan@gmail.com>
3180         * register.el (register): New group.
3181         (separator-register): New user option.
3182         (increment-register): Route it to `append-to-register', if
3183         register contains text.  Implication is that `C-x r +' can now be
3184         used for appending to a text register (bug#12217).
3185         (append-to-register, prepend-to-register): Add separator based on
3186         `separator-register'.
3188 2012-09-08  Alan Mackenzie  <acm@muc.de>
3190         AWK Mode: make auto-newline work when there's "==" in the pattern.
3191         * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
3192         correctly.
3193         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
3194         Test more rigorously for "=" token.
3196 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
3198         * progmodes/ruby-mode.el (ruby-match-expression-expansion):
3199         Only fail when reached LIMIT.
3201 2012-09-08  Chong Yidong  <cyd@gnu.org>
3203         * dired.el (dired-mode-map): Don't bind M-=.
3205         * dired-aux.el (dired-diff): Use backup file as default.
3207 2012-09-08  Drew Adams  <drew.adams@oracle.com>
3209         * subr.el (add-to-history): Fix delete usage (Bug#12314).
3211 2012-09-08  Chong Yidong  <cyd@gnu.org>
3213         * subr.el (syntax-after, syntax-class): Doc fix.
3215 2012-09-08  Martin Rudalics  <rudalics@gmx.at>
3217         * window.el (display-buffer-in-previous-window): New buffer
3218         display action function.
3220         * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
3221         (debugger-previous-window): New variable.
3222         (debug): Rewrite using display-buffer-in-previous-window,
3223         quit-restore-window and debugger-bury-or-kill.  (Bug#8789)
3225 2012-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3227         * emacs-lisp/byte-run.el (defun): Tweak message.  Simplify code.
3229 2012-09-07  Matt McClure  <mlm@aya.yale.edu>  (tiny change)
3231         * progmodes/python.el (python-shell-send-string):
3232         When default-directory is remote, create temp file on remote
3233         filesystem.
3234         (python-shell-send-file): When file is remote, pass local view of
3235         file paths to remote Python interpreter.  (Bug#12340)
3237 2012-09-07  Chong Yidong  <cyd@gnu.org>
3239         * window.el (switch-to-buffer): Doc fix (Bug#12181).
3241         * files.el (after-find-file): Don't fail on a read-only buffer if
3242         require-final-newline is `visit' or `visit-save' (Bug#11156).
3244         * subr.el (read-char-choice): Allow quitting via ESC ESC.
3246         * userlock.el (ask-user-about-supersession-threat):
3247         Use read-char-choice (Bug#12093).
3249 2012-09-07  Chong Yidong  <cyd@gnu.org>
3251         * subr.el (buffer-narrowed-p): New function.
3253         * ses.el (ses-widen):
3254         * simple.el (count-words--buffer-message):
3255         * net/browse-url.el (browse-url-of-buffer): Use it.
3257         * simple.el (count-words-region): Don't signal an error if there
3258         is a non-nil prefix arg and the mark is not set.
3260         * help.el (describe-key-briefly): Allow the message to be seen
3261         when invoked from the minibuffer (Bug#7014).
3263 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
3265         * progmodes/ruby-mode.el (ruby-end-of-defun)
3266         (ruby-beginning-of-defun): Simplify, allow indentation before
3267         block beginning and end keywords.
3268         (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
3269         (ruby-end-of-defun): Expect that the point is at the beginning of
3270         the defun.
3272 2012-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3274         * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
3275         (bug#12367).
3276         (cl--make-usage-args): Strip _ from argument names.
3278 2012-09-06  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3280         * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
3281         obsolete alias speedbar-key-map.
3282         (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
3283         (vhdl-index-menu-init): Don't use obsolete variable
3284         font-lock-maximum-size.
3286 2012-09-06  Chong Yidong  <cyd@gnu.org>
3288         * frame.el (window-system-version): Mark as obsolete.
3290         * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
3291         of obsolete variable speedbar-key-map.
3293 2012-09-06  Juri Linkov  <juri@jurta.org>
3295         * replace.el (replace-lax-whitespace): New defcustom.
3296         (query-replace, query-replace-regexp, query-replace-regexp-eval)
3297         (replace-string, replace-regexp): Mention it in docstrings.
3298         (perform-replace, replace-highlight): Let-bind
3299         isearch-lax-whitespace and isearch-regexp-lax-whitespace according
3300         to the values of replace-lax-whitespace and regexp-flag.
3301         Don't let-bind search-whitespace-regexp.  (Bug#10885)
3303         * isearch.el (isearch-query-replace): Let-bind
3304         replace-lax-whitespace instead of let-binding
3305         replace-search-function and replace-re-search-function.
3306         (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
3307         and isearch-regexp-lax-whitespace to lazy-highlight variables.
3308         (isearch-toggle-symbol): Set isearch-regexp to nil
3309         in isearch-word mode (like in isearch-toggle-word).
3311 2012-09-06  Juri Linkov  <juri@jurta.org>
3313         * replace.el (replace-search-function)
3314         (replace-re-search-function): Set default values to nil.
3315         (perform-replace): Let-bind isearch-related variables based on
3316         replace-related values, call `isearch-search-fun' and let-bind
3317         the result to `search-function'.  Remove code that sets
3318         `search-function' and `search-string' separately for
3319         `delimited-flag'.
3320         (replace-highlight): Add new argument `delimited-flag' and
3321         rename other arguments to the names used in `perform-replace'.
3322         Let-bind `isearch-word' to the argument `delimited-flag'.
3323         (Bug#10885, bug#10887)
3325 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
3327         * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
3328         ruby-beginning-of-indent, simplify, allow all keywords to have
3329         indentation before them.
3330         (ruby-beginning-of-indent): Adjust for above.  Search until the
3331         found point is not inside a string or comment.
3332         (ruby-font-lock-keywords): Allow symbols to start with "@"
3333         character, give them higher priority than variables.
3334         (ruby-syntax-propertize-function)
3335         (ruby-font-lock-syntactic-keywords): Remove the "not comments"
3336         matchers.  Expression expansions are not comments when inside a
3337         string, and there comment syntax status is irrelevant.
3338         (ruby-match-expression-expansion): New function.  Check that
3339         expression expansion is inside a string, and it's not escaped.
3340         (ruby-font-lock-keywords): Use it.
3342 2012-09-05  Martin Rudalics  <rudalics@gmx.at>
3344         * help.el (temp-buffer-max-height): New default value.
3345         (temp-buffer-resize-frames): New option.
3346         (resize-temp-buffer-window): Optionally resize frame.
3348         * window.el (fit-frame-to-buffer-bottom-margin): New option.
3349         (fit-frame-to-buffer): New function.
3351 2012-09-05  Glenn Morris  <rgm@gnu.org>
3353         * emulation/cua-rect.el (cua--init-rectangles):
3354         * textmodes/picture.el (picture-mode-map):
3355         * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
3356         like forward-char and backward-char.  (Bug#12317)
3358 2012-09-05  Leo Liu  <sdl.web@gmail.com>
3360         * progmodes/flymake.el (flymake-warning-re): New variable.
3361         (flymake-parse-line): Use it.
3363 2012-09-05  Glenn Morris  <rgm@gnu.org>
3365         * calendar/holidays.el (holiday-christian-holidays):
3366         Rename an entry.  (Bug#12289)
3368 2012-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3370         * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
3371         (bug#12222).
3373 2012-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3375         * loadup.el: Load macroexp.  Remove hack.
3376         * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
3377         (macroexp--expand-all): Use it to get better warnings.
3378         (macroexp--backtrace, macroexp--trim-backtrace-frame)
3379         (internal-macroexpand-for-load): New functions.
3380         (macroexp--pending-eager-loads): New var.
3381         (emacs-startup-hook): New hack to replace one in loadup.el.
3382         * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
3383         (cl--compiler-macro-cXXr): Move to top, before they can be used.
3384         (cl-psetf): Simplify.
3385         (cl-defstruct): Add indent rule.
3387 2012-09-04  Lars Ingebrigtsen  <larsi@gnus.org>
3389         * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
3390         over `user-mail-address' for the SMTP MAIL FROM envelope.
3391         (smtpmail-via-smtp): Ditto.
3393 2012-09-04  Dmitry Gutov  <dgutov@yandex.ru>
3395         * progmodes/ruby-mode.el: Clean up keybindings.
3396         (ruby-mode-map): Don't bind ruby-electric-brace,
3397         ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
3398         backward-kill-word, reindent-then-newline-and-indent.
3399         (ruby-mark-defun): Remove.
3400         (ruby-electric-brace): Remove.  Obsoleted by electric-indent-chars.
3401         (ruby-mode): Set local beginning-of-defun-function and
3402         end-of-defun-function values.
3404 2012-09-03  Martin Rudalics  <rudalics@gmx.at>
3406         * window.el (temp-buffer-window-setup-hook)
3407         (temp-buffer-window-show-hook): New hooks.
3408         (temp-buffer-window-setup, temp-buffer-window-show)
3409         (with-temp-buffer-window): New functions.
3410         (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
3411         (special-display-popup-frame): Make sure the window used shows BUFFER.
3413         * help.el (temp-buffer-resize-mode): Fix doc-string.
3414         (resize-temp-buffer-window): New optional argument WINDOW.
3416         * files.el (recover-file, save-buffers-kill-emacs):
3417         * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
3419 2012-09-02  Michael Albinus  <michael.albinus@gmx.de>
3421         * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
3422         remote definition of `default-directory', ensure we can connect.
3424 2012-09-02  Juri Linkov  <juri@jurta.org>
3426         Toggle whitespace matching mode with M-s SPC.
3427         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
3429         * isearch.el (search-whitespace-regexp): Doc fix.
3430         Remove cons cell customization.
3431         (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
3432         (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
3433         New variables.
3434         (isearch-forward, isearch-forward-regexp): Doc fix.
3435         (isearch-toggle-lax-whitespace): New command.
3436         (search-forward-lax-whitespace, search-backward-lax-whitespace)
3437         (re-search-forward-lax-whitespace)
3438         (re-search-backward-lax-whitespace): New functions.
3439         (isearch-whitespace-regexp): Remove function.
3440         (isearch-query-replace): Let-bind replace-search-function and
3441         replace-re-search-function.
3442         (isearch-occur): Let-bind search-spaces-regexp according to the
3443         value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
3444         (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
3445         condition for C-q SPC.
3446         (isearch-search-fun-default): Use new functions mentioned above.
3447         (isearch-search-forward, isearch-search-backward): Remove functions.
3448         (isearch-search): Don't let-bind search-spaces-regexp.
3449         (isearch-lazy-highlight-space-regexp): Remove variable.
3450         (isearch-lazy-highlight-lax-whitespace)
3451         (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
3452         (isearch-lazy-highlight-new-loop): Use them.
3453         (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
3455 2012-09-02  Chong Yidong  <cyd@gnu.org>
3457         * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
3459 2012-09-02  Glenn Morris  <rgm@gnu.org>
3461         * simple.el (undo): Tweak message in undo-only case.  (Bug#12283)
3463 2012-09-01  Glenn Morris  <rgm@gnu.org>
3465         * term.el: Tidy up menu definitions.
3466         (term-mode-map): Use easymenu for In/Out, Complete menus.
3467         (term-pager-break-map): Initialize in the defvar.
3468         (term-terminal-menu, term-signals-menu): Define with easymenu.
3469         (term-terminal-menu): Also show it in line-mode.  (Bug#11957)
3470         (term-pager-menu): New, extracted from term-process-pager.
3471         (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
3472         (term-update-mode-line): Propertize line/char and page items.
3473         (term-process-pager): Move keymap initialization elsewhere.
3475 2012-09-01  Martin Rudalics  <rudalics@gmx.at>
3477         * window.el (switch-to-prev-buffer): Handle additional values of
3478         BURY-OR-KILL argument.  Don't switch in minibuffer window.
3479         (switch-to-next-buffer): Don't switch in minibuffer window.
3480         (quit-restore-window): New function based on quit-window.
3481         Handle additional values of former KILL argument.
3482         (quit-window): Call quit-restore-window with appropriate
3483         interpretation of KILL argument.
3484         (display-buffer-below-selected): New buffer display action
3485         function.
3487 2012-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3489         * minibuffer.el (completion-at-point-functions): Complete docstring
3490         (bug#12254).
3492 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3494         Better seed support for (random).
3495         * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
3496         * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
3497         * play/mpuz.el, play/tetris.el, play/zone.el:
3498         * calc/calc-comb.el (math-init-random-base):
3499         * play/blackbox.el (bb-init-board):
3500         * play/life.el (life):
3501         * server.el (server-use-tcp):
3502         * type-break.el (type-break):
3503         Remove unnecessary call to (random t).
3504         * net/sasl.el (sasl-unique-id-function):
3505         Change (random t) to (random), now that the latter is more random.
3506         * play/life.el (life-initialized): Remove no-longer-needed var.
3508 2012-08-31  Alp Aker  <alp.tekin.aker@gmail.com>
3510         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3511         Consider frame's buffer predicate when choosing the buffer.
3512         (Bug#12081)
3514 2012-08-30  Richard Stallman  <rms@gnu.org>
3516         * simple.el (special-mode-map): Delete binding for `z'.
3518 2012-08-30  Andreas Schwab  <schwab@linux-m68k.org>
3520         * progmodes/compile.el (compilation-always-kill): Doc fix.
3522 2012-08-30  Chong Yidong  <cyd@gnu.org>
3524         * window.el (display-buffer-reuse-frames): Make the obsolescence
3525         message more informative.
3527 2012-08-30  Glenn Morris  <rgm@gnu.org>
3529         * paren.el (show-paren-delay):
3530         Add a :set function.  Doc fix.  (Bug#12297)
3532 2012-08-29  Martin Blais  <blais@furius.ca>  (tiny change)
3534         * progmodes/compile.el (compilation-always-kill): New var.
3535         (compilation-start): Use it.
3537 2012-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3539         * simple.el (read-only-mode): Move from files.el for bootstrapping.
3540         * files.el (read-only-mode): Move to simple.el.
3542         * files.el (read-only-mode): New minor mode.
3543         (toggle-read-only): Use it and mark obsolete.
3544         (find-file--read-only):
3545         * vc/vc.el (vc-next-action, vc-checkout):
3546         * vc/vc-cvs.el (vc-cvs-checkout):
3547         * obsolete/vc-mcvs.el (vc-mcvs-update):
3548         * ffap.el (ffap--toggle-read-only): Update callers.
3550 2012-08-29  Michael Albinus  <michael.albinus@gmx.de>
3552         * eshell/esh-ext.el (eshell-external-command): Do not examine
3553         remote shell scripts.
3554         See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
3556         * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
3557         "/usr/local/sbin".
3559 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3561         * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
3563 2012-08-28  Leo Liu  <sdl.web@gmail.com>
3565         * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
3566         completion-at-point.  (Bug#12220)
3568         * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
3570         * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
3572 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3574         * files.el (safe-local-eval-forms): Fix before-save-hook entry to
3575         be buffer-local; add delete-trailing-whitespace (bug#12259).
3577 2012-08-28  Jeremy Moore  <jmoore@ieee.org>  (tiny change)
3579         * progmodes/hideif.el (hif-compress-define-list):
3580         Fix typo.  (Bug#11951)
3582 2012-08-28  Dan Nicolaescu  <dann@gnu.org>
3584         * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
3585         buffer local setting.
3587         * net/rcirc.el (rcirc-split-message): Fix for buffer-local
3588         rcirc-encode-coding-system.
3590 2012-08-28  Leo Liu  <sdl.web@gmail.com>
3592         * net/rcirc.el (rcirc-split-message): New function.
3593         (rcirc-send-message): Use it.  (Bug#12051)
3595 2012-08-28  Juri Linkov  <juri@jurta.org>
3597         * info.el (Info-fontify-node): Hide empty lines at the end of
3598         the node.  (Bug#12272)
3600 2012-08-27  Drew Adams  <drew.adams@oracle.com>
3602         * dired.el (dired-pop-to-buffer): Make window start at beginning
3603         of buffer (Bug#12281).
3605 2012-08-26  Chong Yidong  <cyd@gnu.org>
3607         * window.el (special-display-regexps, special-display-frame-alist)
3608         (special-display-buffer-names, special-display-function)
3609         (display-buffer-reuse-frames): Mark as obsolete.
3611         * progmodes/compile.el: Don't use display-buffer-reuse-frames.
3613         * help.el (help-print-return-message): Don't treat
3614         display-buffer-reuse-frames specially.
3616 2012-08-26  Chong Yidong  <cyd@gnu.org>
3618         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3619         New variable, replacing gdb-frame-parameters.
3620         (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
3621         (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
3622         (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
3623         (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
3624         (def-gdb-frame-for-buffer): Macro deleted.  It is easier to define
3625         the functions directly with gdb-display-buffer-other-frame-action.
3626         (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
3627         (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3628         (gdb-display-stack-buffer, gdb-display-locals-buffer)
3629         (gdb-display-registers-buffer): Define directly.
3630         (def-gdb-display-buffer): Macro deleted.
3631         (gdb-display-buffer): Remove second and third args, callers don't
3632         use them.  Defer to the default display-buffer behavior, apart
3633         from making windows dedicated.
3634         (gdb-setup-windows): Don't call display-buffer unnecessarily.
3636         * progmodes/gud.el (gud-display-line): Just use display-buffer.
3638         * window.el (display-buffer-pop-up-frame): Handle a
3639         pop-up-frame-parameters alist entry.
3640         (display-buffer): Document it.
3642 2012-08-26  Chong Yidong  <cyd@gnu.org>
3644         * isearch.el (search-whitespace-regexp): Make string and nil
3645         values apply to both ordinary and regexp search.  Allow a cons
3646         cell value to distinguish between the two.
3647         (isearch-whitespace-regexp, isearch-search-forward)
3648         (isearch-search-backward): New functions.
3649         (isearch-occur, isearch-search-fun-default, isearch-search)
3650         (isearch-lazy-highlight-new-loop): Use them.
3651         (isearch-forward, isearch-forward-regexp): Doc fix.
3653 2012-08-26  Chong Yidong  <cyd@gnu.org>
3655         * faces.el (help-argument-name): Always inherit from italic
3656         (Bug#12213).
3658 2012-08-25  Martin Rudalics  <rudalics@gmx.at>
3660         * window.el (window--even-window-heights): Even heights when
3661         WINDOW and the selected window form a vertical combination.
3662         (display-buffer-use-some-window): Provide that window used gets
3663         sized back by quit-window.  (Bug#11880) and (Bug#12091)
3665 2012-08-24  Paul Eggert  <eggert@cs.ucla.edu>
3667         Fix file time stamp problem with bzr and CVS (Bug#12001).
3668         * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3669         in the file's time stamp, since the version control system loses
3670         that information.
3672 2012-08-22  Juri Linkov  <juri@jurta.org>
3674         * info.el (Info-fontify-node): Hide the suffix of the
3675         Info file name in the header line.  (Bug#12187)
3677 2012-08-22  Glenn Morris  <rgm@gnu.org>
3679         * calendar/cal-tex.el (cal-tex-weekly-common):
3680         Restore leading blank page.
3682 2012-08-22  Le Wang  <l26wang@gmail.com>
3684         * misc.el (forward-to-word, backward-to-word): Activate or extend
3685         the region under `shift-select-mode'.  (Bug#12231)
3687 2012-08-22  Bastien Guerry  <bzg@gnu.org>
3689         * progmodes/executable.el (executable-prefix): Set to "#!" instead
3690         of "#! ".  http://www.in-ulm.de/~mascheck/various/shebang/#details
3691         gives details on why the space is never needed.
3693 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
3695         * window.el (walk-window-tree, window-with-parameter):
3696         New optional argument MINIBUF to control whether these functions
3697         should run on the minibuffer window.
3698         (window-at-side-list): Don't operate on minibuffer window.
3699         (window-in-direction): Simplify and rewrite doc-string.
3700         (window--size-ignore): Rename to window--size-ignore-p.
3701         Update callers.
3702         (display-buffer-in-atom-window, window--major-non-side-window)
3703         (window--major-side-window, display-buffer-in-major-side-window)
3704         (delete-side-window, display-buffer-in-side-window):
3705         New functions.
3706         (window--side-check, window-deletable-p, delete-window)
3707         (delete-other-windows, split-window): Handle side windows and
3708         atomic windows appropriately.
3709         (window--display-buffer): Call display-buffer-record-window also
3710         when the window buffer did not change.
3712 2012-08-22  Christopher Schmidt  <christopher@ch.ristopher.com>
3714         * help-fns.el (help-fns--key-bindings):
3715         Abbreviate non-symbol remap targets.  (Bug#12174)
3717 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
3719         * dired.el (dired-mark-remembered): Don't clobber point.
3720         (Bug#11795)
3722 2012-08-22  Glenn Morris  <rgm@gnu.org>
3724         * progmodes/bug-reference.el (bug-reference): New custom group.
3725         (bug-reference-bug-regexp): Make it a defcustom.
3727 2012-08-22  Daiki Ueno  <ueno@unixuser.org>
3729         * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3730         (js-paren-indent-offset, js-square-indent-offset)
3731         (js-curly-indent-offset): Add :safe (Bug#12257).
3733 2012-08-22  Edward O'Connor  <hober0@gmail.com>
3735         * json.el (json-key-format): Add error properties.
3736         (json-encode-key): New function.
3737         (json-encode-hash-table, json-encode-alist, json-encode-plist):
3738         Use json-encode-key.
3740 2012-08-22  Glenn Morris  <rgm@gnu.org>
3742         * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3743         (cal-tex-leftday, cal-tex-rightday): Remove functions.
3744         (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3745         Update for above change.
3747 2012-08-21  Andreas Schwab  <schwab@linux-m68k.org>
3749         * cus-face.el (custom-face-attributes): Fix customize type for the
3750         :underline attribute.  (Bug#11805)
3752 2012-08-21  Martin Rudalics  <rudalics@gmx.at>
3754         * window.el (window-point-1, set-window-point-1): Remove.
3755         (window-in-direction, record-window-buffer)
3756         (set-window-buffer-start-and-point, split-window-below)
3757         (window--state-get-1, display-buffer-record-window):
3758         Replace calls to window-point-1 and set-window-point-1 by calls to
3759         window-point and set-window-point respectively.
3761 2012-08-21  Glenn Morris  <rgm@gnu.org>
3763         * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3764         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
3765         Use it.
3767         * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
3768         (cal-tex-shortday): New function.
3769         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
3770         (cal-tex-cursor-filofax-daily): Use the above.
3772         * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
3773         New functions.
3774         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3775         (cal-tex-cursor-filofax-week): Use them.
3777         * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
3778         New constants.
3779         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3780         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
3782         * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
3783         (cal-tex-end-document): Don't rely on buffer name.
3785         * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
3786         Use cal-tex-vspace.
3787         (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
3788         (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
3789         (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
3790         Use cal-tex-arg.
3792         * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
3793         (cal-tex-cursor-week, cal-tex-cursor-week2)
3794         (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
3795         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3796         (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
3797         (cal-tex-insert-preamble, cal-tex-b-document)
3798         (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
3799         Improve cal-tex-cmd usage.
3801         * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
3802         (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
3803         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
3804         (cal-tex-weekly-paper): New function.
3805         (cal-tex-cursor-week, cal-tex-cursor-week2)
3806         (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3807         (cal-tex-cursor-day): Use it.
3809         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
3810         (cal-tex-cursor-filofax-week): Remove leading blank page.
3812         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3813         Add autoload cookie.  For now at least, don't use color, since
3814         no other cal-tex function does.
3816         * calendar/cal-tex.el (cal-tex-cursor-week-iso)
3817         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3818         (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
3820 2012-08-21  Juri Linkov  <juri@jurta.org>
3822         * info.el (Info-file-attributes): New variable.
3823         (info-insert-file-contents): Add file attributes to
3824         `Info-file-attributes'.  Clear the caches `Info-index-nodes' and
3825         `Info-toc-nodes' when previous modtime of the Info file is less
3826         than new modtime.
3827         (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
3828         of info.el.  (Bug#12230)
3830 2012-08-20  Glenn Morris  <rgm@gnu.org>
3832         * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
3833         * calendar/holidays.el (calendar-holiday-list):
3834         Report errors with display-warning rather than beep'n'sleep.
3836 2012-08-20  Michael Albinus  <michael.albinus@gmx.de>
3838         * net/tramp.el (tramp-accept-process-output): Accept only output
3839         from PROC.  Otherwise, process filters and sentinels might be
3840         confused.  (Bug#12145)
3842 2012-08-20  Chong Yidong  <cyd@gnu.org>
3844         * descr-text.el (describe-text-properties-1): Use overlays-in to
3845         report on empty overlays (Bug#3322).
3847 2012-08-20  Glenn Morris  <rgm@gnu.org>
3849         * mail/rmailout.el (rmail-output-read-file-name):
3850         Trap and report errors in rmail-output-file-alist elements.
3852         * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
3853         since most non-font-lock faces are not also variables).
3855 2012-08-20  Edward Reingold  <reingold@iit.edu>
3857         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3858         New function.  (Bug12160)
3860 2012-08-19  Glenn Morris  <rgm@gnu.org>
3862         * mail/rmailout.el (rmail-output-read-file-name):
3863         Fix previous change (when the alist is nil or does not match).
3865 2012-08-19  Chong Yidong  <cyd@gnu.org>
3867         * xml.el (xml-escape-string): Don't refer to xml-entity-alist
3868         (Bug#12228).
3870 2012-08-18  Chong Yidong  <cyd@gnu.org>
3872         * simple.el (yank-handled-properties): New defcustom.
3873         (yank-excluded-properties): Add font-lock-face and category.
3874         (yank): Doc fix.
3876         * subr.el (remove-yank-excluded-properties):
3877         Obey yank-handled-properties.  The special handling of font-lock-face
3878         and category is now done this way, instead of being hard-coded.
3879         (insert-for-yank-1): Remove font-lock-face handling.
3880         (yank-handle-font-lock-face-property)
3881         (yank-handle-category-property): New function.
3883 2012-08-17  Glenn Morris  <rgm@gnu.org>
3885         * mail/rmailout.el (rmail-output-read-file-name):
3886         Check rmail-output-file-alist against the full message body
3887         in the correct rmail buffer.  (Bug#12214)
3889 2012-08-17  Michael Albinus  <michael.albinus@gmx.de>
3891         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3892         Eliminate superfluous prompt.  (Bug#12203)
3894 2012-08-17  Chong Yidong  <cyd@gnu.org>
3896         * mouse.el (mouse-appearance-menu): If x-select-font returns a
3897         font spec, set the font directly (Bug#3228).
3899 2012-08-17  Martin Rudalics  <rudalics@gmx.at>
3901         * window.el (delete-window): Fix last fix.
3903 2012-08-16  Martin Rudalics  <rudalics@gmx.at>
3905         * window.el (window-valid-p): Move to window.c.
3906         (window-child, window-child-count, window-last-child)
3907         (window-normalize-window, window-combined-p)
3908         (window-combinations, window-atom-root, window-min-size)
3909         (window-sizable, window-sizable-p, window-size-fixed-p)
3910         (window-min-delta, window-max-delta, window--resizable)
3911         (window--resizable-p, window-resizable, window-total-size)
3912         (window-full-height-p, window-full-width-p, window-body-size)
3913         (window-at-side-p, adjust-window-trailing-edge, maximize-window)
3914         (minimize-window, window-deletable-p, delete-window)
3915         (delete-other-windows, set-window-buffer-start-and-point)
3916         (next-buffer, previous-buffer, split-window, balance-windows-2)
3917         (set-window-text-height, window-buffer-height)
3918         (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
3919         (truncated-partial-width-window-p): Minor code adjustments.
3920         In doc-strings state whether the argument window has to denote a
3921         live, valid or any window.
3923 2012-08-16  Phil Sainty  <psainty@orcon.net.nz>  (tiny change)
3925         * progmodes/subword.el (subword-forward-function)
3926         (subword-backward-function, subword-forward-regexp)
3927         (subword-backward-regexp): New variables.
3928         (subword-forward, subword-forward-internal, subword-backward-internal):
3929         Use new variables, eg so that different "word" definitions
3930         can be easily used.  (Bug#11411)
3932 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3934         * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
3935         for composite selectors.
3936         * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
3937         operation just because we can't find a previous revision.
3939 2012-08-15  Chong Yidong  <cyd@gnu.org>
3941         * frame.el (set-frame-font): Accept font objects.
3943 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3945         * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
3947 2012-08-15  Wolfgang Jenkner  <wjenkner@inode.at>
3949         * man.el (Man-overstrike-face, Man-underline-face)
3950         (Man-reverse-face): Remove variables.
3951         (Man-overstrike, Man-underline, Man-reverse): New faces.
3952         (Man-fontify-manpage): Use them instead of the variables.
3953         (Man-cleanup-manpage): Comment change.
3954         (Man-ansi-color-map): New variable.
3955         (Man-fontify-manpage): Use it.
3956         Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
3958         Implement ANSI SGR parameters 22-27 (bug#12146).
3959         * ansi-color.el (ansi-colors): Doc fix.
3960         (ansi-color-context, ansi-color-context-region): Doc fix.
3961         (ansi-color--find-face): New function.
3962         (ansi-color-apply, ansi-color-apply-on-region): Use it.
3963         Rename the local variable `face' to `codes' since it is now a list of
3964         ansi codes.  Doc fix.
3965         (ansi-color-get-face): Remove.
3966         (ansi-color-parse-sequence): New function, derived from
3967         ansi-color-get-face.
3968         (ansi-color-apply-sequence): Use it.  Rewrite, and support ansi
3969         codes 22-27.
3971 2012-08-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3973         * subr.el (read-passwd): Allow use from a minibuffer.
3975 2012-08-14  Eli Zaretskii  <eliz@gnu.org>
3977         * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
3978         inside comments and strings as identifiers.
3980         * progmodes/gud.el (gud-tooltip-print-command): Quote the
3981         expression to evaluate.  This allows to evaluate expressions with
3982         embedded whitespace.
3983         (gud-tooltip-tips): Add a blank before the newline in the
3984         message-box text, for the benefit of message-box emulation on
3985         MS-Windows.
3987         * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
3988         messages from GDB, pop them up in a tooltip to give feedback to
3989         user.
3990         (gdb-tooltip-print-1): Quote the expression to evaluate.
3991         This allows to evaluate expressions with embedded whitespace.
3992         (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
3993         if the TTY name is nil or empty (which happens when communicating
3994         with the inferior via pipes, e.g. on MS-Windows).
3995         (gdb-internals): If GDB sends a "&\n" empty debugging message,
3996         don't send that to the GUD buffer.
3998 2012-08-14  Glenn Morris  <rgm@gnu.org>
4000         * emacs-lisp/bytecomp.el (byte-compile-setq-default):
4001         Optimize away setq-default with no args, as for setq.  (Bug#12195)
4003 2012-08-14  Chong Yidong  <cyd@gnu.org>
4005         * minibuffer.el (read-file-name): Doc fix (Bug#10881).
4007         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
4008         (Bug#12085).
4010 2012-08-14  Glenn Morris  <rgm@gnu.org>
4012         * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
4014 2012-08-14  Michael Albinus  <michael.albinus@gmx.de>
4016         * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
4017         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4018         Use cached shell name.
4020 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
4022         * progmodes/python.el (python-shell-send-string):
4023         (python-shell-send-setup-code): Do not use `format' with `message'.
4025 2012-08-14  Dmitry Gutov  <dgutov@yandex.ru>
4027         * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
4028         (ruby-percent-literal-beg-re): New constant.
4029         (ruby-syntax-general-delimiters-goto-beg): Rename to
4030         `ruby-syntax-enclosing-percent-literal', improve literal type check.
4031         (ruby-syntax-propertize-general-delimiters): Rename to
4032         `ruby-syntax-propertize-percent-literal', it's a shorter and more
4033         popular term.  Adjust comments everywhere.
4034         (ruby-syntax-propertize-percent-literal): Only propertize when not
4035         inside a simple string or comment.  When the literal is unclosed,
4036         leave the text after it unpropertized.
4037         (ruby-syntax-methods-before-regexp): New constant.
4038         (ruby-syntax-propertize-function): Use it to recognize regexps.
4039         Don't look at the text after regexp, just use the whitelist.
4041 2012-08-14  Andreas Schwab  <schwab@linux-m68k.org>
4043         * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
4044         non-nil always load the compiled file if it exists.  (Bug#12197)
4046 2012-08-14  Chong Yidong  <cyd@gnu.org>
4048         * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
4049         (hi-lock-set-pattern): When deciding whether to use font lock or
4050         overlays, look at font-lock-mode instead of font-lock-fontified
4051         (Bug#12168).
4052         (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
4053         (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
4055 2012-08-14  Daiki Ueno  <ueno@unixuser.org>
4057         * subr.el (internal--after-with-selected-window): Fix typo
4058         (Bug#12193).
4060 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
4062         Use `completion-table-dynamic' for completion functions.
4063         * progmodes/python.el
4064         (python-shell-completion--do-completion-at-point)
4065         (python-shell-completion--get-completions):
4066         Remove functions.
4067         (python-shell-completion-complete-at-point): New function.
4068         (python-completion-complete-at-point): Use it.
4070 2012-08-13  Jambunathan K  <kjambunathan@gmail.com>
4072         * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
4073         (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
4075 2012-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4077         * subr.el (function-get): Refine `autoload' arg so it can also
4078         autoload functions for gv.el (bug#12191).
4079         * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
4080         autoloads macros.
4082         * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
4083         Prefer pcase-let over destructuring-bind.
4084         * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
4085         Also, remove whitespace as we go, rather than after accumulating the
4086         various places.
4088         * subr.el (internal--before-with-selected-window)
4089         (internal--after-with-selected-window): Fix typo seleted->selected.
4090         (with-selected-window): Adjust callers.
4091         Reported by Dmitry Gutov <dgutov@yandex.ru>.
4093 2012-08-13  Bastien Guerry  <bzg@gnu.org>
4095         * window.el (special-display-popup-frame): Minor docstring
4096         enhancement.  (Bug#12172)
4098 2012-08-13  Andreas Schwab  <schwab@linux-m68k.org>
4100         * tar-mode.el (tar-header-data-end): Only ignore size for files of
4101         type 1-6.
4102         (tar-header-block-summarize, tar-get-descriptor): Handle pax
4103         extended headers.
4105         * files.el (hack-local-variables-filter): Remove useless eval.
4107 2012-08-13  Martin Rudalics  <rudalics@gmx.at>
4109         * subr.el (with-selected-window): Fix last change.
4111 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4113         * subr.el (internal--before-with-seleted-window)
4114         (internal--after-with-seleted-window): New functions.
4115         (with-selected-window): Use them, to replace dependency on
4116         tty-top-frame.
4118 2012-08-12  Nobuyoshi Nakada  <nobu@ruby-lang.org>
4120         * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
4121         binding for `newline'.
4122         (ruby-move-to-block): When moving backward, stop at block opening,
4123         not indentation.
4124         * progmodes/ruby-mode.el (ruby-brace-to-do-end)
4125         (ruby-do-end-to-brace, ruby-toggle-block): New functions.
4126         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4127         `ruby-toggle-block'.
4129 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4131         * ibuffer.el (ibuffer-do-toggle-read-only):
4132         * dired.el (dired-toggle-read-only):
4133         * buff-menu.el (Buffer-menu-toggle-read-only):
4134         * bindings.el (mode-line-toggle-read-only):
4135         * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
4137 2012-08-12  Andreas Schwab  <schwab@linux-m68k.org>
4139         * descr-text.el (describe-char): Put the overlays over the
4140         "displayed as" character.
4142 2012-08-12  Jay Belanger  <jay.p.belanger@gmail.com>
4144         * calc/calc-units.el (math-default-units-table): Give an
4145         initial value.
4146         (math-put-default-units): Add options to put composite units and
4147         unit systems in the default units table.
4148         (calc-convert-units): Send composite units to
4149         `math-put-default-units' when appropriate.
4151 2012-08-11  Glenn Morris  <rgm@gnu.org>
4153         * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
4155         * tutorial.el (help-with-tutorial):
4156         * emacs-lisp/copyright.el (copyright-update-directory):
4157         * emacs-lisp/autoload.el (autoload-find-generated-file)
4158         (autoload-find-file): Disable local eval: (for insurance).
4160         * files.el (hack-local-variables-filter): If an eval: form is not
4161         known to be safe, and enable-local-variables is :safe, then ignore
4162         the form totally, as is done for non-eval forms.  (Bug#12155)
4163         This is CVE-2012-3479.
4165 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4167         * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
4168         (rx-form): Simplify.
4170 2012-08-09  Dmitry Gutov  <dgutov@yandex.ru>
4172         * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
4173         ?, _, and : are symbol constituents, ! is not (but kinda should be).
4174         (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
4175         (ruby-syntax-propertize-function): Adjust for changes in
4176         `ruby-syntax-propertize-heredoc'.
4178 2012-08-09 Nobuyoshi Nakada  <nobu@ruby-lang.org>
4180         * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
4181         binding (use `M-;' instead).
4182         (ruby-singleton-class-p): New function.
4183         (ruby-expr-beg, ruby-in-here-doc-p) Use it.
4185 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4187         * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
4189 2012-08-10  Chong Yidong  <cyd@gnu.org>
4191         * progmodes/python.el (python-shell-get-process-name): Don't mess
4192         with same-window-buffer-names.
4194         * eshell/eshell.el (eshell-add-to-window-buffer-names)
4195         (eshell-remove-from-window-buffer-names): Make obsolete.
4196         (eshell-buffer-name, eshell-unload-hook): Don't use them.
4197         (eshell): Just use pop-to-buffer-same-window instead.
4199 2012-08-10  Chong Yidong  <cyd@gnu.org>
4201         * bindings.el: Bind M-= back to count-words-region.
4203         * simple.el (count-words-region): Accept a prefix arg for acting
4204         on the entire buffer.
4205         (count-words--buffer-message): New helper function.
4207 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4209         * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
4210         * subr.el (eventp): `nil' is not an event, and eventp is not hot.
4211         (event-start, event-end): Use posn-at-point to return a more
4212         informative posn.
4213         (posnp): New function.
4214         * mouse.el (popup-menu-normalize-position): Use it.
4216 2012-08-10  Masatake YAMATO  <yamato@redhat.com>
4218         * mouse.el (popup-menu-normalize-position): New function.
4219         (popup-menu): Use `popup-menu-normalize-position' to normalize
4220         the form for POSITION argument.
4222         * term/x-win.el (x-menu-bar-open):
4223         Use the value returend from (posn-at-point) as position
4224         passed to `popup-menu'.
4226 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
4228         * calc/calccomp.el (math-compose-expr): Add extra argument
4229         indicating that parentheses should be put around products in
4230         denominators.  Give multiplication precedence over division during
4231         composition.
4233 2012-08-09  Chong Yidong  <cyd@gnu.org>
4235         * man.el (Man-switches, Man-sed-command, Man-awk-command)
4236         (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
4237         (Man-untabify-command, manual-program): Convert to defcustom
4238         (Bug#10429).
4240         * vc/add-log.el (change-log-mode): Bind comment-start to nil.
4242         * descr-text.el (describe-char): Don't insert extra newlines
4243         (Bug#10127).
4245         * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
4246         (log-view-diff-changeset, log-view-minor-wrap): Likewise.
4248         * align.el (align-region): Delete temporary markers (Bug#10047).
4249         Plus some code cleanups.
4251 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
4253         * progmodes/python.el (python-pdbtrack-tracked-buffer)
4254         (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
4255         (python-shell-internal-last-output): Use make-local-variable
4256         instead of make-variable-buffer-local.
4258 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
4260         * progmodes/python.el: Enhancements to forward-sexp.
4261         (python-nav-forward-sexp): Rename from
4262         python-nav-forward-sexp-function.
4263         (python-nav--forward-sexp, python-nav--backward-sexp):
4264         New functions.
4266 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
4268         * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
4269         modes and simplification modes.
4271 2012-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4273         * delsel.el (delete-selection-pre-hook): Don't propagate the
4274         file-supersession signals (bug#12161).
4276 2012-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4278         * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
4279         (cl-map-extents): Add compatibility aliases (bug#12135).
4281 2012-08-08  Michael Albinus  <michael.albinus@gmx.de>
4283         * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
4284         tests by `ignore-error'.
4285         (tramp-find-shell): Open also a new shell, when cache is already
4286         set.  Reported by Carsten Bormann <cabo@tzi.org>.  (Bug#12148)
4288 2012-08-08  Juri Linkov  <juri@jurta.org>
4290         * bookmark.el: Add `defaults' property to the bookmark record.
4291         (bookmark-current-buffer): Doc fix.
4292         (bookmark-make-record): Add `defaults' property with default values
4293         to the bookmark record.
4294         (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
4295         with `bookmark-insert-current-bookmark'.
4296         (bookmark-set): Get `defaults' property from the bookmark record
4297         and use it in `read-from-minibuffer'.
4298         (bookmark-insert-current-bookmark): Remove function.
4300         * info.el (Info-bookmark-make-record): Add `defaults' property
4301         with values of canonical Info node name, the current Info file
4302         name and the current Info node name.  (Bug#12107)
4304 2012-08-08  Juri Linkov  <juri@jurta.org>
4306         * files.el (basic-save-buffer): Use `buffer-name' as the default
4307         of `read-file-name' when buffer is not visiting a file (bug#12128).
4309 2012-08-08  Juri Linkov  <juri@jurta.org>
4311         * info.el (Info-isearch-search): Doc fix.
4312         (Info-search): Change search-failed message from "initial node" to
4313         "end of node" (bug#12078).
4314         (Info-isearch-search): Change `isearch-string-state' to
4315         `isearch--state-string'.
4317 2012-08-08  Glenn Morris  <rgm@gnu.org>
4319         * language/persian.el: Remove file.
4320         * language/misc-lang.el: Move unique part of persian.el here.
4321         * loadup.el: Remove language/persian.
4323 2012-08-08  Óscar Fuentes  <ofv@wanadoo.es>
4325         * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
4327 2012-08-08  Fabián Ezequiel Gallina  <fgallina@cuca>
4329         * progmodes/python.el: Fix defsubst warning.
4330         (python-syntax-context) Rename from python-info-ppss-context.
4331         (python-syntax-context-type): Rename from
4332         python-info-ppss-context-type.
4333         (python-syntax-comment-or-string-p): Rename from
4334         python-info-ppss-comment-or-string-p.
4336 2012-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
4338         * calc/calc-misc.el (calc-record-why): Don't record a message twice.
4340 2012-08-07  Andreas Schwab  <schwab@linux-m68k.org>
4342         * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
4343         a defcustom that is quoted with backquote.
4345         * calc/calc-prog.el (math-do-defmath): Use backquote forms.
4346         Fix handling of interactive spec when the body uses return.
4347         (math-do-arg-check, math-define-function-body): Use backquote forms.
4348         * calc/calc-ext.el (math-defcache): Likewise.
4349         * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
4350         * allout.el (allout-new-exposure): Likewise.
4351         * calc/calcalg2.el (math-tracing-integral): Likewise.
4352         * info.el (Info-last-menu-item): Likewise.
4353         * emulation/vip.el (vip-loop): Likewise.
4354         * textmodes/artist.el (artist-funcall): Likewise.
4355         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
4356         Construct menu-item directly.
4358         * progmodes/autoconf.el (font-lock-syntactic-keywords):
4359         Don't declare.
4361 2012-08-07  Chong Yidong  <cyd@gnu.org>
4363         * simple.el (deactivate-mark): Preserve text properties when
4364         saving the primary selection (Bug#8384).
4366 2012-08-07  Kevin Ryde  <user42@zip.com.au>
4368         * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
4369         (woman-parse-numeric-value): On a bad .IP line, issue a warning
4370         and continue processing (Bug#12110).
4372 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4374         * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
4375         syntax-propertize-function (bug#10095).
4377 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4379         * help-fns.el (help-fns--key-bindings, help-fns--signature)
4380         (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
4381         describe-function-1.
4382         (describe-function-1): Use them.  Move compiler macro after sig.
4383         (help-fns--compiler-macro): Use function-get.  Assume we're already in
4384         standard-output.  Adjust layout to new call order.
4386         * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
4387         re-binding a symbol that has a symbol-macro (bug#12119).
4389 2012-08-06  Mohsen BANAN  <libre@mohsen.1.banan.byname.net>
4391         * language/persian.el: New file.  (Bug#11812)
4392         * loadup.el: Add language/persian.el.
4394 2012-08-06  Chong Yidong  <cyd@gnu.org>
4396         * window.el (window--maybe-raise-frame): New function.
4397         (window--display-buffer): Split off from here.
4398         (display-buffer-reuse-window, display-buffer-pop-up-frame)
4399         (display-buffer-pop-up-window, display-buffer-use-some-window):
4400         Obey an inhibit-switch-frame action alist entry.
4401         (display-buffer): Update doc.
4403         * replace.el (occur-after-change-function): Avoid losing focus by
4404         using the inhibit-switch-frame display parameter (Bug#12139).
4406 2012-08-06  Fabián Ezequiel Gallina  <fgallina@cuca>
4408         Make internal shell process buffer names start with space.
4409         * progmodes/python.el (python-shell-make-comint): Add optional
4410         argument INTERNAL.
4411         (run-python-internal): Use it.
4412         (python-shell-internal-get-or-create-process): Check for new
4413         internal buffer names.
4415 2012-08-06  Glenn Morris  <rgm@gnu.org>
4417         * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
4418         Do less getting and setting of environment variables.
4420 2012-08-05  Chong Yidong  <cyd@gnu.org>
4422         * proced.el (proced): Add substitution string to docstring to
4423         trigger autoloading of the proced library on C-h f (Bug#1768).
4425         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4426         Don't show defvars which have no second argument (Bug#8638).
4428         * imenu.el (imenu-generic-expression): Move documentation here
4429         from imenu--generic-function.
4430         (imenu--generic-function): Refer to imenu-generic-expression.
4432 2012-08-05  Vegard Øye  <vegard_oye@hotmail.com>  (tiny change)
4434         * emulation/viper-init.el (viper-deflocalvar): Add docstring and
4435         indentation declaration.
4436         (viper-loop): Add indentation declaration (Bug#7025).
4438 2012-08-05  Chong Yidong  <cyd@gnu.org>
4440         * help-fns.el (describe-variable): Add hyperlink for
4441         directory-local variables files.  Improve buffer-local and
4442         permanent-local reporting; suggested by MON KEY (Bug#6644).
4444         * help-mode.el (help-dir-local-var-def): New button type.
4446         * files.el (kill-buffer-hook): Provide a defvar.
4448 2012-08-05  Glenn Morris  <rgm@gnu.org>
4450         * eshell/esh-ext.el (eshell/addpath):
4451         Also update eshell-path-env.  (Bug#12013)
4453 2012-08-05  Chong Yidong  <cyd@gnu.org>
4455         * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
4457         * fringe.el (fringe-styles): Add docstring.
4458         (fringe--check-mode): New function.
4459         (set-fringe-mode, set-fringe-style): Use it.
4460         (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
4462         * files.el (set-auto-mode): Fix invalid setq call.
4464 2012-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
4466         * isearch.el: Misc simplification; use defstruct.
4467         (isearch-mode-map): Dense maps now work like sparse ones.
4468         (isearch--state): New defstruct.
4469         (isearch-string-state, isearch-message-state, isearch-point-state)
4470         (isearch-success-state, isearch-forward-state)
4471         (isearch-other-end-state, isearch-word-state, isearch-error-state)
4472         (isearch-wrapped-state, isearch-barrier-state)
4473         (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
4474         replaced by defstruct's accessors.
4475         (isearch--set-state): Rename from isearch-top-state and change
4476         calling convention.
4477         (isearch-push-state): Use new isearch--get-state.
4478         (isearch-toggle-word): Disable regexp when enabling word.
4479         (isearch-message-prefix): Remove unused arg _c-q-hack.
4480         (isearch-message-suffix): Remove unused arg _ellipsis.
4482 2012-08-04  Andreas Schwab  <schwab@linux-m68k.org>
4484         * simple.el (list-processes--refresh): For a server use :host or
4485         :local as the address.
4486         (list-processes): Doc fix.
4488 2012-08-04  Michal Nazarewicz  <mina86@mina86.com>
4490         * lisp/mpc.el: Support password in host argument.
4491         (mpc--proc-connect): Parse and use new password element.
4492         Set mpc-proc variable instead of returning process.
4493         (mpc-proc): Adjust accordingly.
4495 2012-08-03  Eli Zaretskii  <eliz@gnu.org>
4497         * whitespace.el (whitespace-display-mappings): Use Unicode
4498         codepoints, instead of emacs-mule codepoints.  See
4499         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
4500         for the details.
4502         * files.el (file-truename): Don't skip symlink-chasing part on
4503         windows-nt.  Incorporate the resolution of 8+3 short aliases on
4504         Windows into the loop that recursively chases symlinks.
4505         Compare directory and its parent case-insensitively on MS-Windows and
4506         MS-DOS.
4508 2012-08-03  Chong Yidong  <cyd@gnu.org>
4510         * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
4512         * sort.el (sort-regexp-fields): Doc fix.
4514 2012-08-03  Tassilo Horn  <tsdh@gnu.org>
4516         * textmodes/reftex.el (reftex-compile-variables): Make keyvals
4517         labels regex position point at the expected place.
4519 2012-08-03  MON KEY  <monkey@sandpframing.com>
4521         * net/imap.el (imap-interactive-login, imap-authenticate)
4522         (imap-mailbox-lsub, imap-mailbox-list)
4523         (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
4524         (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
4525         (imap-parse-response): Doc fix.
4527 2012-08-03  João Távora  <joaotavora@gmail.com>
4529         * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
4530         if sexp scanning does not move point (Bug#5734).
4532 2012-08-02  Tassilo Horn  <tsdh@gnu.org>
4534         * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
4535         Add listings, minted, and ctable packages.
4536         (reftex-label-alist-builtin): Move listings, minted, and ctable
4537         entries before LaTeX.
4538         (reftex-label-alist): Docfix.
4540 2012-08-02  Bastien Guerry  <bzg@gnu.org>
4542         * replace.el (occur): Fix docstring (bug#12122).
4544 2012-08-02  Glenn Morris  <rgm@gnu.org>
4546         * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
4548 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
4550         Obsolete alias inactivate-current-input-method-function (Bug#10150).
4551         * international/mule-cmds.el: Create
4552         inactivate-current-input-method-function as an obsolete alias for
4553         deactivate-current-input-method-function.  See Katsumi Yamaoka in
4554         <http://bugs.gnu.org/10150#46>.
4556 2012-08-01  Jay Belanger  <jay.p.belanger@gmail.com>
4558         * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
4559         of nested `if's.
4561 2012-08-01  Glenn Morris  <rgm@gnu.org>
4563         * progmodes/autoconf.el (autoconf-definition-regexp):
4564         Add AH_TEMPLATE, adjust submatch numbering.
4565         (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
4566         (autoconf-current-defun-function): Update for above change.
4567         (autoconf-current-defun-function): First skip to end of current word.
4569 2012-08-01  Rupert Swarbrick  <rswarbrick@gmail.com>  (tiny change)
4571         * calendar/cal-html.el (cal-html-insert-agenda-days):
4572         Fix typo.  (Bug#12018)
4574 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
4576         Shell processes: enhancements to startup and CEDET compatibility.
4577         * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
4578         (python-shell-make-comint): accept-process-output at startup.
4579         (run-python-internal): Set inferior-python-mode-hook to nil.
4580         (python-shell-internal-get-or-create-process): call sit-for.
4581         (python-preoutput-result): Add obsolete alias.
4582         (python-shell-internal-send-string): Use it.
4583         (python-shell-send-setup-code): Remove call to
4584         accept-process-output.
4586 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
4588         * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
4589         (Bug#12108)
4591 2012-07-31  Jay Belanger  <jay.p.belanger@gmail.com>
4593         * calc-mode.el (calc-basic-simplification-mode): Rename from
4594         `calc-limited-simplification-mode'.
4595         (calc-alg-simplification-mode): New function.
4596         (calc-set-simplify-mode): Adjust message.
4598         * calc.el (calc-set-mode-line): Adjust mode line display for
4599         basic simplification mode.
4601         * calc-help.el (calc-m-prefix-help): Update help message.
4603         * calc-ext.el (calc-init-extensions): Add bindings and autoloads
4604         for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
4606 2012-07-31  Bastien Guerry  <bzg@gnu.org>
4608         * man.el (man): Fix comment.  (bug#12101)
4610 2012-07-31  Martin Rudalics  <rudalics@gmx.at>
4612         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4613         Don't return a non-nil value when no suitable buffer was found.
4615 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
4617         * progmodes/python.el (run-python-internal): Disable font lock for
4618         internal shells.
4620 2012-07-30  Stefan Merten  <smerten@oekonux.de>
4622         * textmodes/rst.el: Silence `checkdoc-ispell'.
4623         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
4624         (rst-official-version, rst-official-cvs-rev)
4625         (rst-package-emacs-version-alist): Update to upstream V1.3.1.
4626         (rst-mode-map): New key binding.
4628 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
4630         Update .PHONY listings in makefiles.
4631         * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4632         autoloads, update-subdirs, updates, bzr-update, update-authors,
4633         compile-onefile, compile-calc, backup-compiled-files,
4634         compile-after-backup, compile-one-process, mh-autoloads,
4635         bootstrap-clean, distclean, maintainer-clean.
4637 2012-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
4639         * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4640         (calc-set-mode-line): Don't display "AlgSimp ".
4642         * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4643         (calc-lim-simplify-mode): New function.
4644         (calc-set-simplify-mode): Default to 'alg.
4645         (calc-default-simplify-mode): Make algebraic simplifications
4646         the default.
4648         * calc/calc-ext.el (calc-init-extensions): Remove binding for
4649         `calc-alg-simplify-mode'.  Add binding for `calc-lim-simplify-mode'.
4651         * calc/calc-help.el (calc-m-prefix-help): Change messages to
4652         indicate new simplification modes.
4654         * calc/README: Mention new default simplification mode.
4656         * calc/calc.el (math-normalize-error): New variable.
4657         (math-normalize): Set `math-normalize-error' to t
4658         when there's an error.
4660         * calc/calc-alg.el (math-simplify): Don't simplify when
4661         `math-normalize' returns an error.
4663 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
4665         * international/mule-cmds.el (set-locale-environment): Revert last
4666         change, since display-graphic-p returns nil when this function is
4667         called during startup.  Instead...
4669         * term/w32console.el (terminal-init-w32console): ...setup the
4670         keyboard and terminal encoding for TTY sessions here.  (Bug#12082)
4672 2012-07-29  Juri Linkov  <juri@jurta.org>
4674         * simple.el (goto-line): Don't display default line number in the
4675         prompt because it should be displayed by `read-number' (bug#9952).
4676         Add the current line number to the defaults of `goto-line' to
4677         allow its easier modification by users with `M-n' (bug#9201).
4679         * subr.el (read-number): Support multiple default values like in
4680         other minibuffer reading functions.  Replace `read' with
4681         `string-to-number' for consistency with `number-to-string'.
4683 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
4685         deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4686         * emulation/viper-init.el (viper-deactivate-input-method-action):
4687         Rename from viper-inactivate-input-method-action.
4688         (viper-deactivate-input-method):
4689         Rename from viper-inactivate-input-method.
4690         * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4691         * international/mule-cmds.el (deactivate-input-method):
4692         Rename from inactivate-input-method.
4693         Also run input-method-deactivate-hook.
4694         (deactivate-current-input-method-function):
4695         Rename from inactivate-current-input-method-function.
4696         (input-method-deactivate-hook): New hook.
4697         (input-method-inactivate-hook): Mark obsolete.
4698         (inactivate-input-method): Mark obsolete.
4700         * international/quail.el (quail-activate):
4701         Also run quail-deactivate-hook.
4702         (quail-deactivate): Rename from quail-inactivate.
4703         * international/robin.el (robin-activate):
4704         Also run robin-deactivate-hook.
4705         (robin-deactivate): Rename from robin-inactivate.
4707 2012-07-29  Chong Yidong  <cyd@gnu.org>
4709         * simple.el (indicate-copied-region): New function.
4710         (kill-ring-save): Split off from here.
4712         * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4713         (kill-rectangle): Set deactivate-mark to t on read-only error.
4715         * register.el (copy-to-register, copy-rectangle-to-register):
4716         Deactivate the mark, and use indicate-copied-region (Bug#10056).
4717         (append-to-register, prepend-to-register): Call indicate-copied-region.
4719 2012-07-29  Juri Linkov  <juri@jurta.org>
4721         * simple.el (async-shell-command-buffer): New defcustom.
4722         (shell-command): Use it.  (Bug#4719)
4724 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
4726         * international/mule-cmds.el (set-locale-environment): In a
4727         console session on MS-Windows, set up keyboard and terminal
4728         encoding from the OEM codepage, not the ANSI codepage.
4729         (Bug#12055)
4731 2012-07-28  Chong Yidong  <cyd@gnu.org>
4733         * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4734         gdb-get-location.
4736 2012-07-28  Leo Liu  <sdl.web@gmail.com>
4738         * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4739         the alist (bug#12029).
4741 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
4743         * makefile.w32-in (custom-deps, finder-data, updates, compile)
4744         (compile-always, compile-first)
4745         ($(lisp)/calendar/cal-loaddefs.el)
4746         ($(lisp)/calendar/diary-loaddefs.el)
4747         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4748         ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4749         ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4750         instead of on update-subdirs.
4751         (bootstrap-clean): Delete $(lisp)/subdirs.el.
4753 2012-07-28  Chong Yidong  <cyd@gnu.org>
4755         * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4756         directory if vc-deduce-backend returns nil (Bug#7350).
4758         * simple.el (delete-trailing-lines): New option.
4759         (delete-trailing-whitespace): Obey it (Bug#11879).
4761 2012-07-28  David Engster  <deng@randomsample.de>
4763         * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4764         Explanation of new 'symbol-qnames feature in doc-strings.
4765         (xml-maybe-do-ns): Return expanded names as plain symbols if
4766         'symbol-qnames was provided in XML-NS argument (Bug#11916).
4767         (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
4769 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
4771         Consistent completion in inferior python with emacs -nw.
4772         * progmodes/python.el (inferior-python-mode): replace "<tab>"
4773         binding in inferior-python-mode-map with "\t".
4774         (python-shell-completion-complete-at-point)
4775         (python-completion-complete-at-point): Remove interactive spec.
4777 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
4779         * calc/calccomp.el (math-compose-expr): Undo previous change.
4781 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
4783         * progmodes/python.el (python-mode-map): Add keybinding for
4784         run-python.
4785         (python-shell-make-comint): Fix pop-to-buffer call.
4786         (run-python): Autoload.  New arg SHOW.
4787         (python-shell-get-or-create-process): Do not pop python process
4788         buffer.
4790 2012-07-27  Michael Albinus  <michael.albinus@gmx.de>
4792         * notifications.el (notifications-on-action-signal)
4793         (notifications-on-closed-signal): Use also the bus address for the map.
4794         (notifications-notify, notifications-close-notification)
4795         (notifications-get-capabilities): Add optional argument BUS.
4797 2012-07-27  Tassilo Horn  <tsdh@gnu.org>
4799         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4800         Add support for the lstlisting and minted environments, and for the
4801         ctable macro.
4802         * textmodes/reftex.el (reftex-compile-variables): Also recognize
4803         labels written in keyvals syntax.
4805 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
4807         * calc/calccomp.el (math-compose-expr): Use parentheses when
4808         there is a product in the denominator of a fraction.
4810 2012-07-26  Eli Zaretskii  <eliz@gnu.org>
4812         * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4813         ($(lisp)/calendar/diary-loaddefs.el)
4814         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4815         ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
4816         Fixes failures in parallel bootstrap because subdirs.el is being
4817         rewritten while the autoload files are built at the same time,
4818         which needs to load subdirs.el.
4820 2012-07-26  Martin Rudalics  <rudalics@gmx.at>
4822         * mouse.el (popup-menu): Fix doc-string and re-indent code.
4823         (mouse-drag-line): Don't exit tracking when a switch-frame or
4824         switch-window event occurs (Bug#12006).
4826 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4828         * mouse.el (popup-menu): Fix last change.
4830 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4832         Autoload from Lisp with more care.  Follow aliases when looking for
4833         function properties.
4834         * subr.el (autoloadp): New function.
4835         (symbol-file): Use it.
4836         (function-get): New function.
4837         * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
4838         autoload-do-load.
4839         * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
4840         (lisp-indent-function):
4841         * emacs-lisp/gv.el (gv-get):
4842         * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
4843         * emacs-lisp/byte-opt.el (byte-optimize-form):
4844         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4845         * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
4846         Use function-get.
4847         * emacs-lisp/cl.el: Don't propagate function properties any more.
4849         * speedbar.el (speedbar-add-localized-speedbar-support):
4850         * emacs-lisp/disass.el (disassemble-internal):
4851         * desktop.el (desktop-load-file):
4852         * help-fns.el (help-function-arglist, find-lisp-object-file-name)
4853         (describe-function-1):
4854         * emacs-lisp/find-func.el (find-function-noselect):
4855         * emacs-lisp/elp.el (elp-instrument-function):
4856         * emacs-lisp/advice.el (ad-has-proper-definition):
4857         * apropos.el (apropos-safe-documentation, apropos-macrop):
4858         * emacs-lisp/debug.el (debug-on-entry):
4859         * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
4860         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4861         * calc/calc.el (name): Use autoloadp & autoload-do-load.
4863 2012-07-25  Alp Aker  <alp.tekin.aker@gmail.com>
4865         * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
4866         function, not an obsolete variable (Bug#12046).
4868 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
4870         * faces.el (face-spec-reset-face): Fix last change.  (Bug#12042)
4872 2012-07-25  Christopher Schmidt  <christopher@ch.ristopher.com>
4874         * emacs-lisp/pp.el (pp-display-expression): Select old selected
4875         window only if it is still live (Bug#12034).
4877 2012-07-25  Martin Rudalics  <rudalics@gmx.at>
4879         * subr.el (redirect-frame-focus): Add advertised calling
4880         convention (Bug#12030).
4882 2012-07-25  Paul Eggert  <eggert@cs.ucla.edu>
4884         Prefer typical American spelling for "acknowledgment".
4885         * vc/add-log.el (change-log-acknowledgment): Rename from
4886         change-log-acknowledgement, with an alias for the old name.
4888 2012-07-25  Jay Belanger  <jay.p.belanger@gmail.com>
4890         * calc-alg.el (math-simplify-divide): Don't cross multiply
4891         in an equation when the lhs is a variable.
4893 2012-07-24  Julien Danjou  <julien@danjou.info>
4895         * net/netrc.el (netrc-find-service-number, netrc-store-data):
4896         Remove, unused.
4898 2012-07-23  Eli Zaretskii  <eliz@gnu.org>
4900         * startup.el (command-line): Don't display an empty user name in
4901         the error message about non-existent home directory, when
4902         init-file-user was set to an empty string.  See
4903         http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
4904         for the details and context.
4906 2012-07-22  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4908         * ses.el (ses-cell-formula-aset): New macro.
4909         (ses-cell-references-aset): New macro.
4910         (ses-cell-p): New function.
4911         (ses-rename-cell): Do no longer rely on complex operations like
4912         ses-cell-set-formula or ses-set-cell to change the cell and handle
4913         the undo at the same time, but rather use lower level new macros
4914         `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
4915         the undo directly.  Refresh the mode line.
4917 2012-07-21  Leo Liu  <sdl.web@gmail.com>
4919         * progmodes/cc-cmds.el (c-defun-name):
4920         Use match-string-no-properties instead for consistency.
4922 2012-07-20  Leo Liu  <sdl.web@gmail.com>
4924         * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
4925         (Bug#7879)
4927         * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
4929 2012-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4931         * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
4932         * progmodes/bug-reference.el, misearch.el: Provide themselves
4933         (bug#11915).
4935         * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
4936         of narrowed buffer (bug#11966).
4938 2012-07-20  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4940         * ses.el (ses-rename-cell): Set new name also in reference list of
4941         cells of which the renamed cell depends.
4943 2012-07-20  Masatake YAMATO  <yamato@redhat.com>
4945         * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
4946         to check whether menu-bar is shown or not.  If not shown,
4947         show the menu-bar as a popup menu instead of using tmm.
4948         * mouse.el (popup-menu): Accept `point' as `position' argument.
4950 2012-07-20  Dmitry Gutov  <dgutov@yandex.ru>
4952         * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
4953         up inside string symbol literal (bug#11923).
4955 2012-07-20  Eli Zaretskii  <eliz@gnu.org>
4957         * startup.el (fancy-startup-text): Read the whole tutorial, not
4958         just its first 256 bytes.  Prevents gibberish in display of the
4959         tutorial title.
4961 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
4963         Drop idle buffer compaction due to an absence of the
4964         proved efficiency.
4965         * compact.el: Remove.
4967 2012-07-19  Sam Steingold  <sds@gnu.org>
4969         * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
4970         vc-bzr-pull & vc-bzr-merge-branch.
4971         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
4972         (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
4973         for consistency with compilation-error-regexp-alist.
4974         * vc/vc-git.el (vc-git-error-regexp-alist): Add.
4975         (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
4976         * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
4977         (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
4979 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4981         * emacs-lisp/chart.el: Use lexical-binding.
4982         (chart-emacs-storage): Don't hardcode the list of entries.
4984 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
4986         Next round of tweaks caused by Fgarbage_collect changes.
4987         * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
4989 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
4991         Compact buffers when idle.
4992         * compact.el: New file.
4994 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4996         * subr.el (eventp): Presume that if it looks vaguely like an event,
4997         it's an event (bug#10190).
4999 2012-07-19  Fabián Ezequiel Gallina  <fgallina@cuca>
5001         Enhancements to ppss related code (thanks Stefan).
5002         * progmodes/python.el (python-indent-context)
5003         (python-indent-calculate-indentation, python-indent-dedent-line)
5004         (python-indent-electric-colon, python-nav-forward-block)
5005         (python-mode-abbrev-table)
5006         (python-info-assignment-continuation-line-p): Simplify checks
5007         for ppss context.
5008         (python-info-continuation-line-p): Cleanup.
5009         (python-info-ppss-context): Do not catch 'quote.
5010         (python-info-ppss-context-type)
5011         (python-info-ppss-comment-or-string-p): Simplify.
5013 2012-07-18  Fabián Ezequiel Gallina  <fgallina@cuca>
5015         * progmodes/python.el: Enhancements to eldoc support.
5016         (python-info-current-symbol): New function.
5017         (python-eldoc-at-point): Use python-info-current-symbol.
5018         (python-info-current-defun): Fix cornercase on first defun scan.
5019         (python-eldoc--get-doc-at-point): Use python-info-current-symbol
5020         and signal error when no inferior python process is available.
5022 2012-07-18  Dmitry Gutov  <dgutov@yandex.ru>
5024         * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
5025         assume it's always t.
5026         (vc-git-registered): Remove caching, the function is only called
5027         once.
5028         (vc-git-branches): Use `vc-git--call' instead of `call-process'.
5030 2012-07-18  Chong Yidong  <cyd@gnu.org>
5032         * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
5034         * simple.el (count-words): Report on narrowing (Bug#9959).
5036         * bindings.el: Bind M-= to count-words.
5038         * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
5040 2012-07-18  Masatake YAMATO  <yamato@redhat.com>
5042         * progmodes/sh-script.el (sh-imenu-generic-expression):
5043         Capture a function with `function' keyword and without parentheses
5044         like "function FOO" (bug#11856).
5046 2012-07-18  Tassilo Horn  <tassilo@member.fsf.org>
5048         * window.el (split-window-sensibly): Make WINDOW argument
5049         optional.
5051 2012-07-18  Chong Yidong  <cyd@gnu.org>
5053         * subr.el (keyboard-translate): Doc fix (Bug#7261).
5055         * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
5056         and make C-x 8 RET exit isearch (Bug#11439).
5058         * international/iso-transl.el: Move isearch-mode-map key
5059         definitions to isearch.el.
5061 2012-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5063         * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
5064         (eieio-defclass): Use gv-define-setter when possible.
5066 2012-07-18  Dmitry Antipov  <dmantipov@yandex.ru>
5068         Reflect recent changes in Fgarbage_collect.
5069         * emacs-lisp/chart.el (chart-emacs-storage): Change to
5070         reflect new format of data returned by Fgarbage_collect.
5072 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
5074         New utility functions + python-info-ppss-context fix (Bug#11910).
5075         * progmodes/python.el (python-info-beginning-of-block-statement-p)
5076         (python-info-ppss-comment-or-string-p): New functions.
5077         (python-info-ppss-context): Small fix for string check.
5079 2012-07-17  Juri Linkov  <juri@jurta.org>
5081         * dired-aux.el (dired-do-async-shell-command): Doc fix.
5082         (dired-do-async-shell-command): Don't add `*' at the end of the
5083         command (Bug#11815).
5084         (dired-do-shell-command): Doc fix.
5085         (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
5086         Join the individual commands using either "&" or ";" as the
5087         separator depending on the values of these trailing characters.
5088         At the end re-add the trailing "&".  (Bug#10598)
5090         * simple.el (async-shell-command): Sync the interactive spec with
5091         `shell-command'.  Doc fix.
5092         (shell-command): Doc fix.
5094 2012-07-17  Juri Linkov  <juri@jurta.org>
5096         * descr-text.el (describe-char): Fix format args.  (Bug#10129)
5098 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
5100         Final renames and doc fixes for movement commands (bug#11899).
5101         * progmodes/python.el (python-nav-beginning-of-statement):
5102         Rename from python-nav-statement-start.
5103         (python-nav-end-of-statement): Rename from
5104         python-nav-statement-end.
5105         (python-nav-beginning-of-block): Rename from
5106         python-nav-block-start.
5107         (python-nav-end-of-block): Rename from python-nav-block-end.
5109 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
5111         * progmodes/python.el (python-shell-send-string-no-output):
5112         Allow accept-process-output to quit, keeping shell process ready for
5113         future interactions (Bug#11868).
5115 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5117         * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
5119         * emacs-lisp/elint.el (elint-find-args-in-code):
5120         Use help-function-arglist, so as to handle lexical byte-code.
5122         * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
5123         change (bug#11826).
5125 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5127         * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
5128         Avoid spuriously marking the buffer as modified because of c-is-sws.
5130         * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
5131         as not-a-comment (bug#11946).
5133         * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
5134         for uninterned vars.
5136         * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
5137         Use read-event since we don't really want to read chars but bytes.
5139         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
5140         $$..$$ but also $..$ using regexps (bug#11953).
5141         Use tex-verbatim for \url and \path.
5142         (tex-font-lock-keywords): Define as defconst like the others.
5143         (tex-common-initialization): Don't use font-lock-syntax-table any more.
5145 2012-07-16  René Kyllingstad  <Rene@Kyllingstad.com>  (tiny change)
5147         * international/mule-cmds.el (ucs-insert): Make it an obsolete
5148         alias for insert-char.
5150 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
5152         * progmodes/python.el: Simplified imenu implementation.
5153         (python-nav-jump-to-defun): Remove command.
5154         (python-mode-map): Use `imenu' instead.
5155         (python-nav-list-defun-positions-cache)
5156         (python-imenu-include-defun-type, python-imenu-make-tree)
5157         (python-imenu-subtree-root-label, python-imenu-index-alist):
5158         Remove vars.
5159         (python-nav-list-defun-positions, python-nav-read-defun)
5160         (python-imenu-tree-assoc, python-imenu-make-element-tree)
5161         (python-imenu-make-tree, python-imenu-create-index):
5162         Remove functions.
5163         (python-mode): Update to interact with imenu by setting
5164         `imenu-extract-index-name-function' only.
5166 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
5168         * progmodes/python.el: Enhancements to navigation commands.
5169         (python-nav-backward-sentence)
5170         (python-nav-forward-sentence): Remove.
5171         (python-nav-backward-statement, python-nav-forward-statement)
5172         (python-nav-statement-start, python-nav-statement-end)
5173         (python-nav-backward-block, python-nav-forward-block)
5174         (python-nav-block-start, python-nav-block-end)
5175         (python-nav-forward-sexp-function)
5176         (python-info-current-line-comment-p)
5177         (python-info-current-line-empty-p): New functions.
5178         (python-indent-context): Use `python-nav-statement-start'.
5180 2012-07-16  Michael Albinus  <michael.albinus@gmx.de>
5182         * eshell/em-ls.el (eshell/ls): Use `apply'.
5184         * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
5185         multi-hops, instead of Tramp internals.
5187         * vc/ediff.el (ediff-directories): Add trailing space to prompts.
5189         * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
5190         when F1 and F2 are located on different hosts.
5192 2012-07-14  Chong Yidong  <cyd@gnu.org>
5194         * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
5195         (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
5196         (xterm-mouse-translate-extended, xterm-mouse-translate-1)
5197         (xterm-mouse--read-event-sequence-1000)
5198         (xterm-mouse--read-event-sequence-1006): New functions.  For old
5199         mouse protocol, handle M-mouse-X events correctly.
5200         (xterm-mouse-event): New arg specifying mouse protocol.
5201         (turn-on-xterm-mouse-tracking-on-terminal)
5202         (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
5203         sequence to toggle extended coordinates on newer XTerms.
5204         This appears to be harmless on terminals which do not support this.
5206 2012-07-14  Leo Liu  <sdl.web@gmail.com>
5208         Add fringe bitmap indicators for flymake.  (Bug#11253)
5209         * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
5210         (flymake-make-overlay): New arg BITMAP.
5211         (flymake-error-bitmap, flymake-warning-bitmap)
5212         (flymake-fringe-indicator-position): New user variables.
5214         * fringe.el: New bitmap exclamation-mark.
5216 2012-07-14  Jan Djärv  <jan.h.d@swipnet.se>
5218         * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
5219         also (Bug#7879).
5221 2012-07-14  Chong Yidong  <cyd@gnu.org>
5223         * electric.el (electric-pair-post-self-insert-function): Fix pair
5224         insertion in empty-region case (Bug#11520).
5226 2012-07-14  Chong Yidong  <cyd@gnu.org>
5228         * bindings.el: Consolidate ctl-x-r-map bindings.
5229         Bind copy-rectangle-as-kill to C-x r w.
5231         * rect.el, register.el: Move bindings to bindings.el.
5233 2012-07-14  Reuben Thomas  <rrt@sc3d.org>
5235         * rect.el (copy-rectangle-as-kill): New command (Bug#739).
5237 2012-07-13  Andreas Schwab  <schwab@linux-m68k.org>
5239         * emacs-lisp/cl.el (labels): Remove spurious quote.  (Bug#11938)
5241 2012-07-13  Juanma Barranquero  <lekktu@gmail.com>
5243         * bindings.el (top): Use `mapc' instead of `mapcar'.
5245         * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
5247 2012-07-13  Michael Albinus  <michael.albinus@gmx.de>
5249         * progmodes/sql.el (sql-comint): Suppress the check for program on
5250         remote hosts.  Reported by Francis Devereux <francis@devrx.org>.
5251         (Bug#11908)
5253 2012-07-13  Chong Yidong  <cyd@gnu.org>
5255         * bindings.el: Assign a non-nil permanent-local property to
5256         per-buffer variables which lack a default value (Bug#11930).
5258         * help-fns.el (describe-variable): In the "automatically becomes
5259         local" notice, take note of permanent-local variables.
5261 2012-07-13  Chong Yidong  <cyd@gnu.org>
5263         * files.el (toggle-read-only): Doc fix and code cleanup.  New arg
5264         to allow printing the message when called from Lisp.
5266         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5267         Remove toggle-read-only.
5269         * bs.el (bs-toggle-readonly):
5270         * buff-menu.el (Buffer-menu-toggle-read-only):
5271         Remove with-no-warnings around toggle-read-only.
5273         * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
5274         Remove with-no-warnings around toggle-read-only.
5275         (ffap-read-only, ffap-read-only-other-window)
5276         (ffap-read-only-other-frame): Callers changed.
5278         * help-mode.el: Don't require view package.
5279         (help-mode-finish): Set buffer-read-only instead of calling
5280         toggle-read-only.
5282         * bindings.el (mode-line-toggle-read-only):
5283         * dired.el (dired-toggle-read-only):
5284         * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
5285         with non-nil second arg.
5287         * emacs-lisp/eieio-custom.el (eieio-customize-object):
5288         * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
5289         directly.
5291 2012-07-12  Eli Zaretskii  <eliz@gnu.org>
5293         * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
5294         not incf.
5296 2012-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5298         More CL cleanups and reduction of use of cl.el.
5299         * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
5300         * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
5301         * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
5302         * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
5303         * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
5304         * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
5305         * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
5306         * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
5307         * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
5308         * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
5309         * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
5310         * eshell/em-cmpl.el, eshell/em-banner.el:
5311         * calendar/parse-time.el: Use cl-lib.
5312         * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
5313         * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
5314         * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
5315         * term/ns-win.el, term.el, shell.el, ps-samp.el:
5316         * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
5317         * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
5318         * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
5319         * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
5320         * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
5321         * mail/mailheader.el, mail/feedmail.el: Don't use CL.
5322         * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
5323         * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
5324         `lambda' rather than with `quote'.
5325         (eshell-do-opt): Adjust accordingly.
5326         (eshell-process-option): Simplify.
5327         * eshell/esh-var.el:
5328         * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
5329         * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
5330         (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
5331         to `pcase--dontcare'.
5332         * emacs-lisp/cl.el (labels): Mark obsolete.
5333         (cl--letf, letf): Move to cl-lib.
5334         (cl--letf*, letf*): Remove.
5335         * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
5336         * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
5337         (cl-progv): Rewrite.
5338         (cl--letf, cl-letf): Move from cl.el.
5339         (cl-letf*): New macro.
5340         * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
5342 2012-07-11  Michael Albinus  <michael.albinus@gmx.de>
5344         * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
5346 2012-07-11  Chong Yidong  <cyd@gnu.org>
5348         * vc/log-edit.el (log-edit-vc-backend): New variable.
5349         (log-edit): Doc fix.
5351         * vc/vc-dispatcher.el (vc-log-edit): New args.  Use PARAMS
5352         argument of log-edit to set up all local variables.
5353         (vc-start-logentry): New optional arg specifying VC backend.
5355         * vc/vc.el (vc-checkin): Use it.
5356         (vc-deduce-fileset): Handle Log Edit buffers.
5357         (vc-diff): Make first argument optional too.
5359         * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
5361 2012-07-10  Michael Albinus  <michael.albinus@gmx.de>
5363         * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
5364         command, just in case.  The function is not needed anymore.
5365         (eshell-external-command): Do not call `eshell-remote-command'.
5367 2012-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5369         Reduce use of (require 'cl).
5370         * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
5371         * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
5372         * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
5373         * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
5374         * international/quail.el, info-xref.el, imenu.el, image-mode.el:
5375         * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
5376         * battery.el, avoid.el, abbrev.el: Use cl-lib.
5377         * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
5378         * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
5379         * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
5380         * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
5381         * calculator.el, autorevert.el, apropos.el: Don't require CL.
5382         * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
5383         (byte-compile-unfold-bcf, byte-compile-check-variable):
5384         * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
5385         (byte-compile-nilconstp):
5386         * emacs-lisp/autoload.el (make-autoload): Use pcase.
5387         * face-remap.el (text-scale-adjust): Simplify pcase patterns.
5389         * emacs-lisp/gv.el (cond): Make it a valid place.
5390         (if): Simplify slightly.
5392         * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
5393         (pcase--self-quoting-p): New function.
5394         (pcase--u1): Use it.
5396 2012-07-10  Glenn Morris  <rgm@gnu.org>
5398         * emacs-lisp/authors.el (authors-fixed-entries):
5399         (authors-renamed-files-alist): Update for configure.in -> configure.ac.
5401 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
5403         Rename configure.in to configure.ac (Bug#11603).
5404         * emacs-lisp/authors.el (authors-canonical-file-name):
5405         * progmodes/autoconf.el (autoconf-mode):
5406         Prefer configure.ac to configure.in.
5408 2012-07-08  Chong Yidong  <cyd@gnu.org>
5410         * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
5411         Implement the mouse-1-click-follows-link handling properly.
5413         * info.el (Info-link-keymap): Use follow-link mechanism for
5414         header-line links (Bug#374).
5416         * simple.el (deactivate-mark): Do not set the primary selection
5417         if another program has acquired it (Bug#11772).
5419 2012-07-07  Kevin Ryde  <user42@zip.com.au>
5421         * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
5422         (woman-decode-region): Replace escaped-escapes without destroying
5423         bold or underline (Bug#11552).
5424         (woman2-process-escapes): Handle nofill regions (Bug#11591).
5426 2012-07-07  Chong Yidong  <cyd@gnu.org>
5428         * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
5429         (interprogram-cut-function, interprogram-paste-function):
5430         Mention that we typically mean the clipboard.
5432 2012-07-06  Glenn Morris  <rgm@gnu.org>
5434         * kmacro.el (kmacro-call-macro): Restore repeat message.  (Bug#11817)
5436         * files.el (toggle-read-only): Restrict message to interactive use.
5438 2012-07-06  Michael Albinus  <michael.albinus@gmx.de>
5440         * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
5442         * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
5444 2012-07-06  Glenn Morris  <rgm@gnu.org>
5446         * Makefile.in (compile-one-process): Rename from "recompile".
5448         * Makefile.in (bzr-update): "compile" is the same as "recompile
5449         autoloads", but parallelizable, so use that instead.
5451 2012-07-06  Dmitry Gutov  <dgutov@yandex.ru>
5453         * window.el (quit-window): Always restore window height when
5454         it's saved in quit-restore parameter (Bug#11810).
5456 2012-07-06  Glenn Morris  <rgm@gnu.org>
5458         * simple.el (kill-whole-line): Doc tweak.
5460 2012-07-06  Eli Zaretskii  <eliz@gnu.org>
5462         * files.el (file-relative-name): Compare file names
5463         case-insensitively if on MS-Windows or MS-DOS, or if
5464         read-file-name-completion-ignore-case is non-nil.  Don't use
5465         case-fold-search for this purpose.  (Bug#11827)
5467 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
5469         * calendar/cal-dst.el (calendar-current-time-zone):
5470         Return calendar-current-time-zone-cache if non-nil.
5472 2012-07-17  Masatake YAMATO  <yamato@redhat.com>
5473 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
5475         * calendar/cal-dst.el (calendar-current-time-zone):
5476         Return calendar-current-time-zone-cache if non-nil.
5478 2012-07-06  Glenn Morris  <rgm@gnu.org>
5480         * Makefile.in (cvs-update): Remove old alias.
5482 2012-07-05  Michael Albinus  <michael.albinus@gmx.de>
5484         Sync with Tramp 2.2.6-pre.
5486         * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
5487         compatible declaration.
5489         * net/tramp-cmds.el (tramp-append-tramp-buffers):
5490         Protect `list-load-path-shadows' call.
5492         * net/tramp-compat.el (top): Require packages, which aren't
5493         autoloaded anymore for XEmacs.  Protect call of
5494         `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
5495         compiler.  Do not require tramp-util.el and tramp-vc.el anymore,
5496         it hurts at least for SXEmacs.
5497         (tramp-compat-temporary-file-directory): In XEmacs, there is no
5498         standard-value for `temporary-file-directory'.
5500         * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
5501         Redirect stderr to /dev/null.
5502         (tramp-sh-handle-write-region): uid and gid can be floats.
5503         Reported by Russell Sim <russell.sim@gmail.com>.
5504         (tramp-sh-handle-vc-registered): Hide errors.
5505         (tramp-vc-file-name-handler): Use dummy results for `process-file'
5506         and `start-file-process'.
5507         (tramp-maybe-open-connection): Check also whether `non-essential'
5508         is bound.
5510 2012-07-04  Chong Yidong  <cyd@gnu.org>
5512         * xml.el (xml--parse-buffer): Use xml-syntax-table.
5513         (xml-parse-tag): Likewise, and avoid changing entity tables.
5514         (xml-syntax-table): Define from scratch, making sure not to give
5515         x2000 and other Unicode spaces whitespace syntax, since those are
5516         not spaces in XML.
5517         (xml-parse-fragment): Delete unused function.
5518         (xml-name-start-char-re, xml-name-char-re, xml-name-re)
5519         (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
5520         (xml-entity-ref, xml-pe-reference-re)
5521         (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
5522         (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
5523         (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
5524         (xml-entity-value-re): Use syntax references in regexps where
5525         possible; no need to define inside a let-binding.
5526         (xml-parse-dtd): Use xml-pe-reference-re.
5527         (xml-entity-or-char-ref-re): New defconst.
5528         (xml-parse-string, xml-substitute-special): Use it.
5530 2012-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5532         * files.el (locate-dominating-file): Allow `name' to be a predicate.
5533         (find-file--read-only): New function.
5534         (find-file-read-only, find-file-read-only-other-window)
5535         (find-file-read-only-other-frame): Use it.
5536         (insert-file-contents-literally): Don't `fset'.
5537         (get-free-disk-space): Use locate-dominating-file.
5539         * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
5540         function is already compiled.
5542         * xml.el (xml-name-regexp): Remove, redundant.  Use xml-name-re.
5544 2012-07-03  Michael Albinus  <michael.albinus@gmx.de>
5546         * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
5547         files on the same host.
5549 2012-07-03  Andreas Schwab  <schwab@linux-m68k.org>
5551         * help-fns.el (describe-function-1): Only call
5552         help-fns--autoloaded-p when we have a file name.  (Bug#11848)
5554 2012-07-03  Chong Yidong  <cyd@gnu.org>
5556         * xml.el: Protect parser against XML bombs.
5557         (xml-entity-expansion-limit): New variable.
5558         (xml-parse-string, xml-substitute-special): Use it.
5559         (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
5561 2012-07-03  Glenn Morris  <rgm@gnu.org>
5563         * progmodes/bug-reference.el (bug-reference-bug-regexp):
5564         Allow linking to specific messages in debbugs reports (eg 123#5).
5566 2012-07-02  Chong Yidong  <cyd@gnu.org>
5568         * xml.el: Fix entity and character reference expansion, allowing
5569         them to expand into markup as per XML spec.
5570         (xml-default-ns): New variable.
5571         (xml-entity-alist): Use XML spec definitions for lt and amp.
5572         (xml-parse-region): Make first two arguments optional.
5573         Discard text properties.
5574         (xml-parse-tag-1): New function, spun off from xml-parse-tag.
5575         All callers changed.
5576         (xml-parse-tag): Call xml-parse-tag-1.  For backward
5577         compatibility, this function should not modify buffer contents.
5578         (xml-parse-tag-1): Fix opening-tag regexp.
5579         (xml-parse-string): Rewrite, handling entity and character
5580         references properly.
5581         (xml--entity-replacement-text): Signal an error if a parameter
5582         entity is undefined.
5584 2012-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5586         * comint.el (comint-output-filter): Filter out repeated prompts.
5588         * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
5589         and file-name-absolute-p.
5590         (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
5591         internal calls.
5593 2012-07-02  Paul Eggert  <eggert@cs.ucla.edu>
5595         Spelling fixes.
5596         * emacs-lisp/bytecomp.el (byte-compile--reify-function):
5597         Rename from byte-compile--refiy-function.  All uses changed.
5599 2012-07-01  Chong Yidong  <cyd@gnu.org>
5601         * xml.el (xml--parse-buffer): New function.  Move most of
5602         xml-parse-region here.
5603         (xml-parse-region): Copy region into a temporary buffer, since
5604         parameter entity substitution requires changing buffer contents.
5605         Use xml--parse-buffer.
5606         (xml-parse-file): Use xml--parse-buffer.
5607         (xml-parse-dtd): Make parameter entity substitution work right.
5608         Use proper regexps for ELEMENT declarations (Bug#7172).
5610 2012-06-30  Glenn Morris  <rgm@gnu.org>
5612         * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
5614         * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
5615         Remove outdated and unnecessary dbus declarations.
5617 2012-06-30  Eli Zaretskii  <eliz@gnu.org>
5619         * emacs-lisp/timer.el (timer-until): Subtract results of
5620         float-time, instead of taking float-time of the result of
5621         time-subtract, since float-time signals an error for negative time
5622         arguments.
5624 2012-06-30  Chong Yidong  <cyd@gnu.org>
5626         * xml.el (xml-*-re): Convert defvars into defconsts, and
5627         eval-and-compile them so eval-and-compile works on derivatives.
5628         (xml--entity-replacement-text): Use eval-and-comple.
5630 2012-06-30  Michael Albinus  <michael.albinus@gmx.de>
5632         * vc/vc-git.el (vc-git-registered): Use cache property
5633         `git-registered'.
5634         (vc-git-mode-line-string): Call `vc-working-revision' instead of
5635         `vc-git-working-revision' in order to benefit from the cache.
5636         (vc-git-root): Use cache property `git-root'.  (Bug#11757)
5638 2012-06-30  Dmitry Gutov  <dgutov@yandex.ru>
5640         * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
5641         removed (likely outside Emacs).  (Bug#11757)
5643 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5645         * emacs-lisp/cl-lib.el: Require macroexp.
5647 2012-06-30  Chong Yidong  <cyd@gnu.org>
5649         * xml.el: Implement XML parameter entities.
5650         (xml-parameter-entity-alist): New variable.
5651         (xml-parse-region, xml-parse-fragment): Preserve previous values
5652         of xml-entity-alist and xml-parameter-entity-alist, so that
5653         repeated calls on different documents do not change them.
5654         (xml-parse-tag): Fix doctype regexp.
5655         (xml--entity-replacement-text): New function.
5656         (xml-parse-dtd): Use it.  Don't handle system entities; doing that
5657         properly requires url retrieval which is unimplemented.
5658         (xml-escape-string): Doc fix.
5660 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5662         * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5664 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
5666         * fringe.el (fringe-mode): Doc fix.
5668 2012-06-29  Michael Albinus  <michael.albinus@gmx.de>
5670         * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5671         is non-nil.
5672         (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5673         (ange-ftp-file-name-all-completions): Use it.  (Bug#11808)
5675 2012-06-29  Andreas Schwab  <schwab@linux-m68k.org>
5677         * calendar/cal-dst.el (calendar-current-time-zone):
5678         Return calendar-current-time-zone-cache if non-nil.
5680 2012-06-29  Masatake YAMATO  <yamato@redhat.com>
5682         * progmodes/which-func.el (which-func-format):
5683         Add mouse-face.  (Bug#11698)
5685 2012-06-29  Leo Liu  <sdl.web@gmail.com>
5687         * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5689 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5691         * minibuffer.el (minibuffer-confirm-exit-commands):
5692         Add completion-at-point (bug#11725).
5694 2012-06-29  Glenn Morris  <rgm@gnu.org>
5696         * progmodes/f90.el (f90-font-lock-keywords-2):
5697         Add some preprocessor elements.  (Bug#10499)
5699 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5701         * progmodes/cperl-mode.el (cperl-update-syntaxification):
5702         Use syntax-propertize (bug#11739).
5704 2012-06-28  Juanma Barranquero  <lekktu@gmail.com>
5706         * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5708 2012-06-28  Julien Danjou  <julien@danjou.info>
5710         * term.el (term-handle-colors-array): Use a set of new faces to
5711         color the terminal.  Also uses :inverse-video property.
5712         (term-default-fg-color): Set to nil by default, deprecate in favor
5713         of `term-face'.
5714         (term-default-bg-color): Set to nil by default, deprecate in favor
5715         of `term-face'.
5716         (term-current-face): Use `term-face' by default.
5717         (term-bold-attribute): Variable deleted.
5719 2012-06-28  Glenn Morris  <rgm@gnu.org>
5721         * simple.el (completion-list-mode-finish):
5722         Don't use toggle-read-only.  (Since completion-list-mode has
5723         a special mode-class, it wasn't doing anything extra anyway.)
5725 2012-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5727         Make inlining of other-mode interpreted functions work (bug#11799).
5728         * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5729         (byte-compile): Use it to fix compilation of lexical-binding closures.
5730         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5731         function, if needed.
5733 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5735         * help-mode.el (help-make-xrefs): Don't just withstand
5736         cyclic-variable-indirection but any error in documentation-property.
5738         * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5739         memory use.
5740         * bindings.el (bindings--define-key): New function.
5741         * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5742         * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5743         * bindings.el: Use it to purecopy define-key bindings.
5745         * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5747         * emacs-lisp/cl.el (flet): Mark obsolete.
5748         * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5749         * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5750         * progmodes/js.el (js-c-fill-paragraph):
5751         * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5752         (ebrowse-switch-member-buffer-to-derived-class):
5753         * play/5x5.el (5x5-solver): Use cl-flet.
5755         * emacs-lisp/cl.el: Use lexical-binding.  Fix flet (bug#11780).
5756         (cl--symbol-function): New macro.
5757         (cl--letf, cl--letf*): Use it.
5759         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5760         Strip "toggle-" if any.
5762 2012-06-27  Glenn Morris  <rgm@gnu.org>
5764         * info.el (Info-default-directory-list): Move here from paths.el.
5765         * paths.el: Remove file, which is now empty.
5766         * loadup.el: No longer load "paths".
5768         * custom.el (custom-initialize-delay): Doc fix.
5770         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5771         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5772         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
5773         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
5774         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
5775         * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
5776         * eshell/eshell.el (eshell-defgroup): Remove alias.
5778 2012-06-27  Chong Yidong  <cyd@gnu.org>
5780         * help.el (help-enable-auto-load): New variable.
5782         * help-fns.el (help-fns--autoloaded-p): New function.
5783         (describe-function-1): Refer to a function as "autoloaded" if it
5784         was autoloaded at any time in the past.  Perform autoloading if
5785         help-enable-auto-load is non-nil.
5787 2012-06-26  Eli Zaretskii  <eliz@gnu.org>
5789         * makefile.w32-in (compile, compile-always): Depend on
5790         update-subdirs, not on subdirs.el.  Otherwise, several different
5791         sub-targets of 'bootstrap' running in parallel could
5792         simultaneously write to subdirs.el, producing a garbled file.
5794 2012-06-26  Sam Steingold  <sds@gnu.org>
5796         * files.el (file-name-base): New convenience function.
5797         * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
5798         * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
5799         * progmodes/cc-defs.el, progmodes/cperl-mode.el:
5800         * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
5801         * textmodes/ispell.el, textmodes/reftex-ref.el:
5802         * textmodes/tex-mode.el: Use it.
5803         Did not touch cedet and org because they are maintained elsewhere.
5805 2012-06-26  Martin Rudalics  <rudalics@gmx.at>
5807         * calendar/calendar.el (calendar-exit): Don't try to delete or
5808         iconify last frame.  See:
5809         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
5811 2012-06-25  Jim Diamond  <Jim.Diamond@AcadiaU.ca>  (tiny change)
5813         * server.el (server-process-filter): Remember dir in the
5814         process's `server-client-directory' properties.
5816 2012-06-24  Chong Yidong  <cyd@gnu.org>
5818         * xml.el (xml-parse-tag): Correctly handle comment embedded in
5819         non-tag text.
5821 2012-06-23  Juanma Barranquero  <lekktu@gmail.com>
5823         * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
5825 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5827         * help-fns.el (describe-variable): Don't croak when doc is not found.
5828         * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
5829         * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
5830         * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
5831         * emacs-lisp/smie.el (smie-next-sexp): CSE.
5832         * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
5833         ((lambda ..) ..).
5834         * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
5836 2012-06-23  Chong Yidong  <cyd@gnu.org>
5838         * info.el (Info-mouse-follow-link): Accept symbol values of
5839         link-args.  Select window; suggested by Gerhard Kahl (Bug#11672).
5840         (Info-fontify-node): Use Info-link-keymap for all navigation
5841         buttons, with link-args property to perform the desired action.
5842         (Info-link-keymap): Doc fix.
5843         (Info-next-link-keymap, Info-prev-link-keymap)
5844         (Info-up-link-keymap): Delete now-unused keymaps.
5846 2012-06-23  Chong Yidong  <cyd@gnu.org>
5848         * mouse.el (mouse-drag-track): Deactivate the mark before popping.
5850         * progmodes/python.el (python-skeleton-define): Mark abbrevs as
5851         system abbrevs.
5853         * ansi-color.el (ansi-color-apply-on-region): Doc fix.
5855 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5857         * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
5858         (bug#11719).
5860         * minibuffer.el (completion--twq-try): Try to fail more gracefully when
5861         the requote function doesn't work properly (bug#11714).
5863 2012-06-23  Glenn Morris  <rgm@gnu.org>
5865         * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
5867 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5869         Further GV/CL cleanups.
5870         * emacs-lisp/gv.el (gv-get): Autoload functions to find their
5871         gv-expander.
5872         (gv--defun-declaration): New function.
5873         (defun-declarations-alist): Use it.
5874         (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
5875         (gv-place): Autoload.
5876         * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
5877         original definition of dotimes and dolist.
5878         * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
5879         (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
5880         * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
5881         (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5882         (cl-ninth, cl-tenth): Move gv handler to the function's definition.
5883         * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
5884         to the function's definition.
5885         * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
5886         * window.el:
5887         * files.el:
5888         * faces.el:
5889         * env.el: Don't use CL.
5891 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
5893         Support higher-resolution time stamps (Bug#9000).
5895         * calendar/time-date.el (with-decoded-time-value): New arg
5896         PICO-SYMBOL in VARLIST.  It's optional, for backward compatibility.
5897         (encode-time-value): New optional arg PICO.  New type 3.
5898         (time-to-seconds) [!float-time]: Support the new picoseconds
5899         component if it's used.
5900         (seconds-to-time, time-subtract, time-add):
5901         Support ps-resolution time stamps as well.
5903         * emacs-lisp/timer.el (timer): New component psecs.  All uses changed.
5904         (timerp): Timer vectors now have length 9, not 8.
5905         (timer--time): Support new-style (4-part) time stamps.
5906         (timer-next-integral-multiple-of-time): Time stamps now have
5907         picosecond resolution, so take a bit more care about rounding.
5908         (timer-relative-time, timer-inc-time): New optional arg psecs.
5909         (timer-set-time-with-usecs): Set psecs to 0.
5910         (timer--activate): Check psecs component, too.
5912         * proced.el (proced-time-lessp): Support ps-resolution stamps.
5914 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5916         * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
5917         Move the non-essential binding to the post/pre-command-hook where it is
5918         more obviously correct.
5920         * subr.el (read-passwd): Don't use a history at all.
5921         * savehist.el (savehist-save): Remove password saved accidentally
5922         because of the above bug.
5924 2012-06-22  Bastien Guerry  <bzg@gnu.org>
5926         * files.el (toggle-read-only): Display a message telling whether
5927         the buffer is read-only or not (bug#11726).
5929 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5931         * emacs-lisp/gv.el: New file.
5932         * subr.el (push, pop): Extend to generalized variables.
5933         * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
5934         * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
5935         * emacs-lisp/cl-macs.el: Require gv.  Use gv-define-setter,
5936         gv-define-simple-setter, and gv-define-expander.
5937         Remove setf-methods defined in gv.  Rename cl-setf -> setf.
5938         (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
5939         (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
5940         (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
5941         (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
5942         gv-letplace.
5943         (cl-defstruct): Don't define setf-method any more.
5944         * emacs-lisp/cl.el (flet): Don't autoload.
5945         (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
5946         (define-setf-expander, defsetf, define-modify-macro)
5947         (cl-struct-setf-expander): Move from cl-lib.el.
5948         * emacs-lisp/syntax.el:
5949         * emacs-lisp/ewoc.el:
5950         * emacs-lisp/smie.el:
5951         * emacs-lisp/cconv.el:
5952         * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
5953         (timer--time): Use gv-define-simple-setter.
5954         * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
5955         to avoid coding-system problems in subr.el.  Adjust all users.
5956         (macroexp--maxsize, macroexp-small-p): New functions.
5957         * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
5958         * scroll-bar.el (scroll-bar-mode):
5959         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
5960         (normal-erase-is-backspace-mode): Don't use the `eq' place.
5961         * winner.el (winner-configuration, winner-make-point-alist)
5962         (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
5963         * files.el (locate-file-completion-table): Avoid list*.
5965 2012-06-22  Chong Yidong  <cyd@gnu.org>
5967         * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
5968         (dired-create-files): Doc fix (Bug#11329).
5969         (dired-do-copy): Doc fix (Bug#11334).
5970         (dired-mark-read-string): Doc fix (Bug#11553).
5972         * dired.el (dired-recursive-copies, dired-recursive-deletes):
5973         Doc fix (Bug#11326).
5974         (dired-make-relative): Doc fix (Bug#11332).  Remove unused arg.
5975         (dired-dwim-target): Doc fix.
5977         * wdired.el (wdired-mode): Doc fix.
5979 2012-06-22  Glenn Morris  <rgm@gnu.org>
5981         * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
5982         (pcmpl-rpm-cache-stamp-file): New constant.
5983         (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
5984         (pcmpl-rpm-packages): Optionally cache list of packages.
5986         * pcmpl-rpm.el (pcmpl-rpm): New group.
5987         (pcmpl-rpm-query-options): New option.
5988         (pcmpl-rpm-packages): No need to inline it.
5989         Use pcmpl-rpm-query-options.
5991         * calendar/calendar.el (calendar-in-read-only-buffer):
5992         Avoid some needless mode changes.
5994 2012-06-21  Chong Yidong  <cyd@gnu.org>
5996         * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
5997         (desktop-path): Remove . from the default value (Bug#10977).
5998         (desktop-read): Use user-emacs-directory if desktop-path is nil.
6000 2012-06-20  Chong Yidong  <cyd@gnu.org>
6002         * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
6004 2012-06-20  David Röthlisberger  <david@rothlis.net>  (tiny change)
6006         * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
6007         (bug#11201).
6009 2012-06-20  Chong Yidong  <cyd@gnu.org>
6011         * term.el (term-window-width): Handle the case of a missing right
6012         fringe (Bug#8837).
6013         (term-check-size): Use window-text-height (Bug#5445).
6014         (term-mode): Use define-derived-mode.  Minor cleanups.
6015         Set font-lock-defaults (Bug#7692).
6016         (term-move-columns, term-insert-char, term-emulate-terminal)
6017         (term-erase-in-line, term-insert-spaces): Use font-lock-face.
6019 2012-06-20  Michael Albinus  <michael.albinus@gmx.de>
6021         * net/ange-ftp.el (ange-ftp-get-passwd):
6022         Bind `enable-recursive-minibuffers'.
6023         (ange-ftp-get-process): Throw if `non-essential' is non-nil.
6025 2012-06-19  David Röthlisberger  <david@rothlis.net>  (tiny change)
6027         * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
6029 2012-06-19  Glenn Morris  <rgm@gnu.org>
6031         * progmodes/python.el (python-mode): Derive from prog-mode.
6033 2012-06-19  Kevin Gallagher  <Kevin.Gallagher@boeing.com>
6035         * emulation/edt.el (edt-default-menu-bar-update-buffers)
6036         (edt-user-menu-bar-update-buffers): New functions.
6037         (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
6039 2012-06-19  Chong Yidong  <cyd@gnu.org>
6041         * subr.el (with-selected-window): Preserve the selected window's
6042         terminal's top-frame (Bug#4702).
6044         * window.el (save-selected-window): Likewise.
6046 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6048         * progmodes/python.el (python-rx-constituents): Move backquote.
6049         (python-skeleton-define, python-define-auxiliary-skeleton):
6050         Use `declare'.
6052 2012-06-18  Michael Albinus  <michael.albinus@gmx.de>
6054         * minibuffer.el (read-file-name-default): Revert the patch from
6055         2012-06-17.
6057 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6059         * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
6060         (pcase--u1, pcase--q1): Don't use apply-partially.
6062 2012-06-18  Glenn Morris  <rgm@gnu.org>
6064         * progmodes/python.el (python-proc, python-buffer)
6065         (python-send-receive, python-send-string): Fix obsolete versions.
6067 2012-06-18  Martin Rudalics  <rudalics@gmx.at>
6069         * window.el (special-display-p): Completely remove stringp
6070         check.  Suggested by Andreas Schwab <schwab@linux-m68k.org>.
6072 2012-06-17  Michael Albinus  <michael.albinus@gmx.de>
6074         * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
6076         * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
6078         * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
6079         * net/tramp-sh.el (tramp-maybe-open-connection):
6080         Throw if `non-essential' is non-nil.
6082 2012-06-17  Martin Rudalics  <rudalics@gmx.at>
6084         * window.el (special-display-p): Signal an error if BUFFER-NAME
6085         is not a string (Bug#11713).
6087 2012-06-17  Paul Eggert  <eggert@cs.ucla.edu>
6089         * progmodes/python.el (python-info-beginning-of-backslash):
6090         Rename from python-info-beginning-of-backlash, as a spelling fix.
6092 2012-06-17  Chong Yidong  <cyd@gnu.org>
6094         * term.el (term-emulate-terminal): If term-check-size is called,
6095         move point to the process mark without resetting point (Bug#4635).
6097 2012-06-17  Glenn Morris  <rgm@gnu.org>
6099         * international/mule-cmds.el (mule-menu-keymap)
6100         (set-language-environment, set-locale-environment): Doc tweaks.
6102 2012-06-16  Aurelien Aptel  <aurelien.aptel@gmail.com>
6104         * cus-face.el (custom-face-attributes): Add wave-style underline
6105         attribute.
6106         * faces.el (set-face-attribute): Update docstring to describe
6107         wave-style underline attribute.
6109 2012-06-16  Chong Yidong  <cyd@gnu.org>
6111         * term/xterm.el (terminal-init-xterm): Discard input before
6112         querying background mode (Bug#10959).
6114 2012-06-16  Stefan Merten  <smerten@oekonux.de>
6116         * textmodes/rst.el: Added and corrected some comments.
6117         (rst-re-alist-def): Improve symbol syntax.
6118         (rst-mode-syntax-table): Correct syntax entries.
6119         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
6120         (rst-official-version, rst-official-cvs-rev): Update version
6121         information.
6123 2012-06-15  Juanma Barranquero  <lekktu@gmail.com>
6125         * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
6126         in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
6128 2012-06-15  Fabián Ezequiel Gallina  <fgallina@cuca>
6130         * progmodes/python.el: New python.el merge.
6131         (python-guess-indent): Obsolete var.
6132         (python-indent-guess-indent-offset): New defcustom.
6133         (python-indent): Obsolete var.
6134         (python-indent-offset): New defcustom.
6135         (python-python-command, python-jython-command): Delete var.
6136         (python-shell-interpreter): New defcustom.
6137         (python-pdbtrack-do-tracking-p): Delete var.
6138         (python-pdbtrack-activate): New defcustom.
6139         (python-use-skeletons): Obsolete var.
6140         (python-skeleton-autoinsert): New defcustom.
6141         (inferior-python-filter-regexp, python-continuation-offset)
6142         (python-honour-comment-indentation, python-indent-string-contents)
6143         (python-jython-packages, python-mode-hook)
6144         (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
6145         (python-shell-prompt-alist)
6146         (python-source-modes): Delete defcustoms.
6147         (python-check-buffer-name, python-eldoc-setup-code)
6148         (python-eldoc-string-code, python-ffap-setup-code)
6149         (python-ffap-string-code, python-fill-comment-function)
6150         (python-fill-decorator-function, python-fill-paren-function)
6151         (python-fill-string-function, python-imenu-include-defun-type)
6152         (python-imenu-make-tree, python-imenu-subtree-root-label)
6153         (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
6154         (python-shell-compilation-regexp-alist)
6155         (python-shell-completion-module-string-code)
6156         (python-shell-completion-pdb-string-code)
6157         (python-shell-completion-setup-code)
6158         (python-shell-completion-string-code)
6159         (python-shell-enable-font-lock, python-shell-exec-path)
6160         (python-shell-extra-pythonpaths)
6161         (python-shell-internal-buffer-name, python-shell-interpreter-args)
6162         (python-shell-process-environment)
6163         (python-shell-prompt-block-regexp)
6164         (python-shell-prompt-output-regexp)
6165         (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
6166         (python-shell-send-setup-max-wait, python-shell-setup-codes)
6167         (python-shell-virtualenv-path): New defcustoms.
6168         (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
6169         (inferior-python-mode-syntax-table, python--prompt-regexp)
6170         (python-buffer, python-command python-python-command)
6171         (python-default-template, python-imports, python-indent-index)
6172         (python-indent-list, python-indent-list-length)
6173         (python-mode-running, python-pdbtrack-is-tracking-p)
6174         (python-preoutput-continuation, python-preoutput-leftover)
6175         (python-preoutput-result, python-preoutput-skip-next-prompt)
6176         (python-prev-dir/file, python-recursing)
6177         (python-saved-check-command, python-version-checked)
6178         (python-which-func-length-limit)
6179         (view-return-to-alist): Delete vars.
6180         (python-check-custom-command, python-dotty-syntax-table)
6181         (python-imenu-index-alist, python-indent-current-level)
6182         (python-indent-dedenters, python-indent-levels)
6183         (python-nav-beginning-of-defun-regexp)
6184         (python-nav-list-defun-positions-cache)
6185         (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
6186         (python-shell-internal-buffer)
6187         (python-skeleton-available): New vars.
6188         (def-python-skeleton): Delete macro.
6189         (python-skeleton-define): New macro.
6190         (python-define-auxiliary-skeleton, python-rx): New macros.
6191         (python-insert-class): Delete command.
6192         (python-skeleton-class): New command.
6193         (python-insert-def): Delete command.
6194         (python-skeleton-def): New command.
6195         (python-insert-for): Delete command.
6196         (python-skeleton-for): New command.
6197         (python-insert-if): Delete command.
6198         (python-skeleton-if): New command.
6199         (python-insert-try/except, python-insert-try/finally): Delete commands.
6200         (python-skeleton-try): New command.
6201         (python-insert-while): Delete command.
6202         (python-skeleton-while): New command.
6203         (python-backspace): Delete command.
6204         (python-indent-dedent-line-backspace): New command.
6205         (python-electric-colon): Delete command.
6206         (python-indent-electric-colon): New command.
6207         (python-guess-indent): Delete command.
6208         (python-indent-guess-indent-offset): New command.
6209         (python-shift-left): Delete command.
6210         (python-indent-shift-left): New command.
6211         (python-shift-right): Delete command.
6212         (python-indent-shift-right): New command.
6213         (python-find-function): Delete command.
6214         (python-nav-jump-to-defun): New command.
6215         (python-next-statement): Delete command.
6216         (python-nav-forward-sentence): New command.
6217         (python-previous-statement): Delete command.
6218         (python-nav-backward-sentence): New command.
6219         (python-fill-paragraph): Delete command.
6220         (python-fill-paragraph-function): New command.
6221         (python-send-buffer): Delete command.
6222         (python-shell-send-buffer): New command.
6223         (python-send-defun): Delete command.
6224         (python-shell-send-defun): New command.
6225         (python-send-region, python-send-region-and-go): Delete commands.
6226         (python-shell-send-region)
6227         (python-shell-switch-to-shell): New commands.
6228         (python-send-string): Delete command.
6229         (python-shell-send-string): New command.
6230         (python-switch-to-python): Delete command.
6231         (python-shell-switch-to-shell): New command.
6232         (python-describe-symbol): Delete command.
6233         (python-eldoc-at-point): New command.
6234         (python--set-prompt-regexp, python-args-to-list)
6235         (python-after-info-look, python-check-version)
6236         (python-check-comint-prompt, python-find-imports)
6237         (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
6238         (python-unload-function, python-expand-template)
6239         (python-maybe-jython, python-preoutput-filter)
6240         (python-pdbtrack-get-source-buffer)
6241         (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
6242         (python-pdbtrack-toggle-stack-tracking)
6243         (python-pdbtrack-track-stack-file, python-initial-text)
6244         (python-first-word, python-comment-line-p, python-send-command)
6245         (python-setup-brm, python-sentinel, python-set-proc)
6246         (python-skip-out, python-input-filter, python-outdent-p)
6247         (python-outline-level, python-backslash-continuation-line-p)
6248         (python-end-of-block, python-end-of-statement, python-mark-block)
6249         (python-beginning-of-block, python-beginning-of-statement)
6250         (python-blank-line-p, python-beginning-of-string)
6251         (python-open-block-statement-p): Delete functions.
6252         (python-indent-line, python-indent-line-1): Delete functions.
6253         (python-indent-line): New function.
6254         (python-indentation-levels): Delete function.
6255         (python-indent-calculate-levels): New function.
6256         (python-proc): Delete function.
6257         (python-shell-get-process): New function.
6258         (python-send-receive): Delete function.
6259         (python-shell-send-string-no-output): New function.
6260         (python-module-path): Delete function.
6261         (python-ffap-module-path): New function.
6262         (python-completion-at-point)
6263         (python-symbol-completions): Delete functions.
6264         (python-completion-complete-at-point): New function.
6265         (python-load-file): Delete function.
6266         (python-shell-send-file): New function.
6267         (python-calculate-indentation): Delete function.
6268         (python-indent-calculate-indentation): New function.
6269         (python-skip-comments/blanks): Delete function.
6270         (python-util-forward-comment): New function.
6271         (python-continuation-line-p): Delete function.
6272         (python-info-continuation-line-p): New function.
6273         (python-which-func, python-current-defun): Delete function.
6274         (python-info-current-defun): New function.
6275         (python-beginning-of-defun): Delete function.
6276         (python-nav-beginning-of-defun): New function.
6277         (python-close-block-statement-p)
6278         (python-block-end-p): Delete function.
6279         (python-info-closing-block): New function.
6280         (python-comint-output-filter-function)
6281         (python-eldoc--get-doc-at-point, python-end-of-defun-function)
6282         (python-fill-comment, python-fill-decorator, python-fill-paren)
6283         (python-fill-string, python-imenu-make-element-tree)
6284         (python-imenu-make-tree, python-imenu-tree-assoc)
6285         (python-indent-context, python-indent-dedent-line)
6286         (python-indent-line-function)
6287         (python-indent-post-self-insert-function)
6288         (python-indent-toggle-levels)
6289         (python-info-assignment-continuation-line-p)
6290         (python-info-beginning-of-backlash)
6291         (python-info-block-continuation-line-p)
6292         (python-info-closing-block-message)
6293         (python-info-line-ends-backslash-p)
6294         (python-info-looking-at-beginning-of-defun)
6295         (python-info-ppss-context, python-info-ppss-context-type)
6296         (python-nav-list-defun-positions, python-nav-read-defun)
6297         (python-nav-sentence-end, python-nav-sentence-start)
6298         (python-pdbtrack-comint-output-filter-function)
6299         (python-pdbtrack-set-tracked-buffer)
6300         (python-shell-calculate-exec-path)
6301         (python-shell-calculate-process-environment)
6302         (python-shell-completion--do-completion-at-point)
6303         (python-shell-completion--get-completions)
6304         (python-shell-completion-complete-at-point)
6305         (python-shell-completion-complete-or-indent)
6306         (python-shell-get-or-create-process)
6307         (python-shell-get-process-name)
6308         (python-shell-internal-get-or-create-process)
6309         (python-shell-internal-get-process-name)
6310         (python-shell-internal-send-string, python-shell-make-comint)
6311         (python-shell-parse-command, python-shell-send-setup-code)
6312         (python-skeleton-add-menu-items)
6313         (python-util-clone-local-variables, python-util-position)
6314         (run-python-internal, python-indentation-levels)
6315         (python-nav-beginning-of-defun)
6316         (python-completion-complete-at-point): New functions.
6317         (run-python): Change arguments.  New API requirements.
6319 2012-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6321         * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
6322         (bug#11649).
6324         * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
6325         (macroexp--expand-all): Use it.
6327         * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
6328         (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
6329         Use `cl-function' instead.
6331 2012-06-14  Juanma Barranquero  <lekktu@gmail.com>
6333         * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
6334         Suggested by Stefan Monnier while discussing bug#11657.
6336 2012-06-14  Sam Steingold  <sds@gnu.org>
6338         * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
6340 2012-06-14  Andreas Schwab  <schwab@linux-m68k.org>
6342         * play/doctor.el (doctor-doc): Remove parameter and use
6343         doctor-sent instead of sent.
6344         (doctor-read-print): Use doctor-sent instead of sent.  (Bug#11708)
6346 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6348         * files.el: Require cl-lib.
6349         (file-name-non-special): Replace case -> cl-case.
6351         * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
6353         * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
6354         mapping from #' to function*.
6356 2012-06-13  Chong Yidong  <cyd@gnu.org>
6358         * mouse.el (mouse-drag-track): Do not set the mark if the user
6359         releases the mouse without selecting anything (Bug#11588).
6361 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6363         * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
6364         as well (bug#11646).
6366         * loadup.el: Count byte-code functions as well.
6368         * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
6369         * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
6371         * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
6372         (bug#11649).  Add cl-defun and cl-defmacro.
6374 2012-06-13  Drew Adams  <drew.adams@oracle.com>
6376         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6377         Fix last change.
6379 2012-06-13  Michael Albinus  <michael.albinus@gmx.de>
6381         * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
6382         Otherwise, it blocks in batch mode.
6384 2012-06-13  Juanma Barranquero  <lekktu@gmail.com>
6386         * help-mode.el (bookmark-make-record-default): Declare.
6388 2012-06-13  Chong Yidong  <cyd@gnu.org>
6390         * emacs-lisp/package.el (list-packages): Compute a list of
6391         packages that are newly-available since the last list-packages
6392         invocation.
6393         (package-menu--new-package-list): New var.
6394         (package-menu--generate, package-menu--print-info)
6395         (package-menu--status-predicate, package-menu-mark-install):
6396         Handle new status label "new".
6398 2012-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6400         * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
6401         conversion to backquotes.
6403 2012-06-12  Chong Yidong  <cyd@gnu.org>
6405         * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
6406         Rename from gud-inhibit-global-bindings.
6408         * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
6410         * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
6411         hook from nxml-glyph-set-hook.
6413         * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
6414         declaration.
6416         * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
6418         * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
6419         Convert to defcustom.
6421 2012-06-12  Drew Adams  <drew.adams@oracle.com>
6423         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6424         New functions.
6425         (help-mode): Use them.
6427 2012-06-11  Glenn Morris  <rgm@gnu.org>
6429         * progmodes/fortran.el (fortran-font-lock-keywords-3):
6430         Use preprocessor face for directives.
6431         (fortran-directive-re): Doc fix.
6433 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6435         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
6436         conversion to backquotes (bug#11652).
6438         Fix compiler-expansion of CL's cXXr functions (bug#11673).
6439         * emacs-lisp/cl-lib.el (cl--defalias): New function.
6440         (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
6441         (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
6442         (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6443         (cl-ninth, cl-tenth): Mark them as inlinable.
6444         (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
6445         (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
6446         (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
6447         (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
6448         Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
6449         (cl-list*, cl-adjoin): Don't put an autoload manually.
6450         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
6451         (cl--compiler-macro-list*): Add autoload cookie.
6452         (cl--compiler-macro-cXXr): New function.
6454         * help-fns.el (help-fns--compiler-macro): New function extracted from
6455         describe-function-1; follow aliases and use `compiler-macro' property.
6456         (describe-function-1): Use it.
6458 2012-06-11  Chong Yidong  <cyd@gnu.org>
6460         * startup.el (fancy-splash-head): Use splash.svg even if librsvg
6461         is uninstalled, if imagemagick is installed.
6463 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6465         * emacs-lisp/cl-lib.el: Use lexical-binding.
6466         (cl-map-extents, cl-maclisp-member): Remove.
6467         (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6468         (cl--set-substring, cl--block-wrapper, cl--block-throw)
6469         (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
6470         * emacs-lisp/cl-extra.el: Use lexical-binding.
6471         (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
6472         (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
6473         (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
6474         (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
6475         * emacs-lisp/cl-seq.el: Use lexical-binding.
6476         (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
6477         (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
6478         (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
6479         * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
6480         * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
6481         CL's internals.
6483 2012-06-11  Michael Albinus  <michael.albinus@gmx.de>
6485         Sync with Tramp 2.2.6-pre.
6487         * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
6488         `print-length' and `print-level' to nil, in order to avoid
6489         truncation.  Reported by Christopher Schmidt
6490         <christopher@ristopher.com>.
6492         * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
6494         * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
6495         New defmacro.
6496         (tramp-compat-copy-directory): Add optional argument
6497         COPY-CONTENTS.  It is not handled yet.
6499         * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
6500         (tramp-ftp-file-name-p): Simplify.
6502         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
6503         * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
6504         connection vector.
6506         * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
6507         (tramp-methods): Do not use `tramp-password-end-of-line'.
6508         (tramp-completion-function-alist-putty): Handle UNIX case.
6509         (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
6510         (tramp-do-file-attributes-with-stat)
6511         (tramp-do-directory-files-and-attributes-with-stat) Return uid and
6512         gid as real numbers.  They could run out of integer range on cygwin.
6513         (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
6514         (tramp-sh-handle-expand-file-name): Handle hops.
6515         (tramp-open-connection-setup-interactive-shell):
6516         Use `tramp-cleanup'.  Move check for busyboxes ...
6517         (tramp-find-shell): ... here.  Simplify implementation.
6518         Set "remote-shell" property also for alternative shells.
6519         (tramp-remote-coding-commands): Check "test -c /dev/stdout".
6520         If failing, a regular file would be written otherwise.
6521         Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
6522         (tramp-find-inline-encoding): Cache the coding commands in the
6523         process cache.  Apply test command on the remote side, if defined.
6524         (tramp-find-inline-compress): Cache the compress commands in the
6525         process cache.
6526         (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
6527         when requested.  Handle hops.
6528         (tramp-current-connection): New defvar.
6529         (tramp-maybe-open-connection): Use `tramp-cleanup'.
6530         Throw `suppress', if there was a failed connection shortly before.
6531         Handle user interrupt.  (Bug#10187)
6532         (tramp-get-inline-compress, tramp-get-inline-coding):
6533         Read connection properties from the process cache.
6535         * net/tramp-smb.el (tramp-smb-server-version)
6536         (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
6537         New defconsts.
6538         (tramp-smb-prompt): Extend for powershell prompt.
6539         (tramp-smb-file-name-handler-alist): Add handlers for
6540         `process-file', `shell-command' and `start-file-process'.
6541         (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
6542         (tramp-smb-winexe-shell-command-switch): New defcustoms.
6543         (tramp-smb-file-name-p): Simplify.
6544         (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
6545         (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
6546         (tramp-smb-shell-quote-argument): New defuns.
6547         (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
6548         Implement using "tar".  By this, time-stamps are preserved.
6549         (tramp-smb-handle-copy-file): Handle also the case of directories.
6550         (tramp-smb-do-file-attributes-with-stat)
6551         (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
6552         Use `tramp-get-connection-buffer').
6553         (tramp-smb-handle-rename-file): Use "rename", when source and
6554         target are on the same share.
6555         (tramp-smb-maybe-open-connection): Handle wrong passwords.
6556         Use `tramp-smb-server-version'.
6557         (tramp-smb-wait-for-output): Remove prompt.
6559         * net/tramp.el (top): Require 'cl.
6560         (tramp-methods, tramp-rsh-end-of-line):
6561         Remove `tramp-password-end-of-line' from docstring.
6562         (tramp-save-ad-hoc-proxies): New defcustom.
6563         (tramp-completion-function-alist): Adapt docstring.
6564         (tramp-default-password-end-of-line): Remove defcustom.
6565         (tramp-shell-prompt-pattern): Allow "[]" style prompts.  (Bug#11065)
6566         (tramp-user-regexp, tramp-file-name-regexp-unified)
6567         (tramp-file-name-regexp-url): Extend regexp by hop separator.
6568         (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
6569         (tramp-remote-file-name-spec-regexp): New defconst.
6570         (tramp-file-name-structure): Extend structure for hops.
6571         (tramp-get-method-parameter): Move up.
6572         (tramp-file-name-p, tramp-dissect-file-name)
6573         (with-parsed-tramp-file-name): Handle hops.
6574         (tramp-file-name-hop): New defun.
6575         (tramp-make-tramp-file-name): New optional arg HOP.
6576         (tramp-message-show-progress-reporter-message): New defvar.
6577         (tramp-with-progress-reporter): Use it.  We cannot use
6578         `tramp-message-show-message' here, because this suppresses also
6579         error buffers.
6580         (tramp-error-with-buffer): Suppress buffer view, if
6581         `tramp-message-show-message' is nil.
6582         Use `tramp-get-connection-buffer'.
6583         (tramp-cleanup): New defun.
6584         (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
6585         (tramp-file-name-handler): If `debug-on-error' is set, propagate
6586         an error unchanged.
6587         (tramp-completion-handle-file-name-all-completions): Handle hops.
6588         Fix an error when called from ido.
6589         (tramp-completion-dissect-file-name): Use better local variable
6590         name.  Add hop to the vector.
6591         (tramp-handle-insert-file-contents): Use progress-reporter for the
6592         whole scenario.
6593         (tramp-action-password): Let-bind `enable-recursive-minibuffers'
6594         to `t'.
6595         (tramp-check-for-regexp): Simplify search.
6596         (tramp-enter-password): Remove it.  Move implementation ...
6597         (tramp-action-password): ... here.
6598         (tramp-mode-string-to-int, tramp-local-host-p)
6599         (tramp-make-tramp-temp-file, tramp-read-passwd)
6600         (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
6601         Set tramp-autoload cookie.
6603         * net/trampver.el: Update release number.
6605 2012-06-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6606             Michael Albinus  <michael.albinus@gmx.de>
6608         * net/tramp.el (tramp-set-completion-function): Fix docstring.
6609         (tramp-parse-group, tramp-parse-file)
6610         (tramp-parse-shostkeys-sknownhosts): New defuns.
6611         (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
6612         (tramp-parse-shosts-group, tramp-parse-sconfig)
6613         (tramp-parse-sconfig-group, tramp-parse-shostkeys)
6614         (tramp-parse-sknownhosts, tramp-parse-hosts)
6615         (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
6616         Use them.
6617         (tramp-parse-passwd-group, tramp-parse-netrc-group)
6618         (tramp-parse-putty-group): Don't narrow.
6619         (tramp-parse-putty): Make a loop.
6620         (tramp-file-name-handler): Catch the `suppress' signal.
6622 2012-06-11  Chong Yidong  <cyd@gnu.org>
6624         * image.el (imagemagick-register-types): Put the ImageMagick entry
6625         at the end of image-type-file-name-regexps.
6627 2012-06-11  Johan Bockgård  <bojohan@gnu.org>
6629         * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6630         (pcase, pcase-let*, pcase-dolist): Use them.
6632 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6634         * emacs-lisp/pcase.el (pcase--let*): New function.
6635         (pcase-let*): Use it.  Use pcase--memoize to avoid repeated expansions.
6636         (pcase--expand): Use macroexp-let².
6638 2012-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6640         * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6641         * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6642         * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6643         * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6644         * emacs-lisp/derived.el: Use pcase instead of `cl'.
6645         * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6647 2012-06-10  Glenn Morris  <rgm@gnu.org>
6649         * mail/rmail.el (rmail-yank-current-message): Leave point at
6650         correct position.  (Bug#11660)
6652 2012-06-10  Chong Yidong  <cyd@gnu.org>
6654         * allout-widgets.el: Fix code header.
6656 2012-06-10  Chong Yidong  <cyd@gnu.org>
6658         * cus-edit.el (customize-changed-options-previous-release):
6659         Bump to 24.1.
6661 2012-06-09  Andreas Schwab  <schwab@linux-m68k.org>
6663         * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6665 2012-06-09  Chong Yidong  <cyd@gnu.org>
6667         * ebuff-menu.el (electric-buffer-list): Preserve header line.
6669 2012-06-09  Martin Rudalics  <rudalics@gmx.at>
6671         * window.el (special-display-popup-frame): Don't use
6672         window--display-buffer (Bug#11651).
6674 2012-06-09  Eli Zaretskii  <eliz@gnu.org>
6676         Fix parallel builds: make sure loaddefs.el is not being written
6677         while Lisp files are compiled.
6678         (compile): Don't depend on 'mh-autoloads'.
6679         (compile-CMD, compile-SH): Depend on 'autoloads'.
6680         (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6682         * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200.  (Bug#11649)
6684 2012-06-09  Chong Yidong  <cyd@gnu.org>
6686         * face-remap.el (face-remap-add-relative, face-remap-set-base)
6687         (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6688         Doc fixes (Bug#11225).
6690 2012-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6692         * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6693         a function if there's a clear indication that it has a compiler-macro.
6694         * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6695         (macro-declarations-alist): Add arglist to declaration functions.
6696         (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6697         * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6698         * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6699         * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6700         Also add autoload to find the compiler macro.
6701         * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6702         (cl--compiler-macro-member, cl--compiler-macro-assoc)
6703         (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6704         (cl--compiler-macro-get): New functions, replacing calls to
6705         cl-define-compiler-macro.
6706         (cl-typep) [compiler-macro]: Use macroexp-let².
6708 2012-06-08  Nick Dokos  <nicholas.dokos@hp.com>  (tiny change)
6710         * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6711         string properly, fixes Bug#11473.
6713 2012-06-08  Chong Yidong  <cyd@gnu.org>
6715         * faces.el (set-face-attribute): Doc fix.
6716         (modify-face): Don't use :bold and :italic.
6717         (error, warning, success): Tweak definitions.
6719         * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6720         (custom-modified, custom-set, custom-changed, custom-themed)
6721         (custom-saved, custom-button, custom-button-mouse)
6722         (custom-button-pressed, custom-state, custom-comment-tag)
6723         (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6724         (custom-group-subtitle): Use new-style face specs.
6725         (custom-invalid-face, custom-rogue-face, custom-modified-face)
6726         (custom-set-face, custom-changed-face, custom-saved-face)
6727         (custom-button-face, custom-button-pressed-face)
6728         (custom-documentation-face, custom-state-face)
6729         (custom-comment-face, custom-comment-tag-face)
6730         (custom-variable-tag-face, custom-variable-button-face)
6731         (custom-face-tag-face, custom-group-tag-face-1)
6732         (custom-group-tag-face): Remove obsolete face alias.
6734         * epa.el (epa-validity-high, epa-validity-medium)
6735         (epa-validity-low, epa-mark, epa-field-name, epa-string)
6736         (epa-field-name, epa-field-body):
6737         * font-lock.el (font-lock-comment-face, font-lock-string-face)
6738         (font-lock-keyword-face, font-lock-builtin-face)
6739         (font-lock-function-name-face, font-lock-variable-name-face)
6740         (font-lock-type-face, font-lock-constant-face):
6741         * ido.el (ido-first-match, ido-only-match, ido-subdir)
6742         (ido-virtual, ido-indicator, ido-incomplete-regexp):
6743         * speedbar.el (speedbar-button-face, speedbar-file-face)
6744         (speedbar-directory-face, speedbar-tag-face)
6745         (speedbar-selected-face, speedbar-highlight-face)
6746         (speedbar-separator-face):
6747         * whitespace.el (whitespace-newline, whitespace-space)
6748         (whitespace-hspace, whitespace-tab, whitespace-trailing)
6749         (whitespace-line, whitespace-space-before-tab)
6750         (whitespace-space-after-tab, whitespace-indentation)
6751         (whitespace-empty):
6752         * emulation/cua-base.el (cua-global-mark):
6753         * eshell/em-prompt.el (eshell-prompt):
6754         * net/newst-plainview.el (newsticker-new-item-face)
6755         (newsticker-old-item-face, newsticker-immortal-item-face)
6756         (newsticker-obsolete-item-face, newsticker-date-face)
6757         (newsticker-statistics-face, newsticker-default-face):
6758         * net/newst-reader.el (newsticker-feed-face)
6759         (newsticker-extra-face, newsticker-enclosure-face):
6760         * net/newst-treeview.el (newsticker-treeview-face)
6761         (newsticker-treeview-new-face, newsticker-treeview-old-face)
6762         (newsticker-treeview-immortal-face)
6763         (newsticker-treeview-obsolete-face)
6764         (newsticker-treeview-selection-face):
6765         * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
6766         (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
6767         (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
6768         (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
6769         * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
6770         (nxml-outline-active-indicator, nxml-outline-ellipsis):
6771         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6772         (mpuz-text):
6773         * progmodes/vera-mode.el (vera-font-lock-number)
6774         (vera-font-lock-function, vera-font-lock-interface):
6775         * textmodes/table.el (table-cell): Use new-style face specs, and
6776         don't use the old :bold and :italic attributes.
6778         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
6779         (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
6780         (ebrowse-member-class, ebrowse-progress): Likewise.
6781         (ebrowse-tree-mark-face, ebrowse-root-class-face)
6782         (ebrowse-file-name-face, ebrowse-default-face)
6783         (ebrowse-member-attribute-face, ebrowse-member-class-face)
6784         (ebrowse-progress-face): Remove obsolete faces.
6786         * progmodes/flymake.el (flymake-errline, flymake-warnline):
6787         Inherit from error and warning faces respectively.
6789         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6790         Likewise.
6791         (flyspell-incorrect-face, flyspell-duplicate-face):
6792         Remove obsolete aliases.
6794 2012-06-08  Michael Albinus  <michael.albinus@gmx.de>
6796         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6797         Avoid infloop.
6799 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6801         * startup.el (argv, argi): Make lexically scoped.
6802         * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
6803         * emacs-lisp/cl-macs.el: Use lexical-binding.
6804         Rename cl-bind-* to cl--bind-*.
6805         * files.el: Don't require `cl' since it doesn't use it.
6806         * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
6808 2012-06-08  Juanma Barranquero  <lekktu@gmail.com>
6810         * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
6811         (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
6812         instead of calling external sort utility.
6813         (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
6815 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
6817         * descr-text.el (describe-char): Mention how to insert the
6818         character, if the current input method doesn't support it.
6819         See the discussion in this thread for the details:
6820         http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
6822 2012-06-08  Sam Steingold  <sds@gnu.org>
6824         * bindings.el (global-map): Bind XF86Forward to next-buffer and
6825         XF86Back to previous-buffer.
6826         (minibuffer-local-map): Bind them to next-history-element and
6827         previous-history-element respectively.
6828         * help-mode.el (help-mode-map): Bind them to help-go-forward and
6829         help-go-back respectively.
6830         * info.el (Info-mode-map): Bind them to Info-history-forward and
6831         Info-history-back respectively.
6832         These are the keys next to Up on the ThinkPad keyboard.
6834 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6836         Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
6837         * emacs-lisp/cl-macs.el: Provide itself.
6838         (cl--labels-convert-cache): New var.
6839         (cl--labels-convert): New function.
6840         (cl-flet, cl-labels): New implementation with new semantics, relying on
6841         lexical-binding.
6842         * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
6843         (cl-closure-vars, cl--function-convert-cache)
6844         (cl--function-convert): Move from cl-macs.el.
6845         (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
6846         rename by removing the "cl-" prefix.
6847         * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
6849 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6851         * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
6852         (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
6853         (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
6854         (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
6855         (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
6856         (cl-hash-table-count): Add old compatibility aliases.
6858         * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
6859         Use macroexpand-all-environment instead.
6860         (cl--old-macroexpand): New var.
6861         (cl--sm-macroexpand): New function.
6862         (cl-symbol-macrolet): Use it during macro expansion.
6863         (cl--function-convert-cache): New var.
6864         (cl--function-convert): New function, extracted from
6865         cl-macroexpand-all.
6866         (cl-lexical-let): Use it.
6868         * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
6869         (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
6870         (cl-member): Remove old alias.
6872         * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
6873         (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
6874         (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
6875         (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
6876         (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
6877         (cl-macroexpand-cmacs): Remove var.
6878         (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
6879         Use macroexpand-all instead.
6881 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6883         * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
6884         (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
6885         (macroexp-copyable-p): New functions and macros.
6886         * emacs-lisp/edebug.el (edebug-unwrap):
6887         * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
6888         * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
6889         (pcase--let*): Remove.
6890         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
6891         (byte-compile-constp): Remove.  Use macroexp--const-symbol-p and
6892         macroexp-const-p instead.
6893         * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
6895         * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
6896         instead of "cl-" for internal definitions.  Use macroexp-const-p.
6897         (cl-old-bc-file-form): Remove var.
6898         (cl-const-exprs-p): Remove fun.
6899         (cl-labels, cl-macrolet): Use backquote.
6900         (cl-lexical-let): Use cl-symbol-macrolet.  Don't use cl-defun-expander.
6901         (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
6902         (cl-define-setf-expander): Rename from cl-define-setf-method.
6903         * emacs-lisp/cl.el: Adjust alias for define-setf-method.
6905         * international/mule-cmds.el: Don't require CL.
6906         (view-hello-file): Don't use `letf'.
6908 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6910         * tmm.el (tmm-prompt): Use string-prefix-p.
6911         (tmm-completion-delete-prompt): Don't affect current-buffer outside.
6912         (tmm-add-prompt): Use minibuffer-completion-help.
6913         (tmm-delete-map): Remove.
6915         * subr.el (kbd): Make it its own function.
6917 2012-06-07  Stefan Merten  <smerten@oekonux.de>
6919         * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
6920         Silence compiler warnings.  Fix versions.
6921         (rst-position-if, rst-position, rst-some, rst-signum): New functions.
6922         (rst-shift-region, rst-adornment-level, rst-compute-tabs)
6923         (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
6924         (rst-package-emacs-version-alist): Correct Emacs version to
6925         represent major merge with upstream.
6926         (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
6928 2012-06-06  Glenn Morris  <rgm@gnu.org>
6930         * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
6931         Only print environment variables if set.
6933 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6935         * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
6936         (macroexp--cons): Rename from maybe-cons.
6937         (macroexp--accumulate): Rename from macroexp-accumulate.
6938         (macroexp--all-forms): Rename from macroexpand-all-forms.
6939         (macroexp--all-clauses): Rename from macroexpand-all-clauses.
6940         (macroexp--expand-all): Rename from macroexpand-all-1.
6942 2012-06-06  Sam Steingold  <sds@gnu.org>
6944         * calendar/calendar.el (calendar-in-read-only-buffer):
6945         Call `special-mode' to enable the standard read-only keybindings.
6947 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6949         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
6950         with "loading" messages (bug#11635).
6952 2012-06-06  Michael Albinus  <michael.albinus@gmx.de>
6954         * files.el (enable-remote-dir-locals): New option.
6955         (hack-dir-local-variables): Use it.  (Bug#1933, Bug#6731)
6957         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6958         Ensure, that the temp directory is local.
6960         * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
6961         `temporary-file-directory'.
6963         * progmodes/python.el (python-send-region): Ensure, that the
6964         temporary file is created also in the remote case.
6966 2012-06-06  Glenn Morris  <rgm@gnu.org>
6968         * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
6969         (vc-rcs-update-changelog): Use it.
6971         * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
6973         * vc/vc-sccs.el (vc-sccs-write-revision): New function.
6974         (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
6975         (vc-sccs-diff): Replace use of the external vcdiff script.
6977 2012-06-05  Glenn Morris  <rgm@gnu.org>
6979         * ledit.el: Move to obsolete/.
6981 2012-06-05  Sam Steingold  <sds@gnu.org>
6983         * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
6984         patch (Bug#11140).
6986 2012-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6988         * emacs-lisp/cust-print.el: Move to obsolete.
6990         * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
6991         compiler-macro expansion.
6993         Add native compiler-macro support.
6994         * emacs-lisp/macroexp.el (macroexpand-all-1):
6995         Support compiler-macros directly.  Properly follow aliases and apply
6996         the compiler macros more thoroughly.
6997         * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
6998         macroexpand now properly follows aliases.
6999         * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
7000         (cl-compiler-macroexpand): Use new prop.
7001         * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
7003         * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
7005 2012-06-05  Martin Rudalics  <rudalics@gmx.at>
7007         * window.el (get-lru-window, get-mru-window, get-largest-window):
7008         New argument NOT-SELECTED to avoid picking the selected window.
7009         (window--display-buffer-1, window--display-buffer-2): Replace by
7010         new function window--display-buffer
7011         (display-buffer-same-window, display-buffer-reuse-window)
7012         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7013         Use window--display-buffer.
7014         (display-buffer-use-some-window): Remove temporary dedication
7015         hack by calling get-lru-window and get-largest-window with
7016         NOT-SELECTED argument non-nil.  Call window--display-buffer.
7018 2012-06-05  Glenn Morris  <rgm@gnu.org>
7020         * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
7021         Replace external vcdiff script.
7023 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7025         * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
7027 2012-06-04  Chong Yidong  <cyd@gnu.org>
7029         * image.el (imagemagick-types-inhibit): Revert last change.
7030         Add INFO and M.
7031         (imagemagick-enabled-types): Remove CIN and EPS*.
7033 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7035         * emacs-lisp/cl-lib.el: Rename from cl.el.
7036         * emacs-lisp/cl.el: New compatibility file.
7037         * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
7038         * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
7039         to obey the "cl-" prefix.
7040         * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
7042 2012-06-03  Glenn Morris  <rgm@gnu.org>
7044         * emacs-lisp/authors.el (authors-aliases): Addition.
7046         * cus-start.el (tool-bar-style, tool-bar-max-label-size):
7047         Fix :version.
7049 2012-06-03  Stefan Merten  <smerten@oekonux.de>
7051         * textmodes/rst.el: Add comments.
7052         (rst-transition, rst-adornment): New faces.
7053         (rst-adornment-faces-alist): Make default safe to reevaluate.
7054         Fixes
7055         http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
7056         Improve customization tags.
7057         (rst-define-level-faces): Clarify meaning.
7059 2012-06-03  Chong Yidong  <cyd@gnu.org>
7061         * progmodes/compile.el (compilation-mode-line-fail)
7062         (compilation-mode-line-run, compilation-mode-line-exit):
7063         New faces.
7064         (compilation-start, compilation-handle-exit): Use them (Bug#11032).
7066 2012-06-03  Jack Duthen  <duthen.mac.01@gmail.com>  (tiny change)
7068         * progmodes/which-func.el (which-func-update-ediff-windows):
7069         New function.  Use it in ediff-select-hook (Bug#11478).
7071 2012-06-03  Chong Yidong  <cyd@gnu.org>
7073         * bindings.el: Remove explicit help text from format-mode-line.
7074         It is now supplied by mode-line-default-help-echo.
7075         (mode-line-front-space, mode-line-end-spaces)
7076         (mode-line-misc-info): New variables.
7077         (mode-line-modes, mode-line-position): Move the default value to
7078         the variable definition.
7079         (mode-line-default-help-echo): New defcustom.
7080         (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
7081         (mode-line-modified-help-echo): New functions.
7082         (mode-line-mule-info, mode-line-modified): Use them.
7083         (mode-line-eol-desc, propertized-buffer-identification):
7084         Consistency fixes for help text.
7085         (mode-line-coding-system-map): Allow using mouse-3 to invoke
7086         set-buffer-file-coding-system (Bug#289).
7087         (mode-line-mule-info-help-echo): Update help text.
7089 2012-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7091         * simple.el (execute-extended-command): Set real-this-command
7092         (bug#11506).
7094 2012-06-02  Chong Yidong  <cyd@gnu.org>
7096         Remove incorrect uses of "modeline" in comments, docstrings, and
7097         function/variable names (Bug#10329).
7099         * cus-edit.el (mode-line):
7100         * dframe.el (dframe-mouse-hscroll):
7101         * emacs-lisp/re-builder.el:
7102         * emacs-lisp/easy-mmode.el (define-minor-mode):
7103         * frame.el (set-frame-name):
7104         * help.el (lookup-minor-mode-from-indicator):
7105         * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
7106         * progmodes/cc-cmds.el (c-toggle-auto-newline)
7107         (c-toggle-hungry-state):
7108         * progmodes/antlr-mode.el (antlr-language-alist):
7109         * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
7110         * progmodes/vhdl-mode.el (vhdl-mode):
7111         * progmodes/which-func.el (which-func, which-func-cleanup-function):
7112         * term/ns-win.el (ns-face-at-pos):
7113         * term/sup-mouse.el (sup-mouse-report):
7114         * textmodes/flyspell.el (flyspell-mode-line-string):
7115         * textmodes/ispell.el (ispell-highlight-face):
7116         * textmodes/reftex-global.el:
7117         * vc/vc-arch.el (vc-arch-mode-line-string):
7118         * vc/vc-cvs.el (vc-cvs-mode-line-string):
7119         * vc/vc-git.el (vc-git-mode-line-string):
7120         * vc/vc-hooks.el (vc-display-status)
7121         (vc-default-mode-line-string):
7122         * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
7124         * ansi-color.el (ansi-color-faces-vector): Change default faces.
7126         * dired.el (dired-sort-set-mode-line): Rename from
7127         dired-sort-set-modeline.  All callers changed.
7129         * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
7130         eshell-status-in-modeline.
7132         * foldout.el (foldout-mode-line-string): Rename from
7133         foldout-modeline-string.  All callers changed.
7134         (foldout-update-mode-line): Rename from foldout-update-modeline.
7136         * subr.el (redraw-modeline): Make into obsolete alias.
7138         * calendar/timeclock.el (timeclock-mode-line-display): Rename from
7139         timeclock-modeline-display.  Make old name an alias.
7140         (timeclock-update-mode-line): Likewise.  All callers changed.
7141         (timeclock-mode-line-display): No need to check before using
7142         add-hook.
7143         (timeclock-relative, timeclock-day-over-hook)
7144         (timeclock-use-elapsed, timeclock-mode-string)
7145         (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
7147         * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
7148         crisp-mode-modeline-string.
7150         * play/solitaire.el (solitaire-build-mode-line): Rename from
7151         solitaire-build-modeline.  All callers changed.
7153         * play/zone.el (zone-hiding-mode-line): Rename from
7154         zone-hiding-modeline.  All callers changed.
7155         (zone): Remove unusued `modeline-hidden-level' property.
7157         * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
7158         xscheme-modeline-initialize.  All callers changed.
7160         * strokes.el (strokes-lighter): Rename from
7161         strokes-modeline-string.
7163         * textmodes/sgml-mode.el (html-face-tag-alist)
7164         (html-tag-face-alist): Use mode-line face instead of obsolete
7165         alias modeline.
7167 2012-06-02  Stefan Merten  <smerten@oekonux.de>
7169         * textmodes/rst.el: Always require `cl'.
7170         (rst-mode-map): Fix meaning of C-M-a / C-M-e.
7172 2012-06-02  Chong Yidong  <cyd@gnu.org>
7174         * image.el (imagemagick-enabled-types): Rename from
7175         imagemagick-types-enable.  Add many more types.
7176         (imagemagick-types-inhibit): Change default to nil.
7177         (imagemagick-filter-types): Caller changed.
7179 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7181         * emacs-lisp/cl-macs.el: Use backquotes.
7182         (cl-transform-function-property): Use eval-and-compile rather than
7183         abusing `require'.
7184         (defstruct): Use declare-function instead of with-no-warnings.
7186         * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
7187         (byte-compile-output-docform): Re-add the print-circle bindings.
7188         (byte-compile-fix-header): Use #$ just because it's shorter.
7189         (byte-compile-output-file-form): Remove defun/defmacro.
7191 2012-06-01  Martin Rudalics  <rudalics@gmx.at>
7193         * simple.el (choose-completion): Remove now obsolete binding for
7194         owindow.
7196 2012-06-01  Michael Albinus  <michael.albinus@gmx.de>
7198         * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
7199         in order to avoid "Stack overflow in regexp matcher".
7201 2012-05-31  Glenn Morris  <rgm@gnu.org>
7203         * image.el: For clarity, call imagemagick-register-types at
7204         top-level, rather than relying on a custom :initialize.
7205         (imagemagick-types-enable): New option.  (Bug#11557)
7206         (imagemagick-filter-types): New function.  (Bug#7406)
7207         (imagemagick-register-types): Use imagemagick-filter-types.
7208         If disabling support, remove elements altogether rather
7209         than using an impossible regexp.
7210         (imagemagick-types-inhibit): Give it the default init function.
7212 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7214         * emacs-lisp/bytecomp.el (byte-compile-fix-header):
7215         Handle arbitrary file name lengths (Bug#11585).
7217 2012-05-31  Martin Rudalics  <rudalics@gmx.at>
7219         * desktop.el (desktop-read): Clear previous and next buffers for
7220         all windows and bury *Messages* buffer (bug#11556).
7222 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7224         Add `declare' for `defun'.  Align `defmacro's with it.
7225         * emacs-lisp/easy-mmode.el (define-minor-mode)
7226         (define-globalized-minor-mode): Don't autoload the var definitions.
7227         * emacs-lisp/byte-run.el: Use lexical-binding.
7228         (defun-declarations-alist, macro-declarations-alist): New vars.
7229         (defmacro, defun): Use them.
7230         (make-obsolete, define-obsolete-function-alias)
7231         (make-obsolete-variable, define-obsolete-variable-alias):
7232         Use `declare'.
7233         (macro-declaration-function): Mark obsolete.
7234         * emacs-lisp/autoload.el: Use lexical-binding.
7235         (make-autoload): Add `expansion' arg.  Rely more on macro expansion.
7237 2012-05-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
7239         * textmodes/ispell.el (ispell-with-no-warnings):
7240         Define as a macro.
7241         (ispell-kill-ispell, ispell-change-dictionary):
7242         Use `called-interactively-p' for Emacs instead of obsolete
7243         `interactive-p'.
7245 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7247         * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
7248         (macro-declaration-function): Move var from C code.
7249         (macro-declaration-function): Define function with defalias.
7250         * emacs-lisp/macroexp.el (macroexpand-all-1):
7251         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
7252         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
7253         defun/defmacro any more.
7254         * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
7255         Provide fallback for unknown arglist.
7256         (byte-compile-arglist-warn): Change calling convention.
7257         (byte-compile-output-file-form): Move print-vars binding.
7258         (byte-compile-output-docform): Simplify accordingly.
7259         (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
7260         (byte-compile-defmacro-declaration): Remove.
7261         (byte-compile-file-form-defmumble): Generalize to defalias.
7262         (byte-compile-output-as-comment): Return byte-positions.
7263         Simplify callers accordingly.
7264         (byte-compile-lambda): Use `assert'.
7265         (byte-compile-defun, byte-compile-defmacro): Remove.
7266         (byte-compile-file-form-defalias):
7267         Use byte-compile-file-form-defmumble.
7268         (byte-compile-defalias-warn): Remove.
7270 2012-05-29  Stefan Merten  <smerten@oekonux.de>
7272         * textmodes/rst.el: Silence `checkdoc-ispell' errors where
7273         possible.  Fix authors.  Improve comments.  Improve loading of `cl'.
7275         (rst-mode-abbrev-table): Merge definition.
7276         (rst-mode): Make sure `font-lock-defaults' is buffer local.
7277         (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
7279 2012-05-29  Ulf Jasper  <ulf.jasper@web.de>
7281         * calendar/icalendar.el
7282         (icalendar-export-region): Export UID properly.
7284 2012-05-29  Leo Liu  <sdl.web@gmail.com>
7285         * calendar/icalendar.el (icalendar-import-format):
7286         Add `icalendar-import-format-uid' (Bug#11525).
7287         (icalendar-import-format-uid): New.
7288         (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
7289         Export UID.
7291 2012-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7293         * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
7294         different alternative patterns.
7295         (pcase-codegen): Be more careful to preserve identity.
7296         (pcase--u1): Don't forget to mark vars as used.
7298         * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
7299         (byte-compile-close-variables): Bind byte-compile--outbuffer here...
7300         (byte-compile-from-buffer): ...rather than here.
7302         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
7303         functions from byte-compile-function-environment.
7305 2012-05-29  Troels Nielsen  <bn.troels@gmail.com>
7307         * window.el (window-deletable-p): Avoid deleting the root window
7308         of a frame with an active minibuffer.
7310 2012-05-29  Martin Rudalics  <rudalics@gmx.at>
7312         * simple.el (choose-completion): Use quit-window (Bug#11567).
7314 2012-05-29  Chong Yidong  <cyd@gnu.org>
7316         * whitespace.el (whitespace-cleanup): Fix usage of
7317         whitespace-empty-at-bob-regexp (Bug#11492).
7319 2012-05-29  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
7321         * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
7322         revert (Bug#11488).
7324 2012-05-29  Juri Linkov  <juri@jurta.org>
7326         * isearch.el (isearch-mode-map): Bind `M-s _' to
7327         `isearch-toggle-symbol'.  Bind `M-s c' to
7328         `isearch-toggle-case-fold'.
7329         (search-map): Bind `M-s _' to `isearch-forward-symbol'.
7330         (isearch-forward): Add `M-s _' to the docstring.
7331         (isearch-forward-symbol, isearch-toggle-case-fold)
7332         (isearch-symbol-regexp): New functions.  (Bug#11381)
7334 2012-05-29  Juri Linkov  <juri@jurta.org>
7336         * isearch.el (isearch-word): Add docstring.  (Bug#11381)
7337         (isearch-occur, isearch-search-and-update): If `isearch-word' is
7338         a function, call it to get the regexp.
7339         (isearch-message-prefix): If `isearch-word' holds a symbol, use its
7340         property `isearch-message-prefix' instead of the string "word ".
7341         (isearch-search-fun-default): For the case of `isearch-word',
7342         return a lambda that calls re-search-forward/re-search-backward
7343         with a regexp returned by `word-search-regexp' or by the function
7344         in `isearch-word'.
7346 2012-05-29  Juri Linkov  <juri@jurta.org>
7348         * isearch.el (isearch-search-fun-default): New function.
7349         (isearch-search-fun): Move default part to the new function
7350         `isearch-search-fun-default'.
7351         (isearch-search-fun-function): Set the default value to
7352         `isearch-search-fun-default'.  (Bug#11381)
7354         * comint.el (comint-history-isearch-end):
7355         Use `isearch-search-fun-default'.
7356         (comint-history-isearch-search): Use `isearch-search-fun-default'
7357         and remove spacial case for `isearch-word'.
7358         (comint-history-isearch-wrap): Remove spacial case for
7359         `isearch-word'.
7361         * hexl.el (hexl-isearch-search-function):
7362         Use `isearch-search-fun-default'.
7364         * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
7365         Use `word-search-regexp' for `isearch-word'.
7367         * misearch.el (multi-isearch-search-fun):
7368         Use `isearch-search-fun-default'.
7370         * simple.el (minibuffer-history-isearch-search):
7371         Use `isearch-search-fun-default' and remove spacial case for
7372         `isearch-word'.
7373         (minibuffer-history-isearch-wrap): Remove spacial case for
7374         `isearch-word'.
7376         * textmodes/reftex-global.el (reftex-isearch-wrap-function):
7377         Remove spacial case for `isearch-word'.
7378         (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
7380 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
7382         Decrease XEmacs incompatibilities.
7383         * textmodes/flyspell.el (flyspell-check-pre-word-p):
7384         Use `string-match'.
7385         (flyspell-delete-region-overlays): Use alternative definition for
7386         XEmacs.
7387         (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
7388         (flyspell-word): Use `process-kill-without-query' if XEmacs.
7389         (flyspell-mode-on): Use `interactive-p' if XEmacs.
7390         (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
7391         `define-obsolete-face-alias' under XEmacs, but old method.
7393         * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
7394         `with-no-warnings' definition or Emacs alias.
7395         (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
7396         (ispell-word): Do not use `region-p' if XEmacs.
7398 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
7400         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7401         Check for `ispell-dictionary-base-alist' instead of full
7402         `ispell-dictionary-alist'.
7403         (ispell-init-process): Show spellchecker when starting new Ispell
7404         process.
7406 2012-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7408         * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
7409         http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
7411 2012-05-27  Juanma Barranquero  <lekktu@gmail.com>
7413         * version.el (motif-version-string, gtk-version-string)
7414         (ns-version-string): Declare.
7416 2012-05-27  Juri Linkov  <juri@jurta.org>
7418         * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
7419         after the `eval-defun-1' specialcaseing
7420         like in `edebug-eval-defun' (bug#10181).
7422         * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
7423         like in `eval-defun-1'.
7425 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
7427         * mail/sendmail.el (mail-yank-region):
7428         Recognize rmail-yank-current-message in addition to insert-buffer.
7429         Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
7430         a *mail* buffer created through rmail-start-mail with sendmail as
7431         mail-user-agent.
7433 2012-05-27  Chong Yidong  <cyd@gnu.org>
7435         * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
7436         Default to 256 (Bug#11267).
7438         * help.el (describe-mode): Doc fix.
7440 2012-05-26  Glenn Morris  <rgm@gnu.org>
7442         * w32-fns.el (w32-init-info): Remove.
7443         * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
7445         * info.el (info-initialize): For self-contained NS builds, put the
7446         included info/ directory at the front.  (Bug#2791)
7448         * paths.el (Info-default-directory-list): Make it a defcustom,
7449         mainly so that we can use custom-initialize-delay.
7451 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7453         * subr.el (buffer-has-markers-at): Mark obsolete.
7455         * subr.el (lambda): Use declare.
7457         * emacs-lisp/lisp-mode.el (lambda):
7458         * emacs-lisp/edebug.el (lambda): Move properties to its definition.
7460 2012-05-26  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
7462         * thingatpt.el (forward-same-syntax): Handle no ARG case.  (Bug#11560)
7464 2012-05-26  Glenn Morris  <rgm@gnu.org>
7466         * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
7468 2012-05-25  Glenn Morris  <rgm@gnu.org>
7470         * paths.el: Remove no-byte-compile.
7471         * loadup.el: No need to load paths.el uncompiled.
7473         * image.el (imagemagick-types-inhibit): Doc fix.
7475         * version.el: Remove no-byte-compile and associated formatting.
7476         * loadup.el: No need to load version.el uncompiled.  AFAICS, this
7477         is ancient code from when there was an "inc-vers.el".
7479 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7481         * progmodes/gdb-mi.el: Minor style changes.
7482         (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
7483         Turn into minor modes.
7484         (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
7485         (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
7486         (gdb-shell): Remove unneeded let-binding.
7487         (gdb-get-many-fields): Eliminate O(n²) behavior.
7489 2012-05-25  Eli Zaretskii  <eliz@gnu.org>
7491         * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
7492         platforms that don't link in fontset.c.
7494 2012-05-25  Juri Linkov  <juri@jurta.org>
7496         Use the same diff color scheme as in modern VCSes (bug#10181).
7498         * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
7499         to avoid confusion with `diff-added' that now uses green colors.
7500         (diff-removed): Use shades of red.
7501         (diff-added): Use shades of green.
7502         (diff-changed): Leave just the yellow color.
7503         (diff-use-changed-face): New variable.
7504         (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
7505         how to highlight context diff changes.
7506         (diff-refine-change): Use shades of yellow.
7507         (diff-refine-removed): New face that uses shades of red.
7508         (diff-refine-added): New face that uses shades of green.
7509         (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
7510         `diff-refine-removed' in the call to `smerge-refine-subst'
7511         depending on the value of `diff-use-changed-face'.
7513         * vc/smerge-mode.el (smerge-mine): Use shades of red.
7514         (smerge-other): Use shades of green.
7515         (smerge-base): Use shades of yellow.
7516         (smerge-refined-change): Empty face.
7517         (smerge-refined-removed): New face that uses shades of red.
7518         (smerge-refined-added): New face that uses shades of green.
7519         (smerge-refine-subst): Rename arg `props' to `props-c'.  Add new
7520         args `props-r' and `props-a', and use them.  Doc fix.
7521         (smerge-refine): Evaluate `smerge-use-changed-face' and depending
7522         on its value use different faces `smerge-refined-change',
7523         `smerge-refined-removed', `smerge-refined-added' in the call to
7524         `smerge-refine-subst'.
7526         * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
7527         Add face condition `min-colors 88' with shades of red.
7528         (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
7529         `min-colors 88' with shades of green.
7530         (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
7531         `min-colors 88' with shades of yellow.
7533 2012-05-24  Glenn Morris  <rgm@gnu.org>
7535         * paths.el (prune-directory-list, remote-shell-program): Move to...
7536         * files.el (prune-directory-list, remote-shell-program): ...here.
7537         For the latter, delay initialization, prefer ssh, just search PATH.
7539         * paths.el (term-file-prefix): Move to faces.el (the only user).
7540         * faces.el (term-file-prefix): Move here, make it a defcustom.
7542         * paths.el (news-directory, news-path, news-inews-program):
7543         Move to gnus/nnspool.el.
7545         * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
7547         * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
7548         * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
7549         Make the latter a defcustom, with a delayed initialization.
7551         * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
7552         These were deleted from Gnus itself late 2010.
7554 2012-05-22  Juanma Barranquero  <lekktu@gmail.com>
7556         * progmodes/which-func.el (which-func-ff-hook):
7557         Check against user-error, not error.
7559         * emacs-lisp/edebug.el (top): Do not load or set up loading of
7560         cl-specs.el, which no longer exists.
7562 2012-05-22  Glenn Morris  <rgm@gnu.org>
7564         * info.el (info-emacs-bug): New command.
7565         * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
7566         * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
7568 2012-05-21  Glenn Morris  <rgm@gnu.org>
7570         * makefile.w32-in (update-subdirs-SH):
7571         * Makefile.in (update-subdirs): Update for moved update-subdirs.
7573 2012-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7575         * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
7577         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7578         Simplify Maven regexp, and make sure the file can't start with a space
7579         (bug#11517).
7581 2012-05-21  Glenn Morris  <rgm@gnu.org>
7583         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7584         Scrap superfluous subshells.
7586 2012-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7588         * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
7589         (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
7591 2012-05-19  Jay Belanger  <jay.p.belanger@gmail.com>
7593         * calc/calc.el (calc-ensure-consistent-units): New variable.
7595         * calc/calc-units.el (math-consistent-units-p)
7596         (math-check-unit-consistency): New functions.
7597         (calc-quick-units, calc-convert-units):
7598         Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
7599         is non-nil.
7600         (calc-extract-units): Fix typo.
7602 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7604         * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
7606         * textmodes/flyspell.el: Commenting style, plus code simplifications.
7607         (flyspell-default-deplacement-commands): Don't spell check after
7608         repeated window/frame switches (e.g. triggered by mouse-movement).
7609         (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
7610         (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
7611         (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
7612         (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
7613         Remove unused vars.
7614         (flyspell-get-casechars, flyspell-get-not-casechars):
7615         Simplify; Don't bother removing a ] just to add it back.
7616         * textmodes/ispell.el (ispell-program-name): Use executable-find.
7618 2012-05-18  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
7620         * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
7621         New functions.
7622         (math-function-table): Add support for more C functions.
7624 2012-05-18  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
7626         * textmodes/flyspell.el (flyspell-check-pre-word-p)
7627         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7628         Protect delay handling for otherchars against empty otherchars.
7630 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7632         * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7633         their respective macro declarations.
7634         * skeleton.el (define-skeleton):
7635         * progmodes/compile.el (define-compilation-mode):
7636         * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7637         (define-ibuffer-filter):
7638         * emacs-lisp/generic.el (define-generic-mode):
7639         * emacs-lisp/easy-mmode.el (define-minor-mode)
7640         (define-globalized-minor-mode):
7641         * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7642         * emacs-lisp/byte-run.el (defsubst):
7643         * custom.el (deftheme): Add doc-string metadata.
7645 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7647         * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7649 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7651         * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7653         * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7654         * emacs-lisp/cl-macs.el: Idem.
7655         * emacs-lisp/cl-specs.el: Remove.
7657 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7659         Minor renaming of internal CL functions and variables.
7660         * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7661         (cl--position): Rename from cl-position.
7662         (cl--delete-duplicates): Rename from cl-delete-duplicates.
7663         * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7664         (cl--random-state): Rename from *random-state*.
7666 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7668         * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7669         parens around the arg list (bug#11499).
7671 2012-05-17  Juri Linkov  <juri@jurta.org>
7673         * isearch.el (word-search-regexp, word-search-backward)
7674         (word-search-forward, word-search-backward-lax)
7675         (word-search-forward-lax): Move functions from search.c
7676         (bug#10145, bug#11381).
7678 2012-05-16  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
7680         * textmodes/flyspell.el (flyspell-check-pre-word-p)
7681         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7682         Delay for otherchars as for normal word components.
7684 2012-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7686         * minibuffer.el (completion--sifn-requote): Fix last change.
7687         (minibuffer-local-must-match-filename-map):
7688         Move define-obsolete-variable-alias before its var.
7690 2012-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7692         * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7694         * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7695         behavior.
7696         (completion--string-equal-p): New function.
7697         (completion--twq-all): Use it to get better assertion failure data.
7699         Only handle ".." and '..' quoting in shell-mode (bug#11466).
7700         * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7701         (shell--requote-argument): New functions.
7702         (shell-completion-vars): Use them.
7703         (shell--parse-pcomplete-arguments): Rename from
7704         shell-parse-pcomplete-arguments.
7705         * comint.el (comint-word): Obey comint-file-name-quote-list.  Simplify.
7706         (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7707         Obey comint-file-name-quote-list.
7709         * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7710         (smie-indent-keyword): Use it.
7712 2012-05-14  Stefan Merten  <smerten@oekonux.de>
7714         * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7716 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7718         * net/rlogin.el (rlogin-mode-map): Fix last change.
7720 2012-05-14  Jason L. Wright  <jason.wright@inl.gov>  (tiny change)
7722         * mail/smtpmail.el (smtpmail-send-command): Send the command and
7723         the following \r\n using a single `process-send-string', since the
7724         Lotus SMTP server refuses to accept any commands if they are sent
7725         with two `process-send-string's (Bug#11444).
7727 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7729         * shell.el (shell-parse-pcomplete-arguments):
7730         Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
7732 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
7734         * image-mode.el: Fit to width/height for rotated images (Bug#11431).
7735         (image-transform-scale, image-transform-right-angle-fudge): New vars.
7736         (image-transform-width, image-transform-fit-width): New functions.
7737         (image-transform-properties): Use them.
7738         (image-transform-check-size): New function.
7739         (image-toggle-display-image): Use it (for testing).
7740         (image-transform-set-rotation): Reduce angle mod 360.
7741         Delete obsolete comment.
7743 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
7745         * image-mode.el: Fix scaling (bug#11399).
7746         (image-transform-resize): Doc fix.
7747         (image-transform-properties): Default scale is 1 and height should
7748         be an integer.
7750 2012-05-13  Johan Bockgård  <bojohan@gnu.org>
7752         * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7753         than hard-coding `car', to fix misbehavior when moving forward.
7755 2012-05-13  Chong Yidong  <cyd@gnu.org>
7757         * emacs-lisp/tabulated-list.el (tabulated-list-format)
7758         (tabulated-list-entries, tabulated-list-padding)
7759         (tabulated-list-sort-key): Make permanent-local.
7761         * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7762         (electric-buffer-list): Put electric buffer menu
7763         command descriptions in this docstring, instead of the docstring
7764         of electric-buffer-menu-mode.  Code cleanups.
7765         (electric-buffer-menu-mode): Use define-derived-mode.  Rename from
7766         Electric-buffer-menu-mode.
7767         (electric-buffer-update-highlight): Minor code cleanup.
7769 2012-05-13  Michael Albinus  <michael.albinus@gmx.de>
7771         * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
7772         (Bug#11447)
7774 2012-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7776         Move define-obsolete-variable-alias before the var's definition.
7777         * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
7778         * tooltip.el (tooltip-hook):
7779         * textmodes/reftex-toc.el (reftex-toc-map):
7780         * textmodes/reftex-sel.el (reftex-select-label-map)
7781         (reftex-select-bib-map):
7782         * textmodes/reftex-index.el (reftex-index-map)
7783         (reftex-index-phrases-map):
7784         * speedbar.el (speedbar-syntax-table, speedbar-key-map):
7785         * progmodes/meta-mode.el (meta-mode-map):
7786         * novice.el (disabled-command-hook):
7787         * loadhist.el (unload-hook-features-list):
7788         * frame.el (blink-cursor):
7789         * files.el (find-file-not-found-hooks, write-file-hooks)
7790         (write-contents-hooks):
7791         * emulation/tpu-edt.el (GOLD-map):
7792         * emacs-lock.el (emacs-lock-from-exiting):
7793         * emacs-lisp/generic.el (generic-font-lock-defaults):
7794         * emacs-lisp/chart.el (chart-map):
7795         * dos-fns.el (register-name-alist):
7796         * dired-x.el (dired-omit-files-p):
7797         * desktop.el (desktop-enable):
7798         * cus-edit.el (custom-mode-hook):
7799         * buff-menu.el (buffer-menu-mode-hook):
7800         * bookmark.el (bookmark-read-annotation-text-func)
7801         (bookmark-exit-hooks):
7802         * allout.el (allout-mode-deactivate-hook)
7803         (allout-exposure-change-hook, allout-structure-added-hook)
7804         (allout-structure-deleted-hook, allout-structure-shifted-hook):
7805         * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
7806         (dirtrack-debug): Move call to define-obsolete-variable-alias so it
7807         comes before the corresponding variable's definition.
7809 2012-05-12  Chong Yidong  <cyd@gnu.org>
7811         * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
7812         (Buffer-menu-mouse-select): Restore function (Bug#11459).
7813         (Buffer-menu-mode-map): Bind it.
7814         (Buffer-menu--pretty-name): Add a mouse-face property.
7816 2012-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7818         * progmodes/prolog.el: Use SMIE.  Cleanup regexp setup.
7819         (prolog-upper-case-string, prolog-lower-case-string)
7820         (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
7821         (prolog-use-smie, prolog-smie-grammar): New vars.
7822         (prolog-smie-forward-token, prolog-smie-backward-token)
7823         (prolog-smie-rules): New funs.
7824         (prolog-comment-indent): Remove.
7825         (prolog-mode-variables): Use default comment indentation instead.
7826         Setup SMIE.
7827         (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
7828         (prolog-mode): Don't call them any more.
7829         (prolog-electric-colon, prolog-electric-dash)
7830         (prolog-edit-menu-insert-move): Use indent-according-to-mode.
7832         * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
7834         * minibuffer.el (completion--twq-all): Again, allow case differences.
7836         * term.el: Move keymap initialization code to be more idiomatic.
7837         (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
7838         (term-terminal-menu): Move initialization into declaration.
7839         (term-escape-char): Let the user set it in her .emacs.
7841         * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
7842         Provide SMIE-based indentation (not enabled by default yet).
7843         (sh-mode-map): Don't bind electric keys.
7844         Use electric-pair-mode instead of skeleton-pair.
7845         (sh-assignment-regexp): Fit within 80 columns.
7846         (sh-indent-supported): Specify actual shell name instead of boolean.
7847         (sh--maybe-here-document): New fun, from sh-maybe-here-document.
7848         (sh-maybe-here-document): Use it.  Make obsolete.
7849         (sh-electric-here-document-mode) New minor mode.
7850         (sh-mode): Use it.  Don't set sh-indent-supported-here here.
7851         (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
7852         (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
7853         (sh-smie-rc-grammar, sh-use-smie): New vars.
7854         (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
7855         (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
7856         (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
7857         (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
7858         (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
7859         (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
7860         (sh-set-shell): Use smie-setup if requested.
7862         * term.el (term-set-escape-char): Properly set term-escape-char.
7863         See http://stackoverflow.com/questions/10524656.
7865 2012-05-10  Chong Yidong  <cyd@gnu.org>
7867         * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
7868         Use url-generic-parse-url, and handle host names and Windows
7869         filenames properly.
7870         (ffap-url-unwrap-remote): Use url-generic-parse-url.
7871         (ffap-url-unwrap-remote): Accept list values, specifying a list of
7872         URL schemes to work on.
7873         (ffap--toggle-read-only): New function.
7874         (ffap-read-only, ffap-read-only-other-window)
7875         (ffap-read-only-other-frame): Use it.
7876         (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
7877         necessary for ffap-url-unwrap-remote.
7879 2012-05-10  Dave Abrahams  <dave@boostpro.com>
7881         * cus-start.el (create-lockfiles): Add it.
7883 2012-05-09  Chong Yidong  <cyd@gnu.org>
7885         * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
7886         (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
7888 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7890         * shell.el (shell-completion-vars): Fix last change (bug#11348).
7892 2012-05-09  Chong Yidong  <cyd@gnu.org>
7894         * ansi-color.el (ansi-color-process-output): Check for validity of
7895         comint-last-output-start before using it.  This avoids a bad
7896         interaction with gdb-mi's input/output buffer.
7898 2012-05-09  Glenn Morris  <rgm@gnu.org>
7900         * files.el (dir-locals-read-from-file):
7901         Mention dir-locals in any error message.
7903 2012-05-09  Chong Yidong  <cyd@gnu.org>
7905         * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
7906         package (Bug#11410).
7908         * emacs-lisp/package.el (package-buffer-info): Avoid putting local
7909         variables into description.
7911 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7913         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
7914         shell-delimiter-argument-list (bug#11348).
7915         (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
7917 2012-05-09  Juanma Barranquero  <lekktu@gmail.com>
7919         * textmodes/rst.el: Silence byte-compiler warnings.
7920         (rst-re-alist, rst-reset-section-caches): Move around.
7921         (rst-re): Use `characterp', not `char-valid-p'.
7922         (font-lock-beg, font-lock-end): Declare.
7924         * progmodes/idlw-shell.el (specs): Remove reference to deleted
7925         variable `idlwave-shell-activate-alt-keybindings' and simplify.
7927         * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
7929 2012-05-08  Glenn Morris  <rgm@gnu.org>
7931         * files.el (auto-mode-alist): Treat ".make" like ".mk".
7933 2012-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7935         * vc/log-edit.el: Add GNU coding standards highlighting.
7936         (log-edit-font-lock-gnu-style)
7937         (log-edit-font-lock-gnu-keywords): New vars.
7938         (log-edit-font-lock-keywords): New fun.
7939         (log-edit-mode): Don't fold case in font-lock.
7940         (log-edit-font-lock-keywords): Do not assume case-folding.
7942         * imenu.el: Misc cleanup.  Make docstrings out of comments.
7943         Use lexical-binding.
7944         (imenu--index-alist, imenu--last-menubar-index-alist)
7945         (imenu-menubar-modified-tick): Use defvar-local.
7946         (imenu--split-menu): Remove unused var.
7947         (imenu--cleanup-seen): Declare as global.
7948         (imenu--cleanup): Use dolist.
7950         * subr.el (defvar-local): Add debug spec and doc-string position.
7952 2012-05-08  Glenn Morris  <rgm@gnu.org>
7954         * language/burmese.el, language/cham.el, language/czech.el:
7955         * language/english.el, language/georgian.el, language/greek.el:
7956         * language/japanese.el, language/khmer.el, language/korean.el:
7957         * language/lao.el, language/misc-lang.el, language/romanian.el:
7958         * language/sinhala.el, language/slovak.el, language/tai-viet.el:
7959         * language/thai.el, language/utf-8-lang.el:
7960         Remove no-byte-compile setting.
7962         * play/zone.el (zone-pgm-stress): Don't pollute kill-ring.  (Bug#11388)
7964 2012-05-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
7966         * progmodes/make-mode.el (makefile-browse):
7967         Remove unnecessary interactive.  (Bug#11324)
7969 2012-05-07  Glenn Morris  <rgm@gnu.org>
7971         * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
7973         * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
7975 2012-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7977         * loadup.el: Preload newcomment.el.
7978         * newcomment.el: Move autoload-only code to toplevel.
7980         * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
7981         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
7982         Handle new :right-align column property.
7983         (tabulated-list-print-col): Idem, plus use `display' text-property to
7984         try and preserve alignment for variable pitch fonts.
7986 2012-05-07  Chong Yidong  <cyd@gnu.org>
7988         * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
7989         (tabulated-list-use-header-line): New var.
7990         (tabulated-list-init-header): Use it.
7991         (tabulated-list-print-fake-header): New function.
7992         (tabulated-list-print): Use it.
7993         (tabulated-list-sort-button-map): Add non-header-line commands.
7994         (tabulated-list-init-header): Add column name property to basic
7995         labels as well.
7996         (tabulated-list-col-sort): Handle non-header-line button case.
7997         (tabulated-list--sort-by-column-name): Fix a corner case.
7999         * buff-menu.el (list-buffers--refresh):
8000         Handle Buffer-menu-use-header-line.
8002 2012-05-06  Chong Yidong  <cyd@gnu.org>
8004         * buff-menu.el: Convert to Tabulated List mode.
8005         (Buffer-menu-buffer+size-width): Make obsolete.
8006         (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
8007         (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
8008         (Buffer-menu-mode): Derive from tabulated-list-mode.  Move command
8009         documentation into docstring of buffer-menu.
8010         (Buffer-menu-toggle-files-only): Add an informative message.
8011         (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
8012         (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
8013         (Buffer-menu-unmark, Buffer-menu-backup-unmark)
8014         (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
8015         (Buffer-menu-execute, Buffer-menu-select)
8016         (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
8017         (Buffer-menu-bury): Use Tabulated List machinery.
8018         (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
8019         (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
8020         Delete.
8021         (list-buffers--refresh): New function.
8022         (list-buffers-noselect): Use it.
8023         (tabulated-list-entry-size->, Buffer-menu--pretty-name)
8024         (Buffer-menu--pretty-file-name): New helper functions.
8026         * loadup.el: Preload tabulated-list.
8028         * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
8029         tabulated-list-sort-column.
8030         (tabulated-list-init-header): Add the initial aligning space even
8031         if tabulated-list-padding is zero.
8033 2012-05-06  Christopher Schmidt  <christopher@ch.ristopher.com>
8035         * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
8036         whose cdr is not a cons cell correctly (bug#11038).
8038 2012-05-06  Chong Yidong  <cyd@gnu.org>
8040         * emacs-lisp/tabulated-list.el (tabulated-list-format):
8041         Accept additional plist in column descriptors.
8042         (tabulated-list-init-header): Obey it.
8043         (tabulated-list-get-entry): New function.
8044         (tabulated-list-put-tag): Use it.  Use string-width instead of
8045         length.
8046         (tabulated-list--column-number): New function.
8047         (tabulated-list-print): Use it.
8048         (tabulated-list-print-col): New function.
8049         Set `tabulated-list-column-name' property on each column's text.
8050         (tabulated-list-print-entry): Use it.
8051         (tabulated-list-delete-entry, tabulated-list-set-col):
8052         New functions.
8053         (tabulated-list-sort-column): New command (Bug#11337).
8055         * buff-menu.el (list-buffers): Move C-x C-b binding from
8056         buff-menu.el to bindings.el.
8058         * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
8059         :advertised-binding feature.
8061 2012-05-06  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
8063         * progmodes/compile.el (compilation-internal-error-properties):
8064         Calculate start position correctly when end-col is set but
8065         end-line is not (Bug#11382).
8067 2012-05-06  Wolfgang Jenkner  <wjenkner@inode.at>
8069         * man.el (Man-unindent): Use text-property-default-nonsticky to
8070         prevent untabify from inheriting face properties (Bug#11408).
8072 2012-05-05  Stefan Merten  <smerten@oekonux.de>
8074         * textmodes/rst.el: Major merge with upstream development up to
8075         Docutils SVN r7399 / rst.el V1.2.1.
8077         Clarify maintainership and authors.
8079         (rst-extract-version, rst-cvs-header, rst-cvs-rev)
8080         (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
8081         (rst-official-version, rst-official-cvs-rev, rst-version)
8082         (rst-package-emacs-version-alist): New functions and variables
8083         for version information.
8085         (rst-bullets, rst-uri-schemes, rst-adornment-chars)
8086         (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
8087         (rst-mode-syntax-table, rst-mode): New and corrected functions
8088         and variables representing reStructuredText features.
8090         (rst-re): New function for reStructuredText regexes.  Use in
8091         many places.
8093         (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
8094         (rst-mode-map): Rebind keys.
8096         (rst-mode-lazy, rst-font-lock-keywords)
8097         (rst-font-lock-extend-region)
8098         (rst-font-lock-extend-region-internal)
8099         (rst-font-lock-extend-region-extend)
8100         (rst-font-lock-find-unindented-line-limit)
8101         (rst-font-lock-find-unindented-line-match)
8102         (rst-adornment-level, rst-font-lock-adornment-level)
8103         (rst-font-lock-adornment-match)
8104         (rst-font-lock-handle-adornment-pre-match-form)
8105         (rst-font-lock-handle-adornment-matcher): Major revision of
8106         font-locking.  Integrate with other code.  Use `jit-lock-mode'.
8108         (rst-preferred-adornments, rst-adjust-hook)
8109         (rst-new-adornment-down, rst-preferred-bullets)
8110         (rst-preferred-bullets, rst-indent, rst-indent-width)
8111         (rst-indent-field, rst-indent-literal-normal)
8112         (rst-indent-literal-minimized, rst-indent-comment): Change,
8113         extend and improve customization.
8115         (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
8116         (rst-normalize-cursor-position, rst-get-decoration)
8117         (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
8118         (rst-rstrip, rst-toc-insert-find-delete-contents)
8119         (rst-shift-fill-region, rst-compute-bullet-tabs)
8120         (rst-debug-print-tabs, rst-debug-mark-found)
8121         (rst-shift-region-guts, rst-shift-region-right)
8122         (rst-shift-region-left, rst-use-char-classes)
8123         (rst-font-lock-keywords-function)
8124         (rst-font-lock-indentation-point)
8125         (rst-font-lock-find-unindented-line-begin)
8126         (rst-font-lock-find-unindented-line-end)
8127         (rst-font-lock-find-unindented-line)
8128         (rst-font-lock-adornment-point, rst-font-lock-level)
8129         (rst-adornment-level-alist): Remove functions and variables.
8131         (rst-compare-adornments, rst-get-adornment-match)
8132         (rst-suggest-new-adornment, rst-get-adornments-around)
8133         (rst-adornment-complete-p, rst-get-next-adornment)
8134         (rst-adjust-adornment, rst-display-adornments-hierarchy)
8135         (rst-straighten-adornments): Standardize function names to
8136         use "adornment" instead of "decoration".  Correct callers.
8137         Similar standardizing in many places.
8139         (rst-update-section, rst-adjust, rst-promote-region)
8140         (rst-enumerate-region, rst-bullet-list-region)
8141         (rst-repeat-last-character): Correct use of `interactive'.
8143         (rst-classify-adornment, rst-find-all-adornments)
8144         (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
8145         (rst-find-leftmost-column, rst-repeat-last-character):
8146         Refactor functions.
8148         (rst-find-title-line, rst-reset-section-caches)
8149         (rst-get-adornments-around, rst-adjust-adornment-work)
8150         (rst-arabic-to-roman, rst-roman-to-arabic)
8151         (rst-insert-list-pos, rst-insert-list-new-item)
8152         (rst-insert-list-continue, rst-insert-list, rst-forward-line):
8153         New functions.
8155         (rst-all-sections, rst-section-hierarchy)
8156         (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
8157         New variables.
8159         (rst-toc-return-wincfg, rst-toc-quit-window): Use window
8160         configuration instead of only buffer.  Change where necessary.
8162         (rst-line-tabs, rst-compute-tabs, rst-indent-line)
8163         (rst-shift-region, rst-adaptive-fill): New functions for
8164         indentation and filling.
8166         (rst-comment-line-break, rst-comment-indent)
8167         (rst-comment-insert-comment, rst-comment-region)
8168         (rst-uncomment-region): New functions for handling comments.
8170         (rst-compile): Quote shell arguments.
8172         (rst-compile-pdf-preview, rst-compile-slides-preview):
8173         Delete temporary files after use.
8175 2012-05-05  Glenn Morris  <rgm@gnu.org>
8177         * calendar/cal-html.el: Optionally include holidays in the output.
8178         Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
8179         (cal-html-holidays): New option.
8180         (cal-html-css-default): Add holiday entry.
8181         (holiday-in-range): Autoload it.
8182         (cal-html-htmlify-entry): Add optional class argument.
8183         (cal-html-htmlify-list): Add optional holidays argument.
8184         (cal-html-insert-agenda-days): Include holidays in the output.
8185         (cal-html-one-month): Maybe include holidays.
8187         * calendar/holidays.el (holiday-in-range):
8188         Move here from cal-tex-list-holidays.
8189         * calendar/cal-tex.el (cal-tex-list-holidays):
8190         Make it an obsolete alias for holiday-in-range.  Update all callers.
8192 2012-05-05  Chong Yidong  <cyd@gnu.org>
8194         * select.el (xselect--encode-string): Always use utf-8 for TEXT on
8195         Nextstep.
8197 2012-05-05  Ransom Williams  <auvergnerw@gmail.com>  (tiny change)
8199         * files.el (file-auto-mode-skip): New var.
8200         (set-auto-mode-1): Use it.
8202 2012-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8204         * repeat.el: Use lexical-binding.
8205         (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
8206         (repeat-undo-count): Remove.
8207         (repeat):
8208         * progmodes/octave-mod.el (octave-abbrev-start):
8209         * progmodes/f90.el (f90-abbrev-start):
8210         * face-remap.el (text-scale-adjust):
8211         * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
8213         * emacs-lisp/pcase.el (pcase--let*): New function.
8214         (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
8215         a bit more.
8216         (pcase--split-pred): Be more clever about ruling out overlap between
8217         a predicate and some constant pattern.
8218         (pcase--q1): Use `null' instead of (eq foo nil).
8220         * subr.el (setq-local, defvar-local): New macros.
8221         (kbd): Redefine as an alias.
8222         (with-selected-window): Leave unrelated frames alone.
8223         (set-temporary-overlay-map): New function.
8225 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8227         * subr.el (user-error): New function.
8228         * window.el (switch-to-buffer):
8229         * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
8230         (smerge-match-conflict):
8231         * simple.el (previous-matching-history-element)
8232         (next-matching-history-element, goto-history-element, undo-more)
8233         (undo-start):
8234         * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
8235         (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
8236         (next-file, tags-loop-scan, list-tags, complete-tag):
8237         * progmodes/compile.el (compilation-loop):
8238         * mouse.el (mouse-minibuffer-check):
8239         * man.el (Man-bgproc-sentinel, Man-goto-page):
8240         * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
8241         (Info-history-forward, Info-follow-reference, Info-menu)
8242         (Info-extract-menu-item, Info-extract-menu-counting)
8243         (Info-forward-node, Info-backward-node, Info-next-menu-item)
8244         (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
8245         (Info-next-reference, Info-prev-reference, Info-index)
8246         (Info-index-next, Info-follow-nearest-node)
8247         (Info-copy-current-node-name):
8248         * imenu.el (imenu--make-index-alist)
8249         (imenu-default-create-index-function, imenu-add-to-menubar):
8250         * files.el (basic-save-buffer, recover-file):
8251         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8252         * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
8253         (checkdoc-message-text, checkdoc-defun):
8254         * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
8255         * cus-edit.el (customize-changed-options, customize-rogue)
8256         (customize-saved, custom-variable-set, custom-variable-mark-to-save)
8257         (custom-variable-mark-to-reset-standard)
8258         (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
8259         (custom-file):
8260         * completion.el (check-completion-length):
8261         * comint.el (comint-search-arg)
8262         (comint-previous-matching-input-string-position)
8263         (comint-previous-matching-input)
8264         (comint-replace-by-expanded-history-before-point, comint-send-input)
8265         (comint-copy-old-input, comint-backward-matching-input)
8266         (comint-goto-process-mark, comint-set-process-mark):
8267         * calendar/calendar.el (calendar-cursor-to-date): Use it.
8268         * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
8270 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8272         * dabbrev.el (dabbrev--ignore-case-p): New function.
8273         (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
8274         Use it.
8276         * files.el (automount-dir-prefix): Mark as obsolete.
8278 2012-05-04  Glenn Morris  <rgm@gnu.org>
8280         * patcomp.el, play/bruce.el: Move to obsolete/.
8282 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
8284         Fix minor Y10k bugs.
8285         * arc-mode.el (archive-unixdate):
8286         * autoinsert.el (auto-insert-alist):
8287         * calc/calc-forms.el (math-this-year):
8288         * emacs-lisp/copyright.el (copyright-current-year)
8289         (copyright-update-year, copyright):
8290         * tar-mode.el (tar-clip-time-string):
8291         * time.el (display-time-update):
8292         Don't assume years have 4 digits.
8294 2012-05-04  Chong Yidong  <cyd@gnu.org>
8296         * dos-w32.el (file-name-buffer-file-type-alist)
8297         (direct-print-region-use-command-dot-com):
8298         * ffap.el (ffap-menu-regexp):
8299         * find-file.el (ff-special-constructs):
8300         * follow.el (follow-debug):
8301         * forms.el (forms--debug):
8302         * iswitchb.el (iswitchb-all-frames):
8303         * ido.el (ido-all-frames):
8304         * emacs-lisp/timer.el (timer-max-repeats):
8305         * mail/feedmail.el (feedmail-mail-send-hook)
8306         (feedmail-mail-send-hook-queued):
8307         * mail/footnote.el (footnote-signature-separator):
8308         * mail/mailabbrev.el (mail-alias-separator-string)
8309         (mail-abbrev-mode-regexp):
8310         * mail/rmail.el (rmail-speedbar-match-folder-regexp):
8311         * progmodes/idlwave.el (idlwave-libinfo-file)
8312         (idlwave-default-completion-case-is-down)
8313         (idlwave-library-routines): Convert defvars to defcustoms.
8315         * mail/rmail.el (rmail-decode-mime-charset):
8316         * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
8317         (idlwave-shell-fix-inserted-breaks)
8318         (idlwave-shell-activate-alt-keybindings)
8319         (idlwave-shell-use-breakpoint-glyph):
8320         * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
8322 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8324         * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
8326 2012-05-03  Wilson Snyder  <wsnyder@wsnyder.org>
8328         * progmodes/verilog-mode.el (font-lock-keywords):
8329         Fix mis-highligting auto.  Reported by Craig Barner.
8330         (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
8331         defines from global name space.  Reported by Dan Dever.
8332         (verilog-auto-reset, verilog-auto-reset-widths)
8333         (verilog-auto-tieoff): Support using unbased numbers for
8334         AUTORESET and AUTOTIEOFF.
8335         (verilog-submit-bug-report): Update variable list.
8336         (verilog-read-auto-params): Fix AUTOINPUT regexps containing
8337         parenthesis from not matching.  Reported by Michael Rytting.
8338         (verilog-auto-template-lint): Fix hash error when linting modules
8339         with no used templates.
8340         (verilog-warn, verilog-warn-error)
8341         (verilog-warn-fatal): When non-interactive report multiple
8342         warnings before exiting.  Suggested by Brad Dobbie.
8343         (verilog-auto-template-lint, verilog-auto-template-warn-unused)
8344         (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
8345         to report unused template errors.  Reported by Brad Dobbie.
8346         (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
8347         nets, bug438.  Reported by Vns Blore.
8348         (verilog-auto-inout-module, verilog-auto-reg)
8349         (verilog-read-decls, verilog-read-sub-decls-sig)
8350         (verilog-signals-edit-wire-reg, verilog-signals-with):
8351         Fix passing of Verilog data types in ANSI input/output ports
8352         such as "output logic" into the AUTOs.  Special case "wire" and
8353         "reg" for backwards compatibility presuming Verilog 2001.
8354         (verilog-auto-ascii-enum): Add "auto enum" as alias.
8355         (verilog-preprocess): Fix replication of preprocess output.
8356         Reported by Brad Dobbie.
8357         (verilog-auto-inst-interfaced-ports):
8358         Create verilog-auto-inst-interfaced-ports, bug429.
8359         Reported by Julian Gorfajn.
8360         (verilog-after-save-font-hook)
8361         (verilog-before-save-font-hook): New variable.
8362         (verilog-modi-cache-results, verilog-save-font-mod-hooked)
8363         (verilog-save-font-mods): Wrap disabling fontification, reported
8364         by David Rogoff.
8365         (verilog-do-indent, verilog-pretty-declarations-auto)
8366         (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
8367         Reported by Pierre-David Pfister.
8368         (verilog-set-auto-endcomments): Fix endtask auto comments outside
8369         of class declarations, bug292.  Reported by Kevin Heilman.
8370         (verilog-read-decls): Fix 'parameter type' not appearing in
8371         AUTOINSTPARAM, bug340.  Reported by Jonathan Greenlaw.
8372         (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
8373         AUTOINPUTs, bug411.  Reported by Jonathan Greenlaw.
8374         (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
8375         Reported by David Kravitz.
8377 2012-05-03  Michael McNamara  <mac@mail.brushroad.com>
8379         * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
8380         assignment with tests in ifs and for loops.
8381         (verilog-extended-complete-re, verilog-complete-reg): Change so
8382         that DPI inport functions don't look like fuction declarations.
8383         (verilog-pretty-expr): Don't line up assignment
8384         operations to the test and increment in if and for loops
8385         (verilog-extended-complete-re, verilog-complete-reg): Change so
8386         that DPI inport functions don't look like fuction declarations.
8388 2012-05-03  Kenichi Handa  <handa@m17n.org>
8390         * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
8391         decoding, and show a warning message without signaling an error
8392         (Bug#11282).
8394 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8396         * emacs-lisp/bytecomp.el
8397         (byte-compile-file-form-custom-declare-variable): Compile all elements,
8398         since cconv.el might have introduced :fun-body, internal-make-closure,
8399         and friends for bytecomp to handle (bug#11391).
8400         * custom.el (defcustom): Avoid ((λ ..) ..).
8402 2012-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8404         * subr.el (read-passwd): Better clean after ourselves (bug#11392).
8406 2012-05-02  Juanma Barranquero  <lekktu@gmail.com>
8408         * notifications.el (dbus-debug):
8409         * term/linux.el (gpm-mouse-enable):
8410         * term/screen.el (xterm-register-default-colors): Declare.
8412 2012-05-02  Chong Yidong  <cyd@gnu.org>
8414         * cus-start.el (gc-cons-percentage, exec-suffixes)
8415         (dos-display-scancodes, dos-hyper-key, dos-super-key)
8416         (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
8417         (make-cursor-line-fully-visible, void-text-area-pointer)
8418         (font-list-limit): Add customization data.
8420         * allout.el (allout-exposure-change-functions)
8421         (allout-structure-added-functions)
8422         (allout-structure-deleted-functions)
8423         (allout-structure-shifted-functions): Rename abnormal hooks from
8424         *-hook, and convert to defcustoms.
8425         (allout-after-copy-or-kill-hook, allout-post-undo-hook):
8426         Convert to defcustoms.
8427         (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
8429         * allout-widgets.el: Hook callers changed.
8431 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
8433         * mail/rmail.el (rmail-yank-current-message): Use the encoding of
8434         the yanked message in preference to the default value of
8435         buffer-file-coding-system.
8437 2012-05-02  Martin Rudalics  <rudalics@gmx.at>
8439         * window.el (display-buffer--action-function-custom-type):
8440         Fix entry.
8442 2012-05-02  Alan Mackenzie  <acm@muc.de>
8444         * progmodes/cc-defs.el (c-version): Update to 5.32.3.
8446 2012-05-01  Glenn Morris  <rgm@gnu.org>
8448         * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
8450         * eshell/esh-cmd.el (eshell-debug-command): Doc fix.  Add :set.
8452         * cus-edit.el (custom-variable-documentation): Simplify with format.
8454 2012-05-01  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
8455             Stefan Monnier  <monnier@iro.umontreal.ca>
8457         * simple.el (suggest-key-bindings, execute-extended-command):
8458         Move from keyboard.c.
8460 2012-05-01  Chong Yidong  <cyd@gnu.org>
8462         * follow.el: Eliminate advice.
8463         (set-process-filter, process-filter, sit-for): Advice deleted.
8464         (follow-mode-off-hook): Obsolete hook removed.
8465         (follow-avoid-tail-recenter-p, follow-process-filter-alist):
8466         Vars deleted.
8467         (follow-auto): Use a :set function.
8468         (follow-mode): Rewritten.  Don't advise process filters.
8469         (follow-switch-to-current-buffer-all, follow-scroll-up)
8470         (follow-scroll-down): Assume follow-mode is bound.
8471         (follow-comint-scroll-to-bottom)
8472         (follow-align-compilation-windows): New functions.
8473         (follow--window-sorter): New function.
8474         (follow-all-followers): Use it to explicitly sort windows by their
8475         positions; don't make assumptions about next-window order.
8476         (follow-windows-start-end, follow-delete-other-windows-and-split)
8477         (follow-calc-win-start): Doc fix.
8478         (follow-windows-aligned-p, follow-select-if-visible): Don't call
8479         vertical-motion unnecessarily.
8480         (follow-adjust-window): New function.
8481         (follow-post-command-hook): Use it.
8482         (follow-call-set-process-filter, follow-call-process-filter)
8483         (follow-intercept-process-output, follow-tidy-process-filter-alist)
8484         (follow-stop-intercept-process-output, follow-generic-filter):
8485         Functions deleted.
8486         (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
8487         (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
8488         New functions, replacing advice on scroll-bar-* commands.
8489         (follow-mwheel-scroll): New function (Bug#4112).
8491         * comint.el (comint-adjust-point): New function.
8492         (comint-postoutput-scroll-to-bottom): Use it.
8493         Call follow-comint-scroll-to-bottom for Follow mode buffers.
8495 2012-05-01  Glenn Morris  <rgm@gnu.org>
8497         * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
8498         * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
8499         * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
8500         * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
8501         * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
8502         Remove no-byte-compile setting.
8504 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8506         * minibuffer.el (completion-table-with-quoting): Fix compatibility
8507         all-completions code to not return a number in the last cdr.
8509 2012-04-30  Leo Liu  <sdl.web@gmail.com>
8511         * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
8512         read-only error.
8514 2012-04-29  Chong Yidong  <cyd@gnu.org>
8516         * follow.el (follow-calc-win-end): Rewrite to handle partial
8517         screen lines correctly (Bug#8390).
8518         (follow-avoid-tail-recenter): Minor cleanup.
8520 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8522         Avoid the obsolete `assoc' package.
8523         * speedbar.el (speedbar-refresh): Avoid adelete.
8524         (speedbar-file-lists): Simplify and avoid aput.
8525         * man.el (Man--sections, Man--refpages): New vars, replacing
8526         Man-sections-alist and Man-refpages-alist.
8527         (Man-build-section-alist, Man-build-references-alist):
8528         Use them; avoid aput.
8529         (Man--last-section, Man--last-refpage): New vars.
8530         (Man-follow-manual-reference): Use them.
8531         Use the `default' arg of completing-read.
8532         (Man-goto-section): Idem.  Move prompt to the `interactive' spec.
8534 2012-04-27  Chong Yidong  <cyd@gnu.org>
8536         * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
8538         * startup.el (x-apply-session-resources): New function.
8540         * term/ns-win.el (ns-initialize-window-system):
8541         * term/w32-win.el (w32-initialize-window-system):
8542         * term/x-win.el (x-initialize-window-system): Use it to properly
8543         set menu-bar-mode and other vars from X resources, even if the
8544         initial frame is not a window-system frame (Bug#2299).
8546         * subr.el (read-key): Avoid running filter function when setting
8547         up temporary tool bar entries (Bug#9922).
8549 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
8551         * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
8552         (Bug#11344)
8554 2012-04-27  Chong Yidong  <cyd@gnu.org>
8556         * select.el (xselect--encode-string): New function, split from
8557         xselect-convert-to-string.
8558         (xselect-convert-to-string): Use it.
8559         (xselect-convert-to-filename, xselect-convert-to-os)
8560         (xselect-convert-to-host, xselect-convert-to-user): Ensure that
8561         returned strings are properly encoded (Bug#11315).
8563 2012-04-27  Chong Yidong  <cyd@gnu.org>
8565         * simple.el (delete-active-region): Move to killing custom group.
8567 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
8569         * progmodes/which-func.el (which-func-current): Quote %
8570         characters for mode-line processing.
8572 2012-04-27  Chong Yidong  <cyd@gnu.org>
8574         * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
8575         reaching eob (Bug#11286).
8577 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
8579         * progmodes/gdb-mi.el (gdb-control-level): New variable.
8580         (gdb): Make it buffer-local and init to zero.
8581         (gdb-control-commands-regexp): New variable.
8582         (gdb-send): Don't wrap in "-interpreter-exec console" if
8583         gdb-control-level is positive.  Increment gdb-control-level
8584         whenever the command matches gdb-control-commands-regexp, and
8585         decrement it each time the command is "end".  (Bug#11279)
8587 2012-04-27  Martin Rudalics  <rudalics@gmx.at>
8589         * window.el (adjust-window-trailing-edge, enlarge-window)
8590         (shrink-window, window-resize):
8591         * mouse.el (mouse-drag-line): Fix resizing of minibuffer
8592         windows (Bug#11276).
8594 2012-04-27  Chong Yidong  <cyd@gnu.org>
8596         * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
8597         fix "missing prefix" warning.  All callers changed.
8599 2012-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8601         * emacs-lisp/assoc.el: Move to obsolete/.
8603 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8605         * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
8607         * term/ns-win.el (ns-define-service):
8608         * progmodes/pascal.el (pascal-goto-defun):
8609         * progmodes/js.el (js--read-tab):
8610         * progmodes/etags.el (tags-lazy-completion-table):
8611         * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
8612         * emacs-lisp/ewoc.el (ewoc--wrap):
8613         * emacs-lisp/assoc.el (aput, adelete, amake):
8614         * doc-view.el (doc-view-convert-current-doc):
8615         * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
8617 2012-04-26  Chong Yidong  <cyd@gnu.org>
8619         * image.el (image-type-from-buffer): Only return supported image
8620         type (Bug#9045).
8622         * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
8623         value, for symmetry with diff-end-of-hunk.
8624         (diff-split-hunk, diff-find-source-location)
8625         (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
8626         (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
8627         (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8628         compute the relevant hunk or file properly (Bug#6005).
8629         (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8631 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8633         * vc/vc-mtn.el:
8634         * vc/vc-hg.el:
8635         * vc/vc-git.el:
8636         * vc/vc-dir.el:
8637         * vc/vc-cvs.el:
8638         * vc/vc-bzr.el:
8639         * vc/vc-arch.el:
8640         * vc/vc.el: Replace lexical-let by lexical-binding.
8641         * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8642         * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8643         * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8645 2012-04-26  Chong Yidong  <cyd@gnu.org>
8647         * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8648         (diff-mode-shared-map): Bind it to / and [remap undo].
8650         * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8651         (ediff-window-setup-function): Use it as the default, to set up
8652         windows based on whether the current frame is graphical (Bug#2138).
8653         (ediff-choose-window-setup-function-automatically): Make obsolete.
8655         * vc/ediff-init.el: Always define ediff-pixel-width/height.
8657 2012-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8659         * ffap.el: Remove old code for obsolete package.
8660         (ffap-complete-as-file-p): Remove.
8662         Use completion-table-with-quoting for comint and pcomplete.
8663         * comint.el (comint--unquote&requote-argument)
8664         (comint--unquote-argument, comint--requote-argument): New functions.
8665         (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8666         (comint-quote-filename): Use regexp-opt-charset.
8667         (comint--common-suffix, comint--common-quoted-suffix)
8668         (comint--table-subvert): Remove.
8669         (comint-unquote-function, comint-requote-function): New vars.
8670         (comint--complete-file-name-data): Use them with
8671         completion-table-with-quoting.
8672         * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8673         * pcomplete.el (pcomplete-arg-quote-list)
8674         (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8675         (pcomplete-unquote-argument-function): Default to non-nil.
8676         (pcomplete-unquote-argument): Simplify.
8677         (pcomplete--common-quoted-suffix): Remove.
8678         (pcomplete-requote-argument-function): New var.
8679         (pcomplete--common-suffix): New function.
8680         (pcomplete-completions-at-point): Use completion-table-with-quoting
8681         and completion-table-subvert.
8683         * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8684         (minibuffer--double-dollars): Preserve properties.
8685         (completion--sifn-requote): New function.
8686         (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8688         * minibuffer.el: Add support for completion of quoted/escaped data.
8689         (completion-table-with-quoting, completion-table-subvert): New funs.
8690         (completion--twq-try, completion--twq-all): New functions.
8691         (completion--nth-completion): New function.
8692         (completion-try-completion, completion-all-completions): Use it.
8694 2012-04-25  Leo Liu  <sdl.web@gmail.com>
8696         * progmodes/python.el (python-pdbtrack-get-source-buffer):
8697         Use compilation-message if available to find real filename.
8699 2012-04-25  Chong Yidong  <cyd@gnu.org>
8701         * vc/diff-mode.el (diff-setup-whitespace): New function.
8702         (diff-mode): Use it.
8704         * vc/diff.el (diff-sentinel):
8705         * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8706         Whitespace mode variables based on diff style (Bug#8612).
8708 2012-04-25  Leo Liu  <sdl.web@gmail.com>
8710         * progmodes/python.el (python-send-region): Add suffix .py to the
8711         temp file.
8713         * files.el (auto-mode-alist): Use javascript-mode instead.
8715 2012-04-25  Alex Harsanyi  <AlexHarsanyi@gmail.com>
8717         Sync with soap-client repository.  Support SOAP simpleType (Bug#10331).
8719         * net/soap-client.el (soap-resolve-references-for-sequence-type)
8720         (soap-resolve-references-for-array-type): Hack to prevent self
8721         references, see Bug#9.
8722         (soap-parse-envelope): Report the contents of the 'detail' node
8723         when receiving a fault reply.
8724         (soap-parse-envelope): Report the contents of the entire 'detail' node.
8726         * net/soap-inspect.el (soap-sample-value-for-simple-type)
8727         (soap-inspect-simple-type): New function.
8729         * net/soap-client.el (soap-simple-type): New struct.
8730         (soap-default-xsd-types, soap-default-soapenc-types)
8731         (soap-decode-basic-type, soap-encode-basic-type):
8732         support unsignedInt and double basic types.
8733         (soap-resolve-references-for-simple-type)
8734         (soap-parse-simple-type, soap-encode-simple-type): New function.
8735         (soap-parse-schema): Parse xsd:simpleType declarations.
8737         * net/soap-client.el (soap-default-xsd-types)
8738         (soap-default-soapenc-types): Add integer, byte and anyURI types.
8739         (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8740         the local name of "soapenc:Array".
8741         (soap-decode-basic-type, soap-encode-basic-type): Support encoding
8742         decoding integer, byte and anyURI xsd types.
8744 2012-04-25  Chong Yidong  <cyd@gnu.org>
8746         * cus-edit.el (custom-buffer-create-internal): Update header text.
8748 2012-04-25  Eli Zaretskii  <eliz@gnu.org>
8750         * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8751         settings on 'system-type', not on 'window-system'.  On MS-Windows,
8752         set interactive-mode on in GDB.
8754 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8756         * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8757         (ruby-syntax-propertize-regexp): Remove.
8758         (ruby-syntax-propertize-function): Split regexp into chunks.
8759         Match following code directly.
8761 2012-04-24  Dmitry Gutov  <dgutov@yandex.ru>
8763         * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8764         (ruby-syntax-propertize-regexp): New function.
8765         (ruby-syntax-propertize-function): Use it to handle regexp not preceded
8766         by a special keyword.
8768         * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
8769         (ruby-syntax-general-delimiters-goto-beg)
8770         (ruby-syntax-propertize-general-delimiters): New functions.
8771         (ruby-syntax-propertize-function): Use them to handle GDL.
8772         (ruby-font-lock-keywords): Move old handling of GDL...
8773         (ruby-font-lock-syntactic-keywords): .. to here.
8774         (ruby-calculate-indent): Adjust indentation for GDL.
8776 2012-04-24  Michael Albinus  <michael.albinus@gmx.de>
8778         * notifications.el (top): Remove unneeded declarations.
8779         (notifications-specification-version): Change to "1.2".
8780         (notifications-interface, notifications-notify-method)
8781         (notifications-close-notification-method): Fix docstring.
8782         (notifications-get-capabilities-method): New defconst.
8783         (notifications-notify): Add :action-items, :resident and
8784         :transient hints.  Change "image_data" to "image-data" and
8785         "image_path" to "image-path".
8786         (notifications-get-capabilities): New defun.
8788 2012-04-24  Leo Liu  <sdl.web@gmail.com>
8790         * progmodes/python.el: Move hideshow setup to the end.
8792 2012-04-24  Martin Rudalics  <rudalics@gmx.at>
8794         * window.el (handle-select-window): Clear echo area since this is
8795         no more done by read_char (Bug#11304).
8797 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8799         * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
8800         and `/ M' to filter-derived-mode.
8801         * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
8802         (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8803         (ibuffer-mark-by-mode): Use default rather than initial-input.
8804         (ibuffer-filter-by-derived-mode): Autoload and require-match.
8806 2012-04-24  Ivan Andrus  <darthandrus@gmail.com>  (tiny change)
8808         * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
8809         (ibuffer-filter-by-derived-mode): New filter.
8810         * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
8812 2012-04-23  Andreas Politz  <politza@fh-trier.de>
8814         * subr.el (accept-change-group): Fix arg usage (Bug#6095).
8816 2012-04-23  Chong Yidong  <cyd@gnu.org>
8818         * cus-edit.el (customize-apropos, customize-apropos-options):
8819         Disable matching of non-option variables (Bug#11176).
8820         (customize-option, customize-option-other-window)
8821         (customize-changed-options): Doc fix.
8822         (customize-apropos-options, customize-apropos-faces)
8823         (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
8825         * apropos.el (apropos-read-pattern): Make prompt less cryptic.
8826         Fix word list splitting (Bug#11132).
8827         (apropos-symbol, apropos-keybinding, apropos-label)
8828         (apropos-property, apropos-function-button)
8829         (apropos-variable-button, apropos-misc-button): New faces.
8830         (apropos-symbol-face, apropos-keybinding-face)
8831         (apropos-label-face, apropos-property-face, apropos-match-face):
8832         Variables removed (Bug#8396).
8833         (apropos-library-button, apropos-format-plist, apropos-print)
8834         (apropos-print-doc, apropos-describe-plist): Callers changed.
8836 2012-04-23  Michael Albinus  <michael.albinus@gmx.de>
8838         * net/xesam.el (xesam-mode-map): Use let-bound map in
8839         initialization.  (Bug#11292)
8841 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8843         Preserve ispell session localwords when switching back to
8844         original buffer.
8846         * textmodes/ispell.el (ispell-buffer-session-localwords):
8847         New buffer-local variable to hold buffer session localwords.
8848         (ispell-kill-ispell): Add option 'clear to delete session
8849         localwords.
8850         (ispell-command-loop, ispell-change-dictionary)
8851         (ispell-buffer-local-words): Preserve session localwords when
8852         needed.
8854         * textmodes/flyspell.el (flyspell-process-localwords)
8855         (flyspell-do-correct): Preserve session localwords when needed.
8857 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8859         * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
8860         using obsolete `translation-table-for-input'.
8861         (ispell-word, ispell-process-line, ispell-complete-word):
8862         Use plain `insert' instead of removed `ispell-insert-word'.
8864 2012-04-22  Chong Yidong  <cyd@gnu.org>
8866         * cus-edit.el (custom-variable-menu)
8867         (custom-variable-reset-saved, custom-face-menu)
8868         (custom-face-reset-saved): If there is no saved value, make the
8869         "reset-saved" operation bring back the default (Bug#9509).
8870         (custom-face-state): Properly detect themed faces.
8872         * faces.el (face-spec-set): Stop supporting deprecated form of
8873         third arg.
8875 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
8877         Move functions from C to Lisp.  Make non-blocking method calls
8878         the default.  Implement further D-Bus standard interfaces.
8880         * net/dbus.el (dbus-message-internal): Declare function.
8881         Remove unneeded function declarations.
8882         (defvar dbus-message-type-invalid, dbus-message-type-method-call)
8883         (dbus-message-type-method-return, dbus-message-type-error)
8884         (dbus-message-type-signal): Declare variables.  Remove local
8885         definitions.
8886         (dbus-interface-dbus, dbus-interface-peer)
8887         (dbus-interface-introspectable, dbus-interface-properties)
8888         (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
8889         Adapt docstring.
8890         (dbus-interface-objectmanager): New defconst.
8891         (dbus-call-method, dbus-call-method-asynchronously)
8892         (dbus-send-signal, dbus-method-return-internal)
8893         (dbus-method-error-internal, dbus-register-service)
8894         (dbus-register-signal, dbus-register-method): New defuns, moved
8895         from dbusbind.c
8896         (dbus-call-method-handler, dbus-setenv)
8897         (dbus-get-all-managed-objects, dbus-managed-objects-handler):
8898         New defuns.
8899         (dbus-call-method-non-blocking): Make it an obsolete function.
8900         (dbus-unregister-object, dbus-unregister-service)
8901         (dbus-handle-event, dbus-register-property)
8902         (dbus-property-handler): Obey the new structure of
8903         `bus-registered-objects'.
8904         (dbus-introspect): Use `dbus-call-method'.  Use a timeout.
8905         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
8906         Use `dbus-call-method'.
8908 2012-04-22  Chong Yidong  <cyd@gnu.org>
8910         * cus-edit.el (custom-commands, custom-reset-menu)
8911         (Custom-reset-standard): Tweak labels.
8912         (custom-reset-button-menu): Change default to t.
8913         (custom-buffer-create-internal): For the custom-reset-button-menu
8914         case, put the revert button first.
8915         (custom-group-subtitle): New face.
8916         (custom-group-value-create): Align docstring to a specific column.
8918         * wid-edit.el (widget-documentation-link-add): Don't handle
8919         indentation in this function.
8920         (widget-documentation-string-indent-to): New function.
8921         (widget-documentation-string-value-create): Use it.
8923         * autorevert.el (auto-revert):
8924         * epg-config.el (epg):
8925         * ibuffer.el (ibuffer):
8926         * mpc.el (mpc):
8927         * ses.el (ses):
8928         * eshell/eshell.el (eshell):
8929         * net/ange-ftp.el (ange-ftp):
8930         * progmodes/ebnf2ps.el (postscript):
8931         * progmodes/flymake.el (flymake):
8932         * progmodes/prolog.el (prolog):
8933         * progmodes/verilog-mode.el (verilog-mode):
8934         * progmodes/which-func.el (which-func):
8935         * term/xterm.el (xterm):
8936         * textmodes/picture.el (picture):
8937         * textmodes/tildify.el (tildify):
8938         * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
8939         customization buffers.
8941 2012-04-22  Alan Mackenzie  <acm@muc.de>
8943         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8944         Adding a ) can hide the resulting (..) from searches.  Fix it.
8945         Bound the backward search to the position of the existing (.
8947 2012-04-21  Juanma Barranquero  <lekktu@gmail.com>
8949         * progmodes/verilog-mode.el (verilog-mode): Check whether
8950         which-func-modes is t before adding verilog-mode.
8951         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8953 2012-04-21  Leo Liu  <sdl.web@gmail.com>
8955         * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
8957 2012-04-21  Michael Vehrs  <Michael.Burschik@gmx.de>
8959         * woman.el: Add support for "T{ T}" tbl syntax, and fix the
8960         filling of the last column of a table (Bug#5635).
8961         (woman-find-next-control-line): New arg, specifying an additional
8962         regexp component for the control line.
8963         (woman2-roff-buffer): Use it.
8964         (woman-break-table): New function.
8965         (woman2-TS): Use it.
8967 2012-04-21  Chong Yidong  <cyd@gnu.org>
8969         * woman.el (woman-set-buffer-display-table, woman-decode-region)
8970         (woman-horizontal-escapes, woman-negative-vertical-space)
8971         (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
8972         (WoMan-warn-ignored): Use ?\s instead of ?\ .
8974 2012-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
8976         * minibuffer.el (completion-file-name-table): Complete user names.
8978 2012-04-20  Leo Liu  <sdl.web@gmail.com>
8980         * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
8981         and pcase-let*.
8983 2012-04-20  Chong Yidong  <cyd@gnu.org>
8985         * server.el (server-execute): Respect initial-buffer-choice if it
8986         is a string and there are no files to open (Bug#2825).
8987         (server-create-window-system-frame, server-create-tty-frame):
8988         Don't switch buffers here.
8989         (server-process-filter): Only try to open a window system frame if
8990         compiled with graphical support (Bug#8314).
8992 2012-04-20  Dan Nicolaescu  <dann@gnu.org>
8994         * battery.el (battery-echo-area-format): Display remaining time
8995         for sysfs backend too (Bug#11269).
8996         (battery-linux-sysfs): Fix conditional for the charge.
8998 2012-04-20  Chong Yidong  <cyd@gnu.org>
9000         * progmodes/gdb-mi.el (gdb): Revert previous change.
9001         (gdb-inferior-io--init-proc): New function.
9002         (gdb-init-1): Use it.
9003         (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
9004         responsible for allocating a new pty and hooking it to gdb when
9005         the old pty gets an EIO due to process exit.
9006         (gdb-delchar-or-quit): New command.  Bind it in gdb-mi buffers.
9007         (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
9008         (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
9010 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
9012         * window.el (window-min-size, window-sizable, window-min-delta)
9013         (window-max-delta, window--resizable, window-resizable)
9014         (window-total-size, window-full-height-p, window-full-width-p)
9015         (window-in-direction, window--resize-mini-window, window-resize)
9016         (window--resize-child-windows-normal)
9017         (window--resize-child-windows, window--resize-siblings)
9018         (window--resize-this-window, adjust-window-trailing-edge)
9019         (enlarge-window, shrink-window): Doc fixes.
9021 2012-04-20  Chong Yidong  <cyd@gnu.org>
9023         * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
9024         New function to call delete-process on the gdb-inferior buffer's pty.
9025         (gdb-reset): Use it, instead of relying on kill-buffer to kill the
9026         pty process (Bug#11273).
9027         (gdb-update): New arg to suppress talking to the gdb process.
9028         (gdb-done-or-error): Use it.
9029         (gdb-stopped-functions): Rename from gdb-stopped-hooks.
9030         (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
9031         sentinel not being called.
9033         * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
9035         * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
9037 2012-04-20  Glenn Morris  <rgm@gnu.org>
9039         * net/network-stream.el (open-network-stream): Doc fix.
9041 2012-04-20  Chong Yidong  <cyd@gnu.org>
9043         * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
9045 2012-04-20  Alan Mackenzie  <acm@muc.de>
9047         Ensure searching for keywords is case sensitive.
9049         * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
9050         (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
9051         (c-defun-name, c-mark-function, c-cpp-define-name)
9052         (c-comment-indent, c-scan-conditionals, c-indent-defun)
9053         (c-context-line-break): Bind case-fold-search to nil.
9055         * progmodes/cc-mode.el (c-font-lock-fontify-region):
9056         Bind case-fold-search to nil.
9058 2012-04-20  Chong Yidong  <cyd@gnu.org>
9060         * mail/sendmail.el (mail-bury): Call return action with the right
9061         Rmail buffer (Bug#11242).
9063         * server.el (server-process-filter): Handle corner case where both
9064         tty and nowait options are present (Bug#11102).
9066 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
9068         * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
9069         (top level): Put into the executable the ident-style '$Id:' tag on
9070         windows-nt as well.
9072 2012-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9074         * electric.el (electric-indent-post-self-insert-function): Check that
9075         electric-indent-mode is enabled in current buffer.
9077 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
9079         * imenu.el (imenu-progress-message): Restore; it is "used" in
9080         erc/erc-imenu.el and net/snmp-mode.el.
9082 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
9084         * avoid.el (mouse-avoidance-mode): Mark unused arg.
9085         (mouse-avoidance-nudge-mouse): Remove unused binding.
9087         * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
9089         * descr-text.el (describe-char):
9090         * progmodes/python.el (python-describe-symbol):
9091         Don't call `toggle-read-only', set `buffer-read-only'.
9093         * imenu.el (imenu-default-goto-function): Mark unused args.
9094         (imenu-progress-message): Remove obsolete macro; all callers changed.
9096         * subr.el (keymap-canonicalize): Remove unused binding.
9097         (read-passwd): Mark unused arg.
9099         * tutorial.el (tutorial--display-changes): Remove unused binding.
9100         (tutorial--save-tutorial-to): Remove unused variable.
9102         * emacs-lisp/package.el (define-package, package-menu-mark-delete)
9103         (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
9104         (package-generate-autoloads, package-menu--generate)
9105         (package-menu--find-upgrades): Remove unused bindings.
9107         * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
9108         (cua-restrict-prefix-rectangle): Doc fixes.  Remove unused bindings.
9109         (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
9110         (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
9111         (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
9112         (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
9113         (cua--rectangle-aux-replace, cua--left-fill-rectangle)
9114         (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
9115         (cua-delete-char-rectangle): Mark unused args.
9116         (cua-align-rectangle): Remove unused binding.
9118         * mail/rmail.el (compilation--message->loc)
9119         (epa--find-coding-system-for-mime-charset): Declare.
9121         * net/dbus.el (dbus-register-service): Declare.
9122         (dbus-name-owner-changed-handler): Remove unused binding.
9124         * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
9125         (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
9126         (nxml-scan-backward-within): Mark unused arg.
9127         (nxml-dynamic-markup-word): Remove unused binding.
9129         * mouse.el (mouse-menu-major-mode-map):
9130         * emacs-lisp/authors.el (authors-scan-change-log)
9131         (authors-add-to-author-list):
9132         * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
9133         * emacs-lisp/smie.el (smie-auto-fill):
9134         * mail/sendmail.el (mail-bury):
9135         * mail/unrmail.el (unrmail):
9136         * net/tls.el (open-tls-stream):
9137         * textmodes/picture.el (picture-mouse-set-point):
9138         Remove unused bindings.
9140 2012-04-19  Michael Albinus  <michael.albinus@gmx.de>
9142         * net/tramp.el (tramp-action-password): Let-bind
9143         `enable-recursive-minibuffers' to t.
9145 2012-04-18  Sam Steingold  <sds@gnu.org>
9147         * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
9148         instead of 'string to accommodate values like [f11].
9149         Always use `vconcat' instead of `concat' on it, like in `gud-def'.
9150         * progmodes/gdb-mi.el: Likewise.
9152 2012-04-18  Leo Liu  <sdl.web@gmail.com>
9154         * abbrev.el (edit-abbrevs): Move point to the abbrev table of
9155         current buffer.
9156         (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
9157         LOCAL is nil.
9159 2012-04-18  Chong Yidong  <cyd@gnu.org>
9161         * simple.el (line-move): Use forward-line if in batch mode
9162         (Bug#11053).
9164 2012-04-18  Christopher Schmidt  <christopher@ch.ristopher.com>
9166         * files.el (after-find-file): Do not try to add a final newline if
9167         the buffer is read-only (Bug#11156).
9169 2012-04-17  Richard Stallman  <rms@gnu.org>
9171         * mail/rmail.el (rmail-start-mail):
9172         Pass (rmail-mail-return...) for the return-action.
9173         Pass (rmail-yank-current-message...) for the yank-action.
9174         (rmail-yank-current-message): New function.
9175         (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
9176         (rmail-reply): Likewise.
9177         (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
9179         * mail/sendmail.el (mail-bury): Choose the first rmail-mode
9180         buffer, not the last.  Reject temp buffers.  Use the rmail-mode
9181         buffer, not newbuf.
9183 2012-04-17  Juanma Barranquero  <lekktu@gmail.com>
9185         * server.el (server-ensure-safe-dir): Simplify.
9187 2012-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9189         * emacs-lisp/smie.el: Provide smarter auto-filling.
9190         (smie-auto-fill): New function.
9191         (smie-setup): Use it.
9193         * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
9195 2012-04-17  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
9197         * newcomment.el (comment-inline-offset): New custom var (bug#11090).
9198         (comment-indent): Use it.
9200 2012-04-17  Vincent Belaïche  <vincentb1@users.sourceforge.net>
9202         * ses.el: The overall change is to add cell renaming, that is
9203         setting fancy names for cell symbols other than name matching
9204         "\\`[A-Z]+[0-9]+\\'" regexp .
9205         (ses-localvars): Add ses--renamed-cell-symb-list.
9206         (ses-create-cell-variable): New defun.
9207         (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
9208         (ses-relocate-formula): Relocate formulas only for cells the
9209         symbols of which are not renamed, i.e. symbols whose names do not
9210         match regexp "\\`[A-Z]+[0-9]+\\'".
9211         (ses-relocate-all): Relocate values only for cells the symbols of
9212         which are not renamed.
9213         (ses-load): Create cells variables as the (ses-cell ...) are read,
9214         in order to check row col consistency with cell symbol name only
9215         for cells that are not renamed.
9216         (ses-replace-name-in-formula): New defun.
9217         (ses-rename-cell): New defun.
9219 2012-04-17  Peter Oliver  <bzr@mavit.org.uk>  (tiny change)
9221         * progmodes/perl-mode.el (perl-indent-parens-as-block):
9222         New option (bug#11118).
9223         (perl-calculate-indent): Respect it.
9225 2012-04-17  Glenn Morris  <rgm@gnu.org>
9227         * dired-aux.el (dired-mark-read-string): Doc fix.
9229 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
9231         * dired-aux.el (dired-mark-read-string): Offer optional completion.
9232         (dired-do-chxxx): Complete chown, chgrp over users, groups.  (Bug#7900)
9234 2012-04-17  Glenn Morris  <rgm@gnu.org>
9236         * mouse.el (mouse-drag-track):
9237         * speedbar.el (speedbar-frame-mode):
9238         Use auto-hscroll-mode rather than the alias automatic-hscrolling.
9240 2012-04-16  Leo Liu  <sdl.web@gmail.com>
9242         * progmodes/python.el: Trivial cleanup.
9244 2012-04-16  Glenn Morris  <rgm@gnu.org>
9246         * vc/vc.el (vc-string-prefix-p):
9247         * vc/pcvs-util.el (cvs-string-prefix-p):
9248         * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
9249         * mpc.el (mpc-string-prefix-p):
9250         Make all of these into obsolete aliases for string-prefix-p.
9251         Update callers.
9252         * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
9254         * textmodes/two-column.el: Move custom options to the start.
9255         (frame-width): Remove compat definition.
9256         (2C-associate-buffer, 2C-dissociate):
9257         Use with-current-buffer rather than save-excursion.
9258         (2C-dissociate): Force a mode-line update.
9259         (2C-autoscroll): Use ignore-errors.
9261         * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
9262         Autoload trivia.
9264         * emacs-lisp/cl-extra.el (*random-state*):
9265         Remove unnecessary declaration.
9267         * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
9269         * play/cookie1.el (cookie-snarf):
9270         Give an explicit error if input file cannot be read.
9272         * play/yow.el (yow-file): Use expand-file-name rather than concat.
9274         * progmodes/perl-mode.el (c-macro-expand):
9275         Remove unnecessary autoload (it is in loaddefs.el).
9277         * textmodes/picture.el (picture-desired-column)
9278         (picture-update-desired-column): Convert comments to doc-strings.
9279         (picture-substitute): Remove function.
9280         (picture-mode-map): Initialize in the defvar.
9282         * woman.el: Remove eval-after-load for tar-mode.
9283         * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
9284         (woman-tar-extract-file): Autoload it.
9286         * frame.el (automatic-hscrolling): Make this alias obsolete.
9288 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
9290         * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
9291         `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
9292         (ispell-dictionary-base-alist): Revert to original XEmacs
9293         friendly version for default.  [:alpha:] will be added in
9294         `ispell-set-spellchecker-params' if needed.
9296 2012-04-16  Chong Yidong  <cyd@gnu.org>
9298         * image.el (imagemagick--file-regexp): New variable.
9299         (imagemagick-register-types): Use it.
9300         (imagemagick-types-inhibit): Add :set function.  Allow new value
9301         of t to inhibit all types.
9303         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
9304         so we can preload it.
9306         * loadup.el (fboundp): Preload regexp-opt, needed by
9307         imagemagick-register-types.
9309 2012-04-15  Chong Yidong  <cyd@gnu.org>
9311         * frame.el (scrolling): Remove nearly unused customization group.
9313         * scroll-all.el (scroll-all-mode): Move to windows group.
9315 2012-04-15  Chong Yidong  <cyd@gnu.org>
9317         * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
9319 2012-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9321         Avoid the use of ((lambda ...) ...) in lexical-binding code.
9322         * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
9324 2012-04-15  Glenn Morris  <rgm@gnu.org>
9326         * simple.el (process-file-side-effects): Doc fix.
9328 2012-04-15  Glenn Morris  <rgm@gnu.org>
9330         * international/mule-cmds.el (set-language-environment): Doc fix.
9332 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
9334         * server.el (server-auth-key, server-generate-key): Doc fixes.
9335         (server-get-auth-key): Doc fix.  Use `string-match-p'.
9336         (server-start): Reflow docstring.
9338 2012-04-14  Lars Ingebrigtsen  <larsi@gnus.org>
9340         * server.el (server-generate-key): `called-interactively-p'
9341         requires a parameter.
9343 2012-04-14  Michal Nazarewicz  <mina86@mina86.com>
9345         * server.el (server-auth-key): New variable.
9346         (server-generate-key, server-get-auth-key): New function.
9347         (server-start): Use the new variable and functions to allow
9348         setting a permanent server key (bug#9423).
9350 2012-04-14  Leo Liu  <sdl.web@gmail.com>
9352         * vc/diff-mode.el (diff-file-prev/next): Fix typo.
9354 2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
9356         Spelling fixes.
9357         * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
9358         Emacs uses American spelling.
9360 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
9362         * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
9363         (emacs-lock--exit-locked-buffer): Return the locked buffer.  Doc fix.
9364         (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
9365         (emacs-lock--kill-buffer-query-functions): Run new hook.  (Bug#11017)
9367 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9369         * progmodes/which-func.el (which-func-modes): Change default.
9371 2012-04-14  Kim F. Storm  <storm@cua.dk>
9373         * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
9374         exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
9376 2012-04-14  Chong Yidong  <cyd@gnu.org>
9378         * custom.el (custom-theme-set-variables): Doc fix.
9380 2012-04-14  Glenn Morris  <rgm@gnu.org>
9382         * international/mule.el (set-auto-coding-for-load): Doc fix.
9384 2012-04-14  Alan Mackenzie  <acm@muc.de>
9386         * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
9387         imenu work again for Objective C Mode.  Correct the *-index values,
9388         these having been disturbed by a previous change in 2011-08.
9390         * progmodes/cc-engine.el (c-before-change-check-<>-operators):
9391         Correct two search limits.
9393 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9395         * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
9397 2012-04-14  Andreas Schwab  <schwab@linux-m68k.org>
9399         * international/characters.el: Fix sorting.
9401 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
9403         * international/characters.el: Add more missing Latin case pairs.
9405 2012-04-14  Glenn Morris  <rgm@gnu.org>
9407         * files.el (dir-locals-set-class-variables): Doc fix.
9409 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
9411         * international/characters.el: Add set-case-syntax-pair call for
9412         LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
9413         counterpart.  (Bug#11209)
9415         * simple.el (shell-command-on-region): Doc fix.  (Bug#11208)
9417 2012-04-14  Glenn Morris  <rgm@gnu.org>
9419         * calendar/holidays.el (calendar-check-holidays): Doc fix.
9421 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
9423         * textmodes/ispell.el (ispell-dictionary-base-alist):
9424         Add data for Hebrew.
9426 2012-04-14  Chong Yidong  <cyd@gnu.org>
9428         * net/rcirc.el (rcirc-cmd-quit):
9429         Revert 2012-03-18 change (Bug#11192).
9431 2012-04-14  Glenn Morris  <rgm@gnu.org>
9433         * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
9435 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
9437         * minibuffer.el (completion-in-region-mode-map):
9438         Bind completion-help-at-point to M-? rather than ?.  (Bug#11182)
9440 2012-04-13  Vivek Dasmohapatra  <vivek@etla.org>
9442         * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
9444 2012-04-13  Masatake YAMATO  <yamato@redhat.com>
9446         * minibuffer.el (minibuffer-local-filename-syntax): New variable
9447         to allow `C-M-f' and `C-M-b' to move to the nearest path
9448         separator (bug#9511).
9450 2012-04-13  Lars Ingebrigtsen  <larsi@gnus.org>
9452         * avoid.el: Require cl when compiling.  And also move the
9453         `provide' to the end.
9455 2012-04-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
9457         * avoid.el (mouse-avoidance-banish-position): New variable.
9458         (mouse-avoidance-banish-destination): Use it (bug#10165).
9460 2012-04-13  Leo Liu  <sdl.web@gmail.com>
9462         * progmodes/which-func.el (which-func-modes): Add objc-mode.
9464 2012-04-13  Ken Brown  <kbrown@cornell.edu>
9466         * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
9467         this is no longer needed now that cygstart understands file:// URLs.
9468         (browse-url-filename-alist): For the same reason, don't modify
9469         file:// URLs on Cygwin.
9471 2012-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9473         * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
9474         the region on shift if the binding is already shifted (bug#11221).
9476 2012-04-12  Glenn Morris  <rgm@gnu.org>
9478         * mail/mailpost.el: Move to obsolete/.
9480 2012-04-12  Drew Adams  <drew.adams@oracle.com>
9482         * imenu.el (imenu--generic-function): Ignore invisible definitions
9483         (bug#10123).
9485 2012-04-12  Vivek Dasmohapatra  <vivek@etla.org>
9487         * hexl.el (hexl-bits): New variable.
9488         (hexl-options): Mention the variable in the doc string.
9489         (hexl-rulerise, hexl-line-displen): New functions.
9490         (hexl-mode): Mention the new variable.
9491         (hexl-mode, hexl-current-address, hexl-current-address):
9492         Use the displen.
9493         (hexl-ascii-start-column): New function.
9494         (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
9495         (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
9497 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
9499         * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
9500         '("-i" ENCODING), in 2 separate command-line arguments, to specify
9501         the encoding, as expected by hunspell.
9503 2012-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9505         * battery.el (battery--linux-sysfs-regexp): New const.
9506         (battery-status-function): Use it.  Remove yeeloong special case.
9507         (battery-yeeloong-sysfs): Remove.
9508         (battery-echo-area-format): Remove yeeloong special case.
9510 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9512         * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
9513         Reported by Noah Friedman.
9515         * subr.el (read-passwd): Use read-string.
9517 2012-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9519         * vcursor.el (vcursor-move): Increase the priority of the overlay
9520         (bug#9663).
9522 2012-04-11  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
9524         * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
9525         (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
9527 2012-04-11  William Stevenson  <yhvh2000@gmail.com>
9529         * textmodes/artist.el (artist-mode): Convert artist-mode to use
9530         define-minor-mode (bug#10760).
9532 2012-04-11  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
9534         * progmodes/grep.el (rgrep): Tweak the find command line so
9535         that directories matching `grep-find-ignored-files' won't be
9536         pruned (bug#10351).
9538 2012-04-11  Chong Yidong  <cyd@gnu.org>
9540         * startup.el (command-line): Remove support for long-obsolete
9541         variable font-lock-face-attributes.
9543 2012-04-11  Glenn Morris  <rgm@gnu.org>
9545         * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
9547 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9549         * window.el (window--state-get-1): Obey window-point-insertion-type.
9551 2012-04-11  Lennart Borgman  <lennart.borgman@gmail.com>
9553         * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
9554         to previous function when point is on the first character of a
9555         function.  Take care of that in `narrow-to-defun' (bug#6157).
9557 2012-04-11  Glenn Morris  <rgm@gnu.org>
9559         * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
9560         not just file-errors.
9562         * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
9563         (vc-bzr-sha1): Use internal sha1.
9565 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9567         * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
9569 2012-04-10  Sébastien Gross  <seb@chezwam.org>  (tiny change)
9571         * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
9572         that start in the middle of the line (bug#10496).
9574 2012-04-10  Dan Nicolaescu  <dann@gnu.org>
9576         * battery.el (battery-linux-proc-acpi): Only one battery is
9577         discharged at a time, but that seems to confuse battery.el when
9578         computing `rate-type' for the battery not being discharged
9579         (bug#10332).
9581 2012-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9583         * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
9585         * international/quail.el: Use dolist and simplify.
9586         (quail-define-package, quail-update-keyboard-layout)
9587         (quail-define-rules): Use dolist.
9588         (quail-insert-kbd-layout, quail-get-translation): CSE.
9590         * tmm.el: Use dolist, remove left over hook.
9591         (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
9592         Use dolist.
9593         (calendar-load-hook): Don't mess with it.
9595         * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
9596         Use derived-mode-p.  Run the diff asynchronously.
9598 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9600         * obsolete/mouse-sel.el: Add an Obsolete-since header.
9602 2012-04-10  Juanma Barranquero  <lekktu@gmail.com>
9604         * misc.el: Display absolute path of loaded DLLs (bug#10424).
9605         (list-dynamic-libraries--loaded): New function.
9606         (list-dynamic-libraries--refresh): Use it.
9608 2012-04-10  Nathan Weizenbaum  <nweiz@google.com>
9610         * progmodes/python.el (python-fill-paragraph):
9611         Make python-fill-region in a multiline string work when font-lock is
9612         disabled (bug#7018).
9614 2012-04-10  Laimonas Vėbra  <laimonas.vebra@gmail.com>  (tiny change)
9616         * language/european.el (cp775): Add oem/legacy (en)coding on
9617         DOS/MS Windows for the Baltic languages.  There are still plenty
9618         of texts written in this encoding/codepage (bug#6519).
9620 2012-04-10  Glenn Morris  <rgm@gnu.org>
9622         * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
9623         Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
9625 2012-04-10  Florian Adamsky  <florian@adamsky.it>  (tiny change)
9627         * recentf.el (recentf-dialog-mode-map): Add two keybindings for
9628         next-line "n" and previous-line "p" in order to make recentf more
9629         consistent with ibuffer, dired or org-mode (bug#9387).
9631 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9633         * image.el (put-image): Return the overlay created instead of the
9634         optional input string (bug#7834).  Note that this may break code
9635         that is (for some reason or other) depending on `put-image'
9636         returning the string.
9638         * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9640         * simple.el (zap-to-char): Allow zapping using input methods
9641         (bug#1580).
9643         * textmodes/fill.el (fill-region): Leave point and mark where they
9644         were before filling (bug#5399).
9646 2012-04-09  Glenn Morris  <rgm@gnu.org>
9648         * version.el (emacs-bzr-get-version):
9649         Handle lightweight checkouts of local branches.
9651 2012-04-09  Andreas Schwab  <schwab@linux-m68k.org>
9653         * international/characters.el: Recover lost case pairs.  (Bug#11209)
9655 2012-04-09  Chong Yidong  <cyd@gnu.org>
9657         * custom.el (custom-variable-p): Return nil for non-symbol
9658         arguments instead of signaling an error.
9659         (user-variable-p): Obsolete alias for custom-variable-p.
9661         * apropos.el (apropos-variable):
9662         * files-x.el (read-file-local-variable):
9663         * simple.el (set-variable):
9664         * woman.el (woman-mini-help):
9665         * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9667 2012-04-09  Glenn Morris  <rgm@gnu.org>
9669         * startup.el (normal-top-level): Don't look for leim-list.el
9670         in places where it will not be found.  (Bug#910)
9672         * international/mule-cmds.el (set-default-coding-systems):
9673         * files.el (normal-mode):
9674         Remove guarded calls to ucs-set-table-for-input.  (Bug#9821)
9675         This function was removed with ucs-tables.el in 2008.
9677 2012-04-08  Eli Zaretskii  <eliz@gnu.org>
9679         * textmodes/ispell.el (ispell-check-version): For hunspell, set
9680         ispell-encoding8-command to "-i", without a trailing space.
9681         (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9682         separate command-line arguments, to specify the encoding, since
9683         that's how hunspell expects it.
9685 2012-04-08  Glenn Morris  <rgm@gnu.org>
9687         * loadup.el: Load bindings before cus-start.
9688         This reduces somewhat the number of "rogue" settings in emacs -Q.
9690 2012-04-07  Glenn Morris  <rgm@gnu.org>
9692         * version.el (emacs-bzr-get-version): New function.
9693         (emacs-bzr-version): New variable.
9694         * loadup.el (emacs-bzr-version): Set it.  (Bug#8054)
9695         * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9697 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
9699         * international/uni-bidi.el, international/uni-category.el:
9700         * international/uni-combining.el, international/uni-decimal.el:
9701         * international/uni-decomposition.el, international/uni-digit.el:
9702         * international/uni-lowercase.el, international/uni-mirrored.el:
9703         * international/uni-name.el, international/uni-numeric.el:
9704         * international/uni-titlecase.el, international/uni-uppercase.el:
9705         Update for Unicode 6.1.
9707 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
9709         * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9711 2012-04-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9713         * window.el (shrink-window): Mention the `window-min-height'
9714         variable in the doc string.
9716 2012-04-05  Bastien Guerry  <bzg@altern.org>
9718         * color.el (color-lighten-name): Fix typo.
9720 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9722         * server.el (server--on-display-p): New function.
9723         (server--on-display-p): Use it.
9725 2012-04-04  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
9727         * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9728         (bug#11145).
9730 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9732         * comint.el (comint--common-quoted-suffix): Check string boundary
9733         before comparing (bug#11158).
9734         * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9736 2012-04-04  Chong Yidong  <cyd@gnu.org>
9738         * minibuffer.el (completion-extra-properties): Doc fix.
9740         * subr.el (delayed-warnings-hook): Doc fix.
9742 2012-04-04  Daiki Ueno  <ueno@unixuser.org>
9744         * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9745         selection (Bug#11159).
9746         (epa-insert-keys): Inform that the default public key will be
9747         exported if no key is selected.
9749 2012-04-04  Richard Stallman  <rms@gnu.org>
9751         * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9753 2012-04-03  Chong Yidong  <cyd@gnu.org>
9755         * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9756         mail-insert-file, not its obsolete alias mail-attach-file.
9758 2012-04-03  Michael Albinus  <michael.albinus@gmx.de>
9760         * notifications.el (notifications-notify): Fix docstring.
9762 2012-04-02  Glenn Morris  <rgm@gnu.org>
9764         * emacs-lisp/authors.el (authors-aliases): Another addition.
9766 2012-04-02  Michael Albinus  <michael.albinus@gmx.de>
9768         * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
9769         `tramp-compat-call-process' instead of `tramp-local-call-process'.
9770         Reported by Magnus Henoch <magnus.henoch@gmail.com>.
9772 2012-04-01  Chong Yidong  <cyd@gnu.org>
9774         * files.el (file-in-directory-p): Rename from file-subdir-of-p.
9775         Handle root directory properly.
9776         (copy-directory): Caller changed.
9778         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9779         * net/tramp.el (tramp-file-name-for-operation): Callers changed.
9781 2012-03-31  Glenn Morris  <rgm@gnu.org>
9783         * term/xterm.el (xterm-extra-capabilities): Doc fix.
9785         * language/indian.el ("Devanagari"): Fix typo.  (Bug#11103)
9787         * calendar/calendar.el (calendar-window-list)
9788         (calendar-hide-window): Restore.  (Bug#11140)
9789         (calendar-exit): Use calendar-window-list, calendar-hide-window again.
9791         * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
9793 2012-03-30  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
9795         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9796         Check if file is a symlink (Bug#10489).
9798         * files.el (copy-directory): Likewise.
9800 2012-03-30  Chong Yidong  <cyd@gnu.org>
9802         * image.el (imagemagick-types-inhibit)
9803         (imagemagick-register-types): Doc fix.
9805 2012-03-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
9807         * textmodes/ispell.el (ispell-get-extended-character-mode):
9808         Disable extended-char-mode for hunspell.  hunspell does not support it
9809         and treats ~word as ordinary words in pipe mode.
9811 2012-03-30  Glenn Morris  <rgm@gnu.org>
9813         * tutorial.el (help-with-tutorial): Ensure local variables don't
9814         happen to make the buffer read-only.  (Bug#11127)
9816 2012-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9818         * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
9819         (perl-calculate-indent): Return `noindent' in strings.
9821 2012-03-28  Sam Steingold  <sds@gnu.org>
9823         * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
9824         instead of the broken adhockery which does not prevent calendar
9825         buffers from being displayed at random after exit.
9826         (calendar-window-list, calendar-hide-window): Remove the broken
9827         adhockery.
9829 2012-03-28  Glenn Morris  <rgm@gnu.org>
9831         * replace.el (query-replace-map): Doc fix.
9833 2012-03-28  Andreas Schwab  <schwab@linux-m68k.org>
9835         * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
9836         contents.  (Bug#11109)
9838 2012-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9840         * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
9841         (bug#11077).
9842         (avl-tree--check, avl-tree--check-node): New funs.
9844 2012-03-27  Martin Rudalics  <rudalics@gmx.at>
9846         * window.el (switch-to-visible-buffer): New option.
9847         (switch-to-prev-buffer, switch-to-next-buffer):
9848         Observe switch-to-visible-buffer.  Make sure that checking for a window
9849         showing a buffer already is done on the same frame.
9851 2012-03-27  Glenn Morris  <rgm@gnu.org>
9853         * startup.el (mail-host-address): Doc fix.
9855 2012-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9857         * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
9858         than 197 variables.
9860 2012-03-26  Ami Fischman  <ami@fischman.org>
9862         * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
9864 2012-03-26  Glenn Morris  <rgm@gnu.org>
9866         * files.el (save-buffers-kill-emacs): Doc fix.
9868         * startup.el (normal-top-level, command-line, command-line-1):
9869         Give them doc strings.
9871 2012-03-25  Eli Zaretskii  <eliz@gnu.org>
9873         * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
9874         of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
9876 2012-03-25  Chong Yidong  <cyd@gnu.org>
9878         * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
9879         theme if it was previously enabled before (Bug#11031).
9881         * cus-theme.el (custom-theme-write-faces): Retrieve current face
9882         spec with custom-face-get-current-spec if its :shown-value is not
9883         determined yet (Bug#9337).
9884         (customize-create-theme, custom-theme-revert): Doc fixes.
9886         * button.el (button-at): Minor addition to docstring.
9888 2012-03-24  Simon Leinen  <simon.leinen@gmail.com>
9890         * vc/vc.el (vc-merge): Fix a prompt.
9892 2012-03-24  Chong Yidong  <cyd@gnu.org>
9894         * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
9895         point (Bug#9623).
9897         * button.el (button-at): Minor addition to docstring.
9899 2012-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9901         * newcomment.el (comment-choose-indent): No space after BOL.
9903 2012-03-22  Sam Steingold  <sds@gnu.org>
9905         * window.el (switch-to-prev-buffer): Revert last patch because the
9906         bug turned out to be an advertised feature (Elisp manual 28.14).
9908 2012-03-22  Glenn Morris  <rgm@gnu.org>
9910         * vc/vc-bzr.el (vc-bzr-status-switches): New option.  (Bug#6724)
9911         (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
9913 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9915         * net/network-stream.el (network-stream-open-starttls): Make error
9916         message under Windows be less misleading.
9918 2012-03-22  Liang Wang  <netcasper@gmail.com>  (tiny change)
9920         * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
9921         understands (bug#9942).
9923 2012-03-22  Chong Yidong  <cyd@gnu.org>
9925         * simple.el (end-of-visible-line): Handle return value of
9926         next-single-property-change properly (Bug#9371).
9928 2012-03-22  Kenichi Handa  <handa@m17n.org>
9930         * international/quail.el (quail-insert-kbd-layout): Fix previous
9931         change.  To avoid unwanted bidi reordering, use
9932         bidi-string-mark-left-to-right instead of inserting LRO and PDF.
9934 2012-03-21  Dmitry Gutov  <dgutov@yandex.ru>
9936         * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
9937         (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
9938         (ruby-beginning-of-indent): Be more careful with the difference
9939         between word-boundary and symbol boundary.
9940         (ruby-mode-syntax-table): Make : a symbol constituent.
9942 2012-03-21  Andreas Politz  <politza@fh-trier.de>
9944         * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
9946 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9948         * progmodes/etags.el (tags-completion-at-point-function):
9949         Improve last fix.
9951         * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
9953 2012-03-21  Sam Steingold  <sds@gnu.org>
9955         * progmodes/etags.el (tags-completion-at-point-function):
9956         Avoid the error when point is inside the pattern.
9958 2012-03-21  John Yates  <john@yates-sheets.org>  (tiny change)
9960         * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
9961         line (Bug#10855).
9963 2012-03-21  Drew Adams  <drew.adams@oracle.com>
9965         * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
9967 2012-03-21  Anmol Khirbat  <anmol@khirbat.net>  (tiny change)
9969         * ido.el (ido-set-current-directory, ido-read-internal)
9970         (ido-choose-completion-string, ido-completion-help): Handle nil
9971         value of ido-completion-buffer (Bug#11008).
9973 2012-03-21  Sam Steingold  <sds@gnu.org>
9975         * window.el (switch-to-prev-buffer): Do not switch to a visible
9976         window previous buffer, just like with the frame previous buffers.
9978 2012-03-21  Chong Yidong  <cyd@gnu.org>
9980         * faces.el (make-face, make-empty-face, copy-face):
9981         * face-remap.el (face-remap-add-relative, face-remap-set-base):
9982         Doc fixes.
9984 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9986         * wid-edit.el (widget-complete-field): Remove (bug#11051).
9987         (widget-complete): Remove broken use of it.
9989 2012-03-20  Chong Yidong  <cyd@gnu.org>
9991         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9992         Use string-width and truncate-string-width to handle arbitrary
9993         characters.
9995 2012-03-20  Tassilo Horn  <tassilo@member.fsf.org>
9997         * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
9998         to draw rectangles, not squares.  (Regression introduced by revno
9999         2011-03-02T03:48:01Z!cyd@stupidchicken.com)
10001 2012-03-18  Chong Yidong  <cyd@gnu.org>
10003         * faces.el (face-spec-reset-face): Don't call display-graphic-p if
10004         it is not yet defined (for temacs).
10006 2012-03-18  Leo Liu  <sdl.web@gmail.com>
10008         * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
10009         prefix.
10011 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
10013         * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
10014         (ispell-choices-win-default-height, ispell-silently-savep)
10015         (ispell-dictionary-alist, ispell-encoding8-command)
10016         (ispell-check-version, ispell-aspell-find-dictionary)
10017         (ispell-valid-dictionary-list, ispell-words-keyword)
10018         (ispell-get-word, ispell-internal-change-dictionary)
10019         (ispell-region, ispell-skip-region-list)
10020         (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
10021         (ispell-process-line, ispell-minor-mode, ispell-minor-check)
10022         (ispell-message-text-end, ispell-message)
10023         (ispell-buffer-local-parsing): Doc fix.
10025 2012-03-13  Jambunathan K  <kjambunathan@gmail.com>
10027         * htmlfontify.el: Add support for code block fontification for ODT
10028         export (Bug #9914).
10029         (hfy-optimisations): Define new option
10030         `body-text-only'
10031         (hfy-fontify-buffer): Honor above setting.
10032         (hfy-begin-span, hfy-end-span): New routines factored out form
10033         `hfy-fontify-buffer'.
10034         (hfy-begin-span-handler, hfy-end-span-handler): New variables
10035         that permit insertion of custom tags.
10036         (hfy-fontify-buffer): Use above handlers.
10037         (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
10038         (hfy-face-to-css): Re-defined to be a variable.
10039         (hfy-compile-stylesheet): Modify.  Allow stylesheet to be built
10040         over multiple runs.  This is made possible by having the caller let
10041         bind a special variable `hfy-user-sheet-assoc'.
10042         (htmlfontify-string): New defun.
10043         (hfy-compile-face-map): Make sure that the last char in the
10044         buffer is correctly fontified.
10045         (hfy-face-resolve-face): Whitespace only change.
10047 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
10049         * textmodes/ispell.el (ispell-get-decoded-string): Make the error
10050         message more clear.
10052 2012-03-16  Leo Liu  <sdl.web@gmail.com>
10054         * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
10056 2012-03-16  Alan Mackenzie  <acm@muc.de>
10058         Further optimise the handling of large macros.
10060         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
10061         limit to a call of `c-literal-limits'.
10062         (c-determine-+ve-limit): New function.
10063         (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
10064         (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
10065         In CASE 5B, restrict a search limit to 500.
10066         (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
10068         * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
10069         Restrict macro bounds to +-500 from after-change's BEG END.
10071 2012-03-16  Leo Liu  <sdl.web@gmail.com>
10073         * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
10075 2012-03-16  Aaron S. Hawley  <Aaron.S.Hawley@gmail.com>
10077         * tar-mode.el (tar-mode): Fix saving by conditionally undoing
10078         `special-mode' setting of `buffer-read-only'.  (Bug#11010)
10080 2012-03-16  Glenn Morris  <rgm@gnu.org>
10082         * view.el (view-buffer, view-buffer-other-window)
10083         (view-buffer-other-frame): Doc fixes re special mode-class.
10085         * subr.el (eval-after-load): If named feature is provided not from
10086         a file, run after-load forms.  (Bug#10946)
10088         * calendar/calendar.el (calendar-insert-at-column):
10089         Handle non-unit-width characters a bit better.  (Bug#10978)
10091 2012-03-15  Chong Yidong  <cyd@gnu.org>
10093         * emacs-lisp/ring.el (ring-extend): New function.
10094         (ring-insert+extend): Extend the ring correctly (Bug#11019).
10096         * comint.el (comint-read-input-ring)
10097         (comint-add-to-input-history): Grow comint-input-ring lazily.
10099 2012-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10101         * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
10102         Fix up parsing of multiline twoarg non-paired elements (bug#11014).
10104         * imenu.el: Fix multiple inheritance breakage (bug#9199).
10105         (imenu-add-to-menubar): Don't add a redundant index.
10106         (imenu-update-menubar): Handle a dynamically composed keymap.
10108 2012-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10110         * mail/sendmail.el (mail-encode-header):
10111         Bind rfc2047-encode-encoded-words to nil.
10113 2012-03-13  Glenn Morris  <rgm@gnu.org>
10115         * calendar/calendar.el (calendar-string-spread):
10116         Handle non-unit-width characters a bit better.  (Bug#10978)
10118 2012-03-13  Leo Liu  <sdl.web@gmail.com>
10120         * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
10121         directory and file as argument (Bug#10822).
10123 2012-03-13  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
10125         * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
10126         For dynamically generated code, follow $PC.
10127         (gdb-disassembly-handler-custom): Handle no function name case.
10129 2012-03-13  Tim Landscheidt  <tim@tim-landscheidt.de>  (tiny change)
10131         * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
10132         * emulation/ws-mode.el (ws-query-replace):
10133         * sort.el (sort-regexp-fields):
10134         Fix missing trailing whitespace in interactive prompts.  (Bug#11002)
10136 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10138         * dabbrev.el: Fix cycle completion order (bug#10963).
10139         (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
10140         (dabbrev-completion): Don't use an obarray; provide
10141         a cycle-sort-function.
10143 2012-03-12  Leo Liu  <sdl.web@gmail.com>
10145         * simple.el (kill-new): Use equal-including-properties for comparison.
10146         (kill-do-not-save-duplicates): Doc fix.
10148 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10150         * dabbrev.el: Fix cycle completion (bug#10963).
10151         Use lexical binding and wrap to 80 columns.
10152         (dabbrev-completion): Delay computing the list of completions.
10154 2012-03-12  Kenichi Handa  <handa@m17n.org>
10156         * international/quail.el (quail-insert-kbd-layout): Surround each
10157         row by LRO and PDF instead of inserting many LRMs.  Pad the left
10158         and right of each non-spacing marks.  Insert invisible space
10159         between lower and upper characters to prevent composition.
10161 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10163         * minibuffer.el (minibuffer-complete): Don't get confused when the
10164         function is run twice via different commands (bug#10958).
10165         (complete-with-action): Fix docstring.
10167 2012-03-12  Chong Yidong  <cyd@gnu.org>
10169         * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
10170         (nxml-completion-at-point-function): New function.
10171         (nxml-mode): Use it.
10172         (nxml-bind-meta-tab-to-complete-flag): Default to t.
10174         * emacs-lisp/package.el (package-unpack, package-unpack-single):
10175         Load generated autoloads file before byte compiling (Bug#10970).
10176         (package--make-autoloads-and-compile): New helper fun.
10178 2012-03-12  Christopher Schmidt  <christopher@ch.ristopher.com>
10180         * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
10182 2012-03-11  Michael Albinus  <michael.albinus@gmx.de>
10184         * autorevert.el (auto-revert-handler): Ensure, that
10185         file-readable-p is applied only for local files or in
10186         auto-revert-tail-mode.
10188 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
10190         * server.el (server-eval-at): Handle non-tcp connections.
10191         Decode result string.
10193         * server.el (server-msg-size): New constant.
10194         (server-reply-print): New function.
10195         (server-eval-and-print): Use it.
10196         (server-eval-at): Use server-quote-arg and server-unquote-arg.
10197         Handle -print-nonl.
10199 2012-03-11  Christopher Schmidt  <christopher@ch.ristopher.com>
10201         * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
10202         (Bug#10987).
10204 2012-03-11  Chong Yidong  <cyd@gnu.org>
10206         * simple.el (goto-line): Doc fix (Bug#9938).
10208         * subr.el (save-window-excursion): Doc fix (Bug#9979).
10210         * dabbrev.el (dabbrev--find-expansion): Update progress reporter
10211         when finished (Bug#10963).
10213 2012-03-11  Martin Rudalics  <rudalics@gmx.at>
10215         * window.el (split-window-below): Fix bug in case where
10216         split-window-keep-point is nil (Bug#10971).
10218 2012-03-11  Juri Linkov  <juri@jurta.org>
10220         * replace.el (replace-highlight): Set isearch-word to nil
10221         unconditionally.  (Bug#10887)
10223 2012-03-10  Eli Zaretskii  <eliz@gnu.org>
10225         * net/mairix.el (mairix-replace-invalid-chars): Rename from
10226         mairix-replace-illegal-chars; all callers changed.  Don't remove
10227         ^, ~, and = characters: they are meaningful in mairix search specs.
10228         (mairix-widget-create-query): Add usage information about mairix
10229         search forms: negating words, searching for substrings, etc.
10231 2012-03-10  Jae-hyeon Park  <jae-hyeon.park@desy.de>  (tiny change)
10233         * international/fontset.el (font-encoding-alist): Add an entry for
10234         ksx1001 (Bug#5667).
10236 2012-03-10  Richard Stallman  <rms@gnu.org>
10238         * mail/sendmail.el (mail-encode-header):
10239         Set rfc2047-encode-encoded-words.
10241         * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
10243         * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
10244         view buffer means not swapped.
10245         (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
10246         (rmail-write-region-annotate): Error if real text has disappeared.
10248         * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
10250 2012-03-10  Chong Yidong  <cyd@gnu.org>
10252         * emulation/cua-rect.el (cua--init-rectangles):
10253         * emulation/cua-base.el (cua--init-keymaps):
10254         Add delete-forward-char to remappings (Bug#9666).
10256 2012-03-10  Martin Rudalics  <rudalics@gmx.at>
10258         * speedbar.el (speedbar-unhighlight-one-tag-line):
10259         Avoid unhighlighting due to frame switching (Bug#10275).
10261 2012-03-10  Chong Yidong  <cyd@gnu.org>
10263         * minibuffer.el (completion-in-region, completion-help-at-point):
10264         Give the completion field overlay a high priority (Bug#6830).
10266         * dired.el (dired-goto-file): Recognize absolute file name
10267         listings (Bug#7126).
10268         (dired-goto-file-1): New helper function.
10269         (dired-toggle-read-only): Inhibit warnings.
10271 2012-03-09  Michael Albinus  <michael.albinus@gmx.de>
10273         * net/dbus.el (dbus-property-handler): Return empty array if
10274         there are no properties.
10276 2012-03-09  Leo Liu  <sdl.web@gmail.com>
10278         * savehist.el (savehist-printable): Stricter check for string
10279         value (Bug#10937).
10281 2012-03-09  Eli Zaretskii  <eliz@gnu.org>
10283         * mail/smtpmail.el (smtpmail-send-it):
10284         Bind coding-system-for-write to *-unix, so that FCC files are kept in
10285         valid mbox format.
10287 2012-03-09  Glenn Morris  <rgm@gnu.org>
10289         * files.el (dir-locals-find-file):
10290         Don't check result is regular, readable.
10291         (dir-locals-read-from-file): Demote errors.
10293 2012-03-08  Eli Zaretskii  <eliz@gnu.org>
10295         * international/quail.el (quail-insert-kbd-layout):
10296         Insert invisible LRM characters before each character in a keyboard
10297         layout cell, to prevent their reordering by bidi display engine.
10298         For details, see the discussion in
10299         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
10301 2012-03-08  Alan Mackenzie  <acm@muc.de>
10303         * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
10304         the starting position; make it extend the marked region when
10305         invoked repeatedly - all under appropriate circumstances.
10306         Fixes bugs #5525, #10906.
10308 2012-03-08  Glenn Morris  <rgm@gnu.org>
10310         * files.el (locate-dominating-file, dir-locals-find-file):
10311         Undo 2012-03-06 change.
10313 2012-03-07  Eli Zaretskii  <eliz@gnu.org>
10315         * international/quail.el (quail-help):
10316         Force bidi-paragraph-direction be left-to-right.  See discussion in
10317         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
10318         for the reason.
10320 2012-03-07  Michael Albinus  <michael.albinus@gmx.de>
10322         Avoid superfluous registering of signals.  (Bug#10807)
10324         * notifications.el (notifications-on-action-object)
10325         (notifications-on-close-object): New defvars.
10326         (notifications-on-action-signal, notifications-on-closed-signal):
10327         Unregister the signal if not needed any longer.
10328         (notifications-notify): Register `notifications-action-signal' or
10329         `notifications-closed-signal', if :on-action or :on-close has been
10330         passed as argument.
10332 2012-03-07  Chong Yidong  <cyd@gnu.org>
10334         * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
10335         non-X platforms.
10337 2012-03-06  Glenn Morris  <rgm@gnu.org>
10339         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10340         (x-disown-selection-internal, x-get-selection-internal):
10341         Doc fix (add arglist signatures).  (Bug#10783)
10343 2012-03-06  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
10345         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10346         Handle breakpoints with no "type".
10348 2012-03-06  Glenn Morris  <rgm@gnu.org>
10350         * files.el (locate-dominating-file): Add optional predicate argument.
10351         (dir-locals-find-file): Make use of above change.
10353 2012-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>
10355         * info.el (Info-insert-dir): Also try "dir.gz".
10357 2012-03-06  Glenn Morris  <rgm@gnu.org>
10359         * files.el (dir-locals-find-file):
10360         Ignore non-readable or non-regular files.  (Bug#10928)
10362         * files.el (locate-dominating-file): Doc fix.
10364 2012-03-06  Adam Spiers  <emacs@adamspiers.org>  (tiny change)
10366         * calendar/calendar.el (calendar-set-mode-line):
10367         `getenv' returns a string.  (Bug#10951)
10369 2012-03-05  Leo Liu  <sdl.web@gmail.com>
10371         * simple.el (backward-delete-char-untabify): Constrain point to
10372         field (Bug#10939).
10374         * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
10376 2012-03-05  Chong Yidong  <cyd@gnu.org>
10378         * simple.el (count-words): If called from Lisp, return the word
10379         count, for symmetry with `count-lines'.  Arglist changed.
10380         (count-words--message): Args changed.  Consolidate counting code
10381         from count-words and count-words-region.
10382         (count-words-region): Caller changed.
10383         (count-lines-region): Make it an obsolete alias.
10385 2012-03-04  Tassilo Horn  <tassilo@member.fsf.org>
10387         * saveplace.el (save-place-to-alist)
10388         (save-place-ignore-files-regexp): Allow value nil to disable this
10389         feature.
10391 2012-03-04  Chong Yidong  <cyd@gnu.org>
10393         * faces.el (face-spec-reset-face): For the default face, reset the
10394         attributes to default values (Bug#10748).
10396 2012-03-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10398         * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
10399         previous patch: Check `message-send-mail-function', and not the
10400         default function (bug#10897).
10402 2012-03-04  Michael Albinus  <michael.albinus@gmx.de>
10404         * notifications.el (notifications-on-action-signal)
10405         (notifications-on-closed-signal): Check for unique service name of
10406         incoming event.  Fix error in removing entry.
10407         (top): Register for signals with wildcard service name.
10408         (notifications-notify): Use daemon unique service name for map entries.
10410 2012-03-04  Chong Yidong  <cyd@gnu.org>
10412         * cus-start.el: Make x-select-enable-clipboard-manager customizable.
10414 2012-03-04  Glenn Morris  <rgm@gnu.org>
10416         * abbrev.el (copy-abbrev-table, abbrev-table-p)
10417         (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
10418         (expand-abbrev, define-abbrev-table): Doc fixes.
10420 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10422         * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
10423         `message-default-send-mail-function' and not `send-mail-function'
10424         when doing the prompting for `sendmail-query-once' before sending
10425         in Message buffers (bug#10897).
10427         * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
10428         This is inconsistent with all the other stream functions, which leave
10429         the setting up to the higher levels (if so wanted) (bug#10931).
10431 2012-03-02  Alan Mackenzie  <acm@muc.de>
10433         Depessimize the handling of very large macros.
10435         * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
10436         (c-macro-cache-syntactic): New variables to implement a one
10437         element macro cache.
10438         (c-invalidate-macro-cache): New function.
10439         (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
10440         Adapt to use the new cache.
10441         (c-state-safe-place): Use better the cache of safe positions.
10442         (c-state-semi-nonlit-pos-cache)
10443         (c-state-semi-nonlit-pos-cache-limit):
10444         New variables for...
10445         (c-state-semi-safe-place): New function.  Here, in a macro is "safe".
10446         (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
10447         (c-in-literal, c-literal-limits, c-determine-limit-get-base):
10448         Use c-state-semi-safe-place.
10450         * progmodes/cc-langs.el (c-get-state-before-change-functions):
10451         Add c-invalidate-macro-cache to the C, C++, Obj entries.
10453 2012-03-02  Michael Albinus  <michael.albinus@gmx.de>
10455         * jka-compr.el (jka-compr-call-process):
10456         Apply `file-accessible-directory-p' only when the default directory is
10457         not remote.
10459 2012-03-01  Michael Albinus  <michael.albinus@gmx.de>
10461         * files.el (file-equal-p): Fix docstring.  Avoid unnecessary
10462         access of FILE2, if FILE1 does not exist.
10464         * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
10465         Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
10467         * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
10468         Add "PAGER=" to `process-environment'.
10470 2012-03-01  Michael R. Mauger  <mmaug@yahoo.com>
10472         * progmodes/sql.el: Bug fix
10473         (sql-get-login-ext): Save login values in globals.
10474         (sql-get-login): Use new version of `sql-get-login-ext'.
10475         (sql-interactive-mode): Set global `sql-connection' to nil.
10476         (sql-connect): Set global values for connection.
10477         (sql-product-interactive): Save global values as buffer local.
10479 2012-02-29  Leo Liu  <sdl.web@gmail.com>
10481         * abbrev.el (define-abbrevs): Reset sys to nil.
10483 2012-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10485         * files.el (file-equal-p): Rename from `files-equal-p'.
10486         Return nil when one or both files don't exist.
10487         (file-subdir-of-p): Now only top directory must exists,
10488         return nil if it doesn't.
10489         (copy-directory): No need to test with `file-subdir-of-p' after
10490         creating dir.
10491         * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
10492         to `file-equal-p'.
10494 2012-02-28  Glenn Morris  <rgm@gnu.org>
10496         * shell.el (shell-mode):
10497         * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
10498         * play/landmark.el (landmark-font-lock-face-O):
10499         * play/handwrite.el (handwrite):
10500         * play/gomoku.el (gomoku-O):
10501         * net/browse-url.el (browse-url-browser-display):
10502         * international/mule.el (define-charset):
10503         * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
10504         * filesets.el (filesets-find-file-delay):
10505         * eshell/em-xtra.el (eshell-xtra):
10506         * eshell/em-unix.el (eshell-grep):
10507         * emulation/viper.el (viper-mode):
10508         * emacs-lisp/regexp-opt.el (regexp-opt-group):
10509         * emacs-lisp/easymenu.el (easy-menu-define):
10510         * calendar/timeclock.el (timeclock-use-display-time):
10511         * bs.el (bs-mode):
10512         * bookmark.el (bookmark-save-flag):
10513         Doc fix (standardize possessive apostrophe usage).
10515 2012-02-27  Chong Yidong  <cyd@gnu.org>
10517         * emulation/viper-cmd.el (viper-intercept-ESC-key):
10518         Fix key-binding lookup for ESC key (Bug#9146).
10520         * font-lock.el (font-lock-specified-p): Rename from
10521         font-lock-spec-present.  Callers changed.
10523 2012-02-27  Daniel Hackney  <dan@haxney.org>
10525         * emacs-lisp/package.el (package-compute-transaction):
10526         Handle holding a package version to t in package-load-list.
10528 2012-02-26  Michael Albinus  <michael.albinus@gmx.de>
10530         * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
10531         (tramp-get-inode, tramp-get-device): Use cached values.
10533 2012-02-26  Alan Mackenzie  <acm@muc.de>
10535         Check there is a font-lock specification before doing initial
10536         fontification.
10538         * font-core.el (font-lock-mode): Move the conditional from
10539         :after-hook to font-lock-initial-fontify.
10540         (font-lock-default-function): Move the check for a specification
10541         to font-lock-spec-present.
10543         * font-lock.el (font-lock-initial-fontify): Call ...
10544         (font-lock-spec-present): New function.
10546 2012-02-26  Jim Blandy  <jimb@red-bean.com>
10548         * progmodes/gdb-mi.el (gdb-mi-quote): New function.
10549         (gdb-send): Apply it to the operand of the '-interpreter-exec
10550         console' command, so that we can pass arguments with (say) quotes
10551         in them.  Store exact string sent in gdb-debug-log (Bug#10765).
10553 2012-02-26  Chong Yidong  <cyd@gnu.org>
10555         * help-fns.el (describe-function-1): Clarify description of
10556         remapping (Bug#10844).
10558         * files.el (files-equal-p): Doc fix.
10559         (file-subdir-of-p): Doc fix.  Convert loop macro to plain Lisp,
10560         and quit the loop once a mismatch is found.
10562 2012-02-25  Juanma Barranquero  <lekktu@gmail.com>
10564         * bs.el (bs--show-with-configuration): Don't throw an error
10565         if the window cannot be split; otherwise, subsequent calls to
10566         bs-show fail, restoring a stale window config.  (Bug#10882)
10568 2012-02-25  Jan Djärv  <jan.h.d@swipnet.se>
10570         * term/ns-win.el (global-map): Bind ns-drag-file to
10571         ns-find-file (Bug#5855, Bug#10050).
10573 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
10575         * calendar/parse-time.el (parse-time-string): Allow extractor to
10576         return nil.
10578 2012-02-25  Michael Albinus  <michael.albinus@gmx.de>
10580         * net/tramp.el (tramp-file-name-for-operation):
10581         Add `files-equal-p' and `file-subdir-of-p'.
10583         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
10584         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
10585         Add COPY-CONTENTS argument.
10587 2012-02-25  Chong Yidong  <cyd@gnu.org>
10589         Add custom groups for VC backends, for consistency with vc-bzr.
10591         * vc/vc-arch.el (vc-arch):
10592         * vc/vc-cvs.el (vc-cvs):
10593         * vc/vc-git.el (vc-git):
10594         * vc/vc-hg.el (vc-hg):
10595         * vc/vc-mtn.el (vc-mtn):
10596         * vc/vc-rcs.el (vc-rcs):
10597         * vc/vc-sccs.el (vc-sccs):
10598         * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
10599         All relevant defcustoms reassigned.
10601 2012-02-25  Chong Yidong  <cyd@gnu.org>
10603         * newcomment.el (comment-styles): Add autoload (Bug#10868).
10605         * term/x-win.el (x-initialize-window-system): Reduce default for
10606         x-selection-timeout to 5 seconds (Bug#8869).
10608 2012-02-24  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10610         * files.el (files-equal-p, file-subdir-of-p): New functions.
10611         (copy-directory): Error when trying to copy a directory on itself.
10612         Add missing copy-contents arg to tramp handler.
10613         * dired-aux.el (dired-copy-file-recursive): Same.
10614         (dired-create-files): Modify destination when source is equal to
10615         dest when copying files.
10616         Return also when dest is a subdir of source.  (Bug#10489)
10618 2012-02-24  Michael Albinus  <michael.albinus@gmx.de>
10620         * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
10621         (Bug#10874)
10623 2012-02-23  Alan Mackenzie  <acm@muc.de>
10625         * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
10626         parameter "after-hook:" to allow the expansion to run code after
10627         the execution of the mode hooks.
10629         * font-lock.el (font-lock-initial-fontify): New function extracted
10630         from font-lock-mode-internal.
10632         * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
10633         :after-hook.
10635 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10637         * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10638         (completion--cache-all-sorted-completions): New function.
10639         (completion-all-sorted-completions): Use it.
10640         (completion--do-completion, minibuffer-force-complete):
10641         Use it to re-instate the flush hook.
10643         * icomplete.el (icomplete-completions): Replace last fix with a better
10644         one (bug#10850).
10646 2012-02-23  Dmitry Gutov  <dgutov@yandex.ru>
10648         * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10649         when it might call us back infinitely (bug#10797).
10651 2012-02-23  Glenn Morris  <rgm@gnu.org>
10653         * minibuffer.el (completion-category-overrides): Doc fix.
10655 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10657         * minibuffer.el (completion-table-with-context): Fix inf-loop.
10658         Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10660 2012-02-23  Glenn Morris  <rgm@gnu.org>
10662         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
10663         (authors-obsolete-files-regexps, authors-ignored-files)
10664         (authors-ambiguous-files, authors-renamed-files-alist):
10665         Add more entries.
10667 2012-02-23  Juri Linkov  <juri@jurta.org>
10669         * isearch.el (isearch-occur): Sync interactive spec with occur's
10670         new feature in `occur-read-primary-args'.  Doc fix.  (Bug#10705)
10672         * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10674 2012-02-22  Juri Linkov  <juri@jurta.org>
10676         * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10677         (ucs-insert): Doc fix.  Check for hex digits in the string.
10678         Don't display `nil' in the error message.  (Bug#10857)
10680 2012-02-22  Alan Mackenzie  <acm@muc.de>
10682         * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
10684 2012-02-22  Glenn Morris  <rgm@gnu.org>
10686         * ffap.el (ffap-c-path):
10687         * man.el (Man-header-file-path): Handle multiarch.  (Bug#10702)
10689 2012-02-22  Chong Yidong  <cyd@gnu.org>
10691         * custom.el (load-theme): Doc fix.
10693 2012-02-22  Glenn Morris  <rgm@gnu.org>
10695         * dired-x.el (dired-guess-shell-alist-default):
10696         Remove escape sequences from nroff output.  (Bug#172)
10698 2012-02-21  Glenn Morris  <rgm@gnu.org>
10700         * vc/emerge.el (emerge-defvar-local):
10701         Set `permanent-local' property rather than unused `preserved'.
10703         * textmodes/picture.el (picture-delete-char): New alias.
10704         (picture-mode-map): Use it.  (Bug#10860)
10705         (picture-mode): Doc fix.
10707 2012-02-21  Juanma Barranquero  <lekktu@gmail.com>
10709         * newcomment.el (uncomment-region-default): Remove unused binding.
10711 2012-02-21  Glenn Morris  <rgm@gnu.org>
10713         * textmodes/picture.el (picture-motion, picture-motion-reverse)
10714         (picture-self-insert, picture-tab-chars): Doc fix.
10715         (picture-mode-map): Fix C-a, C-e.
10717 2012-02-20  Glenn Morris  <rgm@gnu.org>
10719         * emacs-lisp/authors.el (authors-aliases): Add another entry.
10721 2012-02-20  Leo Liu  <sdl.web@gmail.com>
10723         * icomplete.el (icomplete-completions): Check FROM arg before
10724         passing to substring (Bug#10850).
10726 2012-02-19  Chong Yidong  <cyd@gnu.org>
10728         * comint.el: Require ansi-color.
10729         (comint-output-filter-functions): Add ansi-color-process-output.
10731         * ansi-color.el: Don't set comint-output-filter-functions; it is
10732         now in the initial value defined in comint.el.
10733         (ansi-color-apply-face-function): New variable.
10734         (ansi-color-apply-on-region): Use it.
10735         (ansi-color-apply-overlay-face): New function.
10737         * shell.el (shell): No need to require ansi-color.
10738         (shell-mode): Use ansi-color-apply-face-function to highlight
10739         color escapes using font-lock-face property (Bug#10835).
10741 2012-02-19  Chong Yidong  <cyd@gnu.org>
10743         * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10744         mode-line formats (Bug#10839).
10746 2012-02-18  Glenn Morris  <rgm@gnu.org>
10748         * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10750         * mail/undigest.el (unforward-rmail-message): Doc fix.
10752         * saveplace.el (save-place-ignore-files-regexp): Add :version.
10754 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
10756         * international/characters.el (script-list): Sync with the latest
10757         Unicode Character Database.
10759 2012-02-18  Andreas Schwab  <schwab@linux-m68k.org>
10761         * international/titdic-cnv.el: Remove duplicate coding tag.
10762         * language/cham.el: Likewise.
10763         * language/tai-viet.el: Likewise.
10765 2012-02-18  Glenn Morris  <rgm@gnu.org>
10767         * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
10768         * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
10769         (calendar-bahai-all-holidays-flag, calendar-other-dates):
10770         * calendar/diary-lib.el (diary-abbreviated-year-flag):
10771         * calendar/holidays.el (holiday-bahai-holidays)
10772         (calendar-holidays, list-holidays):
10773         Use utf-8 Bahá'í in doc-strings, menus, etc.
10775 2012-02-17  Tassilo Horn  <tassilo@member.fsf.org>
10777         * saveplace.el (save-place-ignore-files-regexp): New variable
10778         allowing for excluding files from saving their location of point.
10779         The default value matches the temporary commit message editing
10780         files from Git, SVN, Bazaar, and Mercurial.
10781         (save-place-to-alist): Use it.
10783 2012-02-17  Lawrence Mitchell  <wence@gmx.li>
10784             Stefan Monnier  <monnier@iro.umontreal.ca>
10786         * newcomment.el (uncomment-region-default): Don't leave extra space
10787         when an arg is provided (bug#8150).
10789 2012-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
10791         * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
10793 2012-02-17  Glenn Morris  <rgm@gnu.org>
10795         * net/socks.el: Require network-stream.  (Bug#10599)
10797 2012-02-17  Kenichi Handa  <handa@m17n.org>
10799         * international/charprop.el:
10800         * international/uni-name.el:
10801         * international/uni-old-name.el:
10802         * international/uni-comment.el: Regenerate.
10804 2012-02-16  Glenn Morris  <rgm@gnu.org>
10806         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
10807         Interactively in calendar buffer, give an error if not on a date.
10809 2012-02-15  Glenn Morris  <rgm@gnu.org>
10811         * shell.el (shell-delimiter-argument-list):
10812         Revert 2011-02-17 change.  (Bug#8027)
10814 2012-02-15  Chong Yidong  <cyd@gnu.org>
10816         * minibuffer.el (completion-at-point-functions): Doc fix.
10818         * custom.el (defcustom): Doc fix; note use of defvar.
10820 2012-02-15  Glenn Morris  <rgm@gnu.org>
10822         * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
10823         Doc fixes.
10825 2012-02-14  Glenn Morris  <rgm@gnu.org>
10827         * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
10829 2012-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
10831         * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
10832         way the ports list is computed.
10833         (smtpmail-query-smtp-server): Prompt the user for a port number if
10834         we can't connect to any of the standard ports (bug#10810).
10836 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
10838         * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
10840 2012-02-13  Glenn Morris  <rgm@gnu.org>
10842         * minibuffer.el (read-file-name): Doc fix.  (Bug#10798)
10844 2012-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
10846         * net/gnutls.el (gnutls-trustfiles): New variable.
10847         (gnutls-negotiate): Use it.
10849 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
10851         * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
10852         does its stuff if Gnus is running.
10854 2012-02-13  Alan Mackenzie  <acm@muc.de>
10856         Fix a loop in c-set-fl-decl-start.
10858         * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
10859         c-backward-syntactic-ws actually moves backwards.
10861 2012-02-13  Leo Liu  <sdl.web@gmail.com>
10863         * net/rcirc.el (rcirc-markup-attributes): Move point to the
10864         beginning so that all \C-o chars are removed.
10866 2012-02-12  Teodor Zlatanov  <tzz@lifelogs.com>
10868         * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
10870 2012-02-12  Alan Mackenzie  <acm@muc.de>
10872         Fix infinite loop with long macros.
10873         * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
10875 2012-02-12  Chong Yidong  <cyd@gnu.org>
10877         * window.el (display-buffer): Doc fix (Bug#10785).
10879 2012-02-12  Glenn Morris  <rgm@gnu.org>
10881         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10882         (x-disown-selection-internal, x-get-selection-internal):
10883         Sync docs with the xselect.c versions.
10885         * allout-widgets.el: Add missing license notice.
10887 2012-02-11  Glenn Morris  <rgm@gnu.org>
10889         * select.el (x-get-selection-internal, x-own-selection-internal)
10890         (x-disown-selection-internal):
10891         * x-dnd.el (x-get-selection-internal): Update declarations.
10893         * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
10895         * window.el (window-sides-slots):
10896         * tool-bar.el (tool-bar-position):
10897         * term/xterm.el (xterm-extra-capabilities):
10898         * ses.el (ses-self-reference-early-detection):
10899         * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
10900         (verilog-auto-wire-type)
10901         (verilog-auto-delete-trailing-whitespace)
10902         (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
10903         (verilog-auto-tieoff-declaration):
10904         * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
10905         (sql-oracle-statement-starters, sql-oracle-scan-on):
10906         * progmodes/prolog.el (prolog-align-comments-flag)
10907         (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
10908         (prolog-left-indent-regexp, prolog-paren-indent-p)
10909         (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
10910         (prolog-types, prolog-mode-specificators)
10911         (prolog-determinism-specificators, prolog-directives)
10912         (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
10913         (prolog-electric-dot-flag)
10914         (prolog-electric-dot-full-predicate-template)
10915         (prolog-electric-underscore-flag, prolog-electric-tab-flag)
10916         (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
10917         (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
10918         (prolog-program-switches, prolog-prompt-regexp)
10919         (prolog-debug-on-string, prolog-debug-off-string)
10920         (prolog-trace-on-string, prolog-trace-off-string)
10921         (prolog-zip-on-string, prolog-zip-off-string)
10922         (prolog-use-standard-consult-compile-method-flag)
10923         (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
10924         (prolog-imenu-max-lines, prolog-info-predicate-index)
10925         (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
10926         (prolog-char-quote-workaround):
10927         * progmodes/cc-vars.el (c-defun-tactic):
10928         * net/tramp.el (tramp-encoding-command-interactive)
10929         (tramp-local-end-of-line):
10930         * net/soap-client.el (soap-client):
10931         * net/netrc.el (netrc-file):
10932         * net/gnutls.el (gnutls):
10933         * minibuffer.el (completion-category-overrides)
10934         (completion-cycle-threshold)
10935         (completion-pcm-complete-word-inserts-delimiters):
10936         * man.el (Man-name-local-regexp):
10937         * mail/feedmail.el (feedmail-display-full-frame):
10938         * international/characters.el (glyphless-char-display-control):
10939         * eshell/em-ls.el (eshell-ls-date-format):
10940         * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
10941         (lisp-lambda-list-keyword-parameter-indentation)
10942         (lisp-lambda-list-keyword-parameter-alignment):
10943         * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
10944         * dired-x.el (dired-omit-verbose):
10945         * cus-theme.el (custom-theme-allow-multiple-selections):
10946         * calc/calc.el (calc-highlight-selections-with-faces)
10947         (calc-lu-field-reference, calc-lu-power-reference)
10948         (calc-note-threshold):
10949         * battery.el (battery-mode-line-limit):
10950         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
10951         (archive-7z-update):
10952         * allout.el (allout-prefixed-keybindings)
10953         (allout-unprefixed-keybindings)
10954         (allout-inhibit-auto-fill-on-headline)
10955         (allout-flattened-numbering-abbreviation):
10956         * allout-widgets.el (allout-widgets-auto-activation)
10957         (allout-widgets-icons-dark-subdir)
10958         (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
10959         (allout-widgets-theme-dark-background)
10960         (allout-widgets-theme-light-background)
10961         (allout-widgets-item-image-properties-emacs)
10962         (allout-widgets-item-image-properties-xemacs)
10963         (allout-widgets-run-unit-tests-on-load)
10964         (allout-widgets-time-decoration-activity)
10965         (allout-widgets-hook-error-post-time)
10966         (allout-widgets-track-decoration):
10967         Add missing :version tags to new defcustoms and defgroups.
10969         * progmodes/sql.el (sql-ansi-statement-starters)
10970         (sql-oracle-statement-starters): Add custom type.
10972         * progmodes/prolog.el: Remove leading '*' from defcustom docs.
10973         (prolog-system-version): Give it a type.
10975 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
10977         * term/pc-win.el (x-select-text, x-selection-owner-p)
10978         (x-own-selection-internal, x-disown-selection-internal)
10979         (x-get-selection-internal): Sync doc strings and argument lists
10980         with xselect.c, common-win.el and x-win.el.  (Bug#10783)
10982 2012-02-11  Leo Liu  <sdl.web@gmail.com>
10984         * progmodes/python.el (python-end-of-statement): Fix infinite
10985         loop.  (Bug#10788)
10987 2012-02-10  Glenn Morris  <rgm@gnu.org>
10989         * international/mule-cmds.el (unify-8859-on-encoding-mode)
10990         (unify-8859-on-decoding-mode): Properly mark as obsolete.
10992 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
10994         * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
10995         about SMTP before checking the From header.
10997         * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
10998         into own function for reuse by emacsbug.el.
11000 2012-02-10  Leo Liu  <sdl.web@gmail.com>
11002         * subr.el (condition-case-unless-debug): Rename from
11003         condition-case-no-debug.  All callers changed.
11004         (with-demoted-errors): Fix caller.
11006         * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
11007         * nxml/rng-valid.el (rng-do-some-validation):
11008         * emacs-lisp/package.el (package-refresh-contents)
11009         (package-menu-execute):
11010         * desktop.el (desktop-create-buffer):
11011         * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
11013 2012-02-10  Glenn Morris  <rgm@gnu.org>
11015         * textmodes/bibtex.el:
11016         Add missing :version tags for new/changed defcustoms.
11018         * files.el (remote-file-name-inhibit-cache): Doc fixes.
11020 2012-02-09  Lars Ingebrigtsen  <larsi@rusty>
11022         * mail/smtpmail.el (smtpmail-user-mail-address): New function.
11023         (smtpmail-via-smtp): Use it, or fall back on the From address.
11024         (smtpmail-send-it): Ditto.
11026 2012-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
11028         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
11029         Don't fallback on byte-compile-defvar.  Optimize (defvar foo) away.
11030         (byte-compile-tmp-var): New const.
11031         (byte-compile-defvar): Use it to minimize .elc size.
11032         Just use `defvar' rather than simulate it (bug#10761).
11034 2012-02-09  Glenn Morris  <rgm@gnu.org>
11036         * files.el (rename-uniquely): Doc fix.  (Bug#3806)
11038         * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
11039         Add :version tags.
11041         * progmodes/compile.el (compilation-error-screen-columns)
11042         (compilation-first-column, compilation-filter-start): Doc fixes.
11044         * vc/log-view.el (log-view-toggle-entry-display):
11045         * vc/vc.el (vc-merge, vc-pull): Doc fixes.
11047         * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
11048         (report-emacs-bug-can-use-xdg-email):
11049         (report-emacs-bug-insert-to-mailer): Doc fixes.
11050         (report-emacs-bug): Message fix.
11052         * net/browse-url.el (browse-url-can-use-xdg-open)
11053         (browse-url-xdg-open): Doc fixes.
11055         * electric.el (electric-indent-mode, electric-pair-mode)
11056         (electric-layout-rules, electric-layout-mode): Doc fixes.
11057         (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
11059 2012-02-08  Martin Rudalics  <rudalics@gmx.at>
11061         * server.el (server-unselect-display): Don't inadvertently kill
11062         the current buffer.  (Bug#10729)
11064 2012-02-08  Glenn Morris  <rgm@gnu.org>
11066         * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
11067         (sql-list-table): Doc fixes.
11069         * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
11070         Comment out (does nothing).
11072         * completion.el (dynamic-completion-mode):
11073         * dirtrack.el (dirtrack-debug-mode):
11074         * electric.el (electric-layout-mode):
11075         * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
11076         * face-remap.el (text-scale-mode, buffer-face-mode):
11077         * iimage.el (iimage-mode):
11078         * image-mode.el (image-transform-mode):
11079         * minibuffer.el (completion-in-region-mode):
11080         * scroll-lock.el (scroll-lock-mode):
11081         * simple.el (next-error-follow-minor-mode):
11082         * tar-mode.el (tar-subfile-mode):
11083         * tooltip.el (tooltip-mode):
11084         * vcursor.el (vcursor-use-vcursor-map):
11085         * wid-browse.el (widget-minor-mode):
11086         * emulation/tpu-edt.el (tpu-edt-mode):
11087         * emulation/tpu-extras.el (tpu-cursor-free-mode):
11088         * international/iso-ascii.el (iso-ascii-mode):
11089         * language/thai-util.el (thai-word-mode):
11090         * mail/supercite.el (sc-minor-mode):
11091         * net/goto-addr.el (goto-address-mode):
11092         * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
11093         * progmodes/cwarn.el (cwarn-mode):
11094         * progmodes/flymake.el (flymake-mode):
11095         * progmodes/glasses.el (glasses-mode):
11096         * progmodes/hideshow.el (hs-minor-mode):
11097         * progmodes/pascal.el (pascal-outline-mode):
11098         * textmodes/enriched.el (enriched-mode):
11099         * vc/smerge-mode.el (smerge-mode):
11100         Doc fixes (minor mode argument).
11102 2012-02-07  Eli Zaretskii  <eliz@gnu.org>
11104         * ls-lisp.el (ls-lisp-sanitize): New function.
11105         (ls-lisp-insert-directory): Use it to fix or remove any elements
11106         in file-alist with missing attributes.  (Bug#4673)
11108 2012-02-07  Alan Mackenzie  <acm@muc.de>
11110         Fix spurious recognition of c-in-knr-argdecl.
11112         * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
11113         putative K&R region.
11115 2012-02-07  Alan Mackenzie  <acm@muc.de>
11117         * progmodes/cc-engine.el (c-forward-objc-directive):
11118         Prevent looping in "#pragma mark @implementation".
11120 2012-02-07  Michael Albinus  <michael.albinus@gmx.de>
11122         * notifications.el (notifications-on-closed-signal): Make `reason'
11123         optional.  (Bug#10744)
11125 2012-02-07  Glenn Morris  <rgm@gnu.org>
11127         * emacs-lisp/easy-mmode.el (define-minor-mode):
11128         Doc fixes for the macro and the mode it defines.
11130         * image.el (imagemagick-types-inhibit): Doc fix.
11132         * cus-start.el (imagemagick-render-type): Add it.
11134 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
11136         * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
11137         Set the default at load time, too, so that `font-lock-fontify-buffer'
11138         can be called without setting up the entire mode first.  This fixes
11139         a bug in `mm-inline-text' with C MIME parts.
11141 2012-02-06  Chong Yidong  <cyd@gnu.org>
11143         * simple.el (list-processes--refresh): Delete exited processes
11144         (Bug#8094).
11146         * comint.el (comint-next-prompt): next-single-char-property-change
11147         and prev-single-char-property-change never return nil (Bug#8657).
11149         * custom.el (defcustom): Doc fix (Bug#9711).
11151 2012-02-05  Chong Yidong  <cyd@gnu.org>
11153         * cus-edit.el (custom-variable-reset-backup): Quote the value
11154         before storing it in the customized-value property (Bug#6712).
11155         (custom-display): Add a customization type tag.
11156         (custom-buffer-create-internal): Improve tooltip message.
11158         * wid-edit.el (widget-field-value-get): New optional arg to
11159         suppress trailing whitespace truncation.
11160         (character): Use it (Bug#2689).
11162 2012-02-05  Andreas Schwab  <schwab@linux-m68k.org>
11164         * progmodes/gud.el (gud-pv): Use pv instead of pv1.
11165         * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
11167 2012-02-05  Chong Yidong  <cyd@gnu.org>
11169         * cus-edit.el (custom-variable-value-create): For mismatched
11170         types, show the current value (Bug#7600).
11172         * custom.el (defcustom): Doc fix.
11174 2012-02-05  Glenn Morris  <rgm@gnu.org>
11176         * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
11178 2012-02-05  Juanma Barranquero  <lekktu@gmail.com>
11180         * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
11181         (pp-buffer): Use `ignore-errors', `looking-at-p'.
11182         (pp-last-sexp): Use `looking-at-p'.
11184 2012-02-04  Glenn Morris  <rgm@gnu.org>
11186         * files.el (revert-buffer):
11187         Doc fix (mention revert-buffer-in-progress-p).
11189         * emacs-lisp/ert-x.el (ert-simulate-command):
11190         Check deferred-action-list (which is obsolete) is bound.
11192         * subr.el (with-wrapper-hook): Doc fixes.
11194         * simple.el (filter-buffer-substring-functions)
11195         (buffer-substring-filters, filter-buffer-substring): Doc fixes.
11197 2012-02-04  Lars Ljung  <lars@matholka.se>  (tiny change)
11199         * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
11200         anywhere in shell-file-name, not just at the beginning.  (Bug#10523)
11202 2012-02-04  Leo Liu  <sdl.web@gmail.com>
11204         * emacs-lisp/smie.el: Fix dead link (Bug#10711).
11206 2012-02-04  Glenn Morris  <rgm@gnu.org>
11208         * image.el (image-extension-data): Add obsolete alias.
11210         * isearch.el (isearch-update): Doc fix.
11212         * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
11214         * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
11216 2012-02-03  Glenn Morris  <rgm@gnu.org>
11218         * image.el (image-animated-p): Doc fix.  Use image-animated-types.
11219         (image-animate-timeout): Doc fix.
11221         * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
11223 2012-02-02  Glenn Morris  <rgm@gnu.org>
11225         * server.el (server-auth-dir): Doc fix.
11226         (server-eval-at): Doc fix.  Give an explicit error if !server-use-tcp.
11228         * subr.el (run-mode-hooks): Doc fix.
11230 2012-02-02  Juri Linkov  <juri@jurta.org>
11232         * image-mode.el (image-toggle-display-image): Remove tautological
11233         `major-mode' from the `derived-mode-p' test.
11235 2012-02-02  Kenichi Handa  <handa@m17n.org>
11237         * composite.el (compose-region): Cancel previous change.
11239 2012-02-02  Kenichi Handa  <handa@m17n.org>
11241         * composite.el (compose-region, compose-string): Signal error for
11242         a null string component (Bug#6988).
11244 2012-02-01  Chong Yidong  <cyd@gnu.org>
11246         * view.el (view-buffer-other-window, view-buffer-other-frame):
11247         Handle special modes like view-buffer (Bug#10650).
11248         (view-buffer): Simplify.
11250         * frame.el (set-frame-font): Tweak meaning of third argument.
11252         * dynamic-setting.el (font-setting-change-default-font):
11253         Use set-frame-font (Bug#9982).
11255 2012-02-01  Glenn Morris  <rgm@gnu.org>
11257         * progmodes/compile.el (compilation-internal-error-properties):
11258         Respect compilation-first-column in the "*compilation*" buffer.
11260         * emacs-lisp/easy-mmode.el (define-minor-mode):
11261         Relax :variable's test for a named function.
11263 2012-01-31  Alan Mackenzie  <acm@muc.de>
11265         * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
11266         off by one error.
11268 2012-01-31  Chong Yidong  <cyd@gnu.org>
11270         * frame.el (set-frame-font): New arg ALL-FRAMES.
11272         * menu-bar.el (menu-set-font): Use set-frame-font.
11274         * faces.el (face-spec-reset-face): Don't apply unspecified
11275         attribute values to the default face.
11277 2012-01-31  Juanma Barranquero  <lekktu@gmail.com>
11279         * progmodes/cwarn.el (cwarn): Remove dead link.
11280         (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
11281         Remove * from defcustom docstrings.
11282         (turn-on-cwarn-mode): Make obsolete.
11283         (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
11284         (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
11286 2012-01-31  Glenn Morris  <rgm@gnu.org>
11288         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
11289         Fix :variable handling of mode a symbol not equal to modefun.
11290         Allow named functions to be used as the cdr of :variable.
11292 2012-01-30  Glenn Morris  <rgm@gnu.org>
11294         * emacs-lisp/authors.el (authors-fixed-entries):
11295         Remove reference to deleted file rnewspost.el.
11297 2012-01-29  Juanma Barranquero  <lekktu@gmail.com>
11299         * window.el (window-with-parameter): Remove unused variable `windows'.
11300         (window--side-check): Remove unused variable `code'.
11301         (window--resize-siblings): Remove unused variable `first'.
11302         (adjust-window-trailing-edge): Remove unused variable `failed'.
11303         (window-deletable-p, window--delete): Remove unused variable `buffer'.
11304         Use `let', not `let*'.
11305         (balance-windows-2): Remove unused variable `found'.
11306         (window--state-put-2): Remove unused variable `splits'.
11307         (window-state-put): Remove unused variable `selected'.
11308         (same-window-p): Use `string-match-p'.
11309         (display-buffer-assq-regexp): Remove unused variable `value'.
11310         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11311         Mark argument ALIST as ignored.
11312         (pop-to-buffer): Remove unused variable `old-window'.
11314 2012-01-29  Eli Zaretskii  <eliz@gnu.org>
11316         * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
11317         and .lzma compressed files.
11319 2012-01-29  Chong Yidong  <cyd@gnu.org>
11321         * frame.el (window-system-default-frame-alist): Doc fix.
11323         * dynamic-setting.el (font-setting-change-default-font): Don't
11324         change the default face if SET-FONT argument is non-nil (Bug#9982).
11326 2012-01-29  Samuel Bronson  <naesten@gmail.com>  (tiny change)
11328         * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
11330 2012-01-29  Syver Enstad  <syver.enstad@cisco.com>  (tiny change)
11332         * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
11333         breakpoints in files outside current directory (Bug#6098).
11335 2012-01-29  Chong Yidong  <cyd@gnu.org>
11337         * progmodes/python.el: Require ansi-color at top-level.
11339         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
11340         Define and use in Emacs Lisp mode (Bug#9360).
11341         (lisp-mode-abbrev-table): Add doc.
11342         (lisp-mode-variables): Don't set local-abbrev-table.
11343         (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
11345 2012-01-28  Roland Winkler  <winkler@gnu.org>
11347         * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
11349 2012-01-28  Roland Winkler  <winkler@gnu.org>
11351         * textmodes/bibtex.el (bibtex-entry-alist): New function.
11352         (bibtex-set-dialect): Use it.  Either set global values of
11353         dialect-dependent variables or bind these variables buffer-locally
11354         (Bug#10254).
11355         (bibtex-mode): Call bibtex-set-dialect via
11356         hack-local-variables-hook.
11357         (bibtex-dialect): Update docstring.
11358         Add safe-local-variable predicate.
11359         (bibtex-entry-alist, bibtex-field-alist): Initialize via
11360         bibtex-set-dialect.
11361         (bibtex-mode-map): Define menu for each dialect.
11362         (bibtex-entry): Fix docstring.
11364 2012-01-28  Chong Yidong  <cyd@gnu.org>
11366         * eshell/esh-arg.el (eshell-quote-argument): New function.
11368         * eshell/esh-ext.el (eshell-invoke-batch-file):
11369         * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
11370         first arg to eshell-parse-command (Bug#10523).
11372 2012-01-28  Drew Adams  <drew.adams@oracle.com>
11374         * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
11375         `default-directory' is non-nil.
11377 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
11379         * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
11380         line that displays system-configuration-options.  (Bug#9924)
11382 2012-01-28  Drew Adams  <drew.adams@oracle.com>
11384         * descr-text.el (describe-char): Show information about POS, in
11385         addition to information about the character at POS.  Improve and
11386         update the doc string.  Change "code point" to "code point in
11387         charset", to avoid confusion with the character's Unicode code
11388         point shown above that.  (Bug#10129)
11390 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
11392         * descr-text.el (describe-char): Show the raw character, not only
11393         its display form at POS.  Suggested by Kenichi Handa <handa@m17n.org>.
11394         See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
11395         for the reasons.
11397 2012-01-28  Phil Hagelberg  <phil@hagelb.org>
11399         * emacs-lisp/package.el (package-install):
11400         Run package-refresh-contents if there is no archive yet (Bug#9798).
11402 2012-01-28  Chong Yidong  <cyd@gnu.org>
11404         * emacs-lisp/package.el (package-maybe-load-descriptor):
11405         New function, split from package-maybe-load-descriptor.
11406         (package-maybe-load-descriptor): Use it.
11407         (package-download-transaction): Fully load required packages
11408         inside the loop, so that `require' calls work (Bug#10593).
11409         (package-install): No need to call package-initialize now.
11411 2012-01-28  Chong Yidong  <cyd@gnu.org>
11413         * simple.el (deactivate-mark): Doc fix (Bug#8614).
11415         * tooltip.el (tooltip-mode): Doc fix.
11416         (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
11418         * frame.el (set-cursor-color): Doc fix (Bug#352).
11420         * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
11421         (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
11423         * cus-edit.el (custom-buffer-create-internal): Fix search button
11424         action (Bug#10542).
11425         (customize-unsaved, customize-saved): Doc fix (Bug#10541).
11427 2012-01-27  Eduard Wiebe  <usenet@pusto.de>
11429         * dired.el (dired-mark-files-regexp):
11430         Include any subdirectory components.  (Bug#10445)
11432 2012-01-27  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
11434         * pcmpl-unix.el (pcmpl-ssh-known-hosts):
11435         Handle [host]:port syntax.  (Bug#10533)
11437 2012-01-27  Alex Harsanyi  <harsanyi@mac.com>
11439         * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
11441 2012-01-26  Glenn Morris  <rgm@gnu.org>
11443         * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
11444         * term.el (term-raw-escape-map): Use Control-X-prefix.
11445         * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map.  (Bug#10566)
11447 2012-01-25  Martin Rudalics  <rudalics@gmx.at>
11449         * window.el (window-state-get, window--state-get-1): Don't deal
11450         with fixed-sizeness of windows.  Simplify code.
11452 2012-01-25  Jérémy Compostella  <jeremy.compostella@gmail.com>
11454         * window.el (window--state-get-1, window--state-put-2):
11455         Don't save and restore the mark.
11457 2012-01-25  Chong Yidong  <cyd@gnu.org>
11459         * custom.el (custom-variable-p): Doc fix.
11461 2012-01-25  Glenn Morris  <rgm@gnu.org>
11463         * dired.el (dired-goto-file): Handle some of the more common
11464         characters that `ls -b' escapes.  (Bug#10596)
11466         * progmodes/compile.el (compilation-next-error-function):
11467         Respect compilation-first-column in the "*compilation*" buffer.
11468         * progmodes/grep.el (grep-first-column): New variable.  (Bug#10594)
11470         * vc/vc.el (vc-modify-change-comment): Scoping fix.  (Bug#10513)
11472 2012-01-24  Glenn Morris  <rgm@gnu.org>
11474         * pcmpl-gnu.el (pcomplete/tar): Handle " - ".  (Bug#10457)
11476 2012-01-24  Julien Danjou  <julien@danjou.info>
11478         * color.el (color-rgb-to-hsl): Fix value computing.
11479         (color-hue-to-rgb): New function.
11480         (color-hsl-to-rgb): New function.
11481         (color-clamp, color-saturate-hsl, color-saturate-name)
11482         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
11483         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
11485 2012-01-24  Glenn Morris  <rgm@gnu.org>
11487         * vc/vc-rcs.el (vc-rcs-create-tag):
11488         * vc/vc-sccs.el (vc-sccs-create-tag):
11489         Fix argument spec to be what vc-create-tag expects.  (Bug#10515)
11491 2012-01-23  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
11493         * eshell/esh-util.el (eshell-read-hosts-file):
11494         Skip comment lines.  (Bug#10549)
11496         * eshell/em-unix.el (pcomplete/ssh): Remove.  (Bug#10548)
11498 2012-01-23  Juanma Barranquero  <lekktu@gmail.com>
11500         * subr.el (display-delayed-warnings): Doc fix.
11501         (collapse-delayed-warnings): New function to collapse identical
11502         adjacent warnings.
11503         (delayed-warnings-hook): Add it.
11505 2012-01-22  Michael Albinus  <michael.albinus@gmx.de>
11507         * net/tramp.el (tramp-action-login): Set connection property "login-as".
11509         * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
11510         (tramp-default-user-alist): Don't add "pscp".
11511         (tramp-do-copy-or-rename-file-out-of-band): Use connection
11512         property "login-as", if set.  (Bug#10530)
11514 2012-01-21  Michael Albinus  <michael.albinus@gmx.de>
11516         * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
11517         "plink1" and "psftp".  (Bug#10530)
11519 2012-01-21  Kenichi Handa  <handa@m17n.org>
11521         * international/mule-cmds.el (prefer-coding-system): Show a
11522         warning message if the default value of file-name-coding-system
11523         was not changed.
11525 2012-01-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
11527         * windmove.el (windmove-reference-loc):
11528         Fix windmove-reference-loc miscalculation.
11530 2012-01-21  Jay Belanger  <jay.p.belanger@gmail.com>
11532         * calc/calc-units.el (math-put-default-units): Don't use "1" as a
11533         default unit.
11535 2012-01-21  Glenn Morris  <rgm@gnu.org>
11537         * international/mule.el (auto-coding-alist): Add .tbz.
11539         * files.el (local-enable-local-variables): Doc fix.
11540         (inhibit-local-variables-regexps): Rename from
11541         inhibit-first-line-modes-regexps.  Keep old name as obsolete alias.
11542         Doc fix.  Add some extensions from auto-coding-alist.
11543         (inhibit-local-variables-suffixes):
11544         Rename from inhibit-first-line-modes-suffixes.  Doc fix.
11545         (inhibit-local-variables-p):
11546         New function, extracted from set-auto-mode-1.
11547         (set-auto-mode): Doc fix.  Respect inhibit-local-variables-regexps.
11548         (set-auto-mode-1): Doc fix.  Use inhibit-local-variables-p.
11549         (hack-local-variables): Doc fix.  Make the mode-only case
11550         respect enable-local-variables and friends.
11551         Respect inhibit-local-variables-regexps for file-locals, but
11552         not for directory-locals.
11553         (set-visited-file-name):
11554         Take account of inhibit-local-variables-regexps.
11555         Whether it applies may change as the file name is changed.
11556         * jka-cmpr-hook.el (jka-compr-install):
11557         * jka-compr.el (jka-compr-uninstall):
11558         Update for inhibit-first-line-modes-suffixes name change.
11560 2012-01-20  Martin Rudalics  <rudalics@gmx.at>
11562         * help-macro.el (make-help-screen): Temporarily restore original
11563         binding for minor-mode-map-alist (Bug#10454).
11565 2012-01-19  Julien Danjou  <julien@danjou.info>
11567         * color.el (color-name-to-rgb): Use the white color to find the max
11568         color component value and return correctly computed values.
11569         (color-name-to-rgb): Add missing float conversion for max value.
11571 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
11573         * window.el (window--state-get-1, window-state-get): Do not use
11574         special state value for window-persistent-parameters.
11575         Rename argument IGNORE to WRITABLE.  Rewrite doc-string.
11576         (window--state-put-2): Reset all window parameters to nil before
11577         assigning values of persistent parameters.
11579 2012-01-18  Alan Mackenzie  <acm@muc.de>
11581         Eliminate sluggishness and hangs in fontification of "semicolon
11582         deserts".
11584         * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
11585         Change value 10000 -> 3000.
11586         (c-state-safe-place): Reformulate so it doesn't stack up an
11587         infinite number of wrong entries in c-state-nonlit-pos-cache.
11588         (c-determine-limit-get-base, c-determine-limit): New functions to
11589         determine backward search limits disregarding literals.
11590         (c-find-decl-spots): Amend commenting.
11591         (c-cheap-inside-bracelist-p): New function which detects "={".
11593         * progmodes/cc-fonts.el
11594         (c-make-font-lock-BO-decl-search-function): Give a limit to a
11595         backward search.
11596         (c-font-lock-declarations): Fix an occurrence of point being
11597         undefined.  Check additionally for point being in a bracelist or
11598         near a macro invocation without a semicolon so as to avoid a
11599         fruitless time consuming search for a declarator.  Give a more
11600         precise search limit for declarators using the new
11601         c-determine-limit.
11603 2012-01-18  Glenn Morris  <rgm@gnu.org>
11605         * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
11606         (set-auto-mode): Doc fixes.
11608 2012-01-17  Glenn Morris  <rgm@gnu.org>
11610         * isearch.el (search-nonincremental-instead): Fix doc typo.
11612         * dired.el (dired-insert-directory): Handle newlines in directory name.
11613         (dired-build-subdir-alist): Unescape newlines in directory name.
11615 2012-01-17  Michael Albinus  <michael.albinus@gmx.de>
11617         * net/tramp.el (tramp-local-end-of-line): New defcustom.
11618         (tramp-action-login, tramp-action-yesno, tramp-action-yn)
11619         (tramp-action-terminal): Use it.  (Bug#10530)
11621 2012-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11623         * minibuffer.el (completion--replace): Strip properties (bug#10062).
11625 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
11627         * window.el (window-state-ignored-parameters): Remove variable.
11628         (window--state-get-1): Rename argument MARKERS to IGNORE.
11629         Handle persistent window parameters.  Make copy of clone-of
11630         parameter only if requested.  (Bug#10348)
11631         (window--state-put-2): Install a window parameter only if it has
11632         a non-nil value or an existing parameter shall be overwritten.
11634 2012-01-15  Michael Albinus  <michael.albinus@gmx.de>
11636         * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11638 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
11640         * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11641         don't pass the (nil) value of `upnode' to string-match.
11643 2012-01-14  Chong Yidong  <cyd@gnu.org>
11645         * startup.el (command-line): Fix X resource class for cursorColor.
11646         Fix values recognized by the cursorBlink resource.
11648 2012-01-14  Paul Eggert  <eggert@cs.ucla.edu>
11650         * epg.el (epg--make-temp-file): Avoid permission race condition
11651         when running on old Emacs versions (bug#10403).
11653 2012-01-14  Glenn Morris  <rgm@gnu.org>
11655         * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11657 2012-01-13  Alan Mackenzie  <acm@muc.de>
11659         Fix filling for when filladapt mode is enabled.
11661         * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11662         c-mask-paragraph, pass in `fill-paragraph' rather than
11663         `fill-region-as-paragraph'.  (This is a reversion of a previous
11664         change.)
11665         * progmodes/cc-mode.el (c-basic-common-init):
11666         Make fill-paragraph-handle-comment buffer local and set it to nil.
11668 2012-01-13  Glenn Morris  <rgm@gnu.org>
11670         * dired.el (dired-switches-escape-p): New function.
11671         (dired-insert-directory): Use dired-switches-escape-p.
11672         (dired-get-filename): Undo "\ " quoting if needed.  (Bug#10469)
11674         * find-dired.el (find-ls-option): Doc fix.  (Bug#10262)
11676 2012-01-12  Glenn Morris  <rgm@gnu.org>
11678         * mail/sendmail.el (mail-mode): Update paragraph-separate for
11679         changes in adaptive-fill-regexp.  (Bug#10276)
11681 2012-01-11  Alan Mackenzie  <acm@muc.de>
11683         Fix Emacs bug #10463 - put `widen's around the critical spots.
11685         * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
11686         widen around each invocation of c-state-pp-to-literal.  Remove an
11687         unused let variable.
11689 2012-01-11  Glenn Morris  <rgm@gnu.org>
11691         * dired-aux.el (dired-do-shell-command): Fix */? logic.  (Bug#6561)
11692         Doc fix.
11694 2012-01-10  Chong Yidong  <cyd@gnu.org>
11696         * net/network-stream.el (network-stream-open-starttls):
11697         Avoid emitting a confusing error message when the server gives a bad
11698         response to the capability command.
11700 2012-01-10  Glenn Morris  <rgm@gnu.org>
11702         * mail/unrmail.el (unrmail): Tweak previous change.
11704 2012-01-09  Chong Yidong  <cyd@gnu.org>
11706         * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11708 2012-01-08  Alan Mackenzie  <acm@muc.de>
11710         Optimise font locking in long enum definitions.
11712         * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11713         arm to a cond form to handle enums.
11714         * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11715         * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11717 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
11719         * files.el (move-file-to-trash): Preserve default file modes on error.
11720         (Bug#10401)
11722 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11724         * faces.el (set-face-attribute): Clarify the meaning of the nil
11725         frame (bug#10294).
11727         * subr.el (with-selected-frame): Mention that the selected frame
11728         is restored (bug#9980).
11730         * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11731         (bug#9759).
11733         * mail/smtpmail.el (password-cache-add): Remove unused declaration.
11734         (password-read): Don't autoload unused function.
11736 2012-01-07  Juanma Barranquero  <lekktu@gmail.com>
11738         * progmodes/which-func.el (which-func-mode): Turn into a
11739         non-interactive function and mark as obsolete (bug#10428).
11741 2012-01-06  Chong Yidong  <cyd@gnu.org>
11743         * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11744         (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11745         functions, along with 1 and -1.
11747 2012-01-06  Eli Zaretskii  <eliz@gnu.org>
11749         * time.el (display-time-load-average)
11750         (display-time-default-load-average): Doc fixes.  See the thread
11751         starting at
11752         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11753         for the details.
11755 2012-01-06  Glenn Morris  <rgm@gnu.org>
11757         * mail/unrmail.el (unrmail): Give an explicit error if the input file
11758         has no messages.  (Bug#10377)
11760         * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11761         than Info-edit.  (Bug#10385)
11763         * time.el (display-time-load-average, display-time-next-load-average):
11764         Doc fixes.
11766         * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
11767         local setting of buffer-read-only to the input buffer.  (Bug#10419)
11769         * calendar/calendar.el (calendar-mode):
11770         Locally set scroll-margin to 0.  (Bug#10379)
11772 2012-01-06  Ulrich Mueller  <ulm@gentoo.org>
11774         * play/doctor.el (doctor-death): Escape "," characters.  (Bug#10370)
11776 2012-01-05  Glenn Morris  <rgm@gnu.org>
11778         * eshell/em-unix.el (diff-no-select): Autoload it.
11779         (eshell/diff): Use diff-no-select.  (Bug#10420)
11781 2012-01-05  Chong Yidong  <cyd@gnu.org>
11783         * shell.el (shell-dynamic-complete-functions): Revert last change.
11784         (shell-command-completion-function): New function.
11785         (shell-completion-vars): Use it to implement
11786         shell-completion-execonly (Bug#10417).
11788         * custom.el (enable-theme): Don't set custom-safe-themes.
11790         * cus-theme.el (custom-theme-merge-theme):
11791         Ignore custom-enabled-themes and custom-safe-themes.
11793 2012-01-05  Michael R. Mauger  <mmaug@yahoo.com>
11795         * progmodes/sql.el (sql-login-hook): Add hook to respond to the
11796         first prompt in `sql-interacive-mode'.
11797         (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
11798         keywords.
11799         (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
11800         (sql-product-interactive): Bug fix: Set `sql-buffer' in
11801         context of original buffer.  Invoke `sql-login-hook'.
11803 2012-01-04  Eli Zaretskii  <eliz@gnu.org>
11805         * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
11806         letters in cite-prefix.
11808 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11810         * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
11812 2012-01-03  Chong Yidong  <cyd@gnu.org>
11814         * shell.el (shell-dynamic-complete-functions):
11815         Put pcomplete-completions-at-point, so as to try
11816         comint-filename-completion first (Bug#10417).
11818 2012-01-02  Richard Stallman  <rms@gnu.org>
11820         * battery.el (battery-status-function):
11821         Detect when to use battery-yeeloong-sysfs.
11822         (battery-echo-area-format): Add string for Yeeloong.
11823         (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
11824         (battery-yeeloong-sysfs): New function.
11826 2012-01-02  Chong Yidong  <cyd@gnu.org>
11828         * dirtrack.el (dirtrack-list): Eliminate unused third element.
11829         (dirtrack): Merge code for handling relative filenames in prompt
11830         from shell-dir-cookie-watcher.
11831         (dirtrack-debug-message): New arg to avoid excess format calls.
11833         * shell.el (shell-dir-cookie-re): Variable deleted.
11834         (shell-dir-cookie-watcher): Function deleted.
11835         (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
11836         with dirtrack-mode.
11838 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
11840         * term/w32-win.el (dynamic-library-alist) <gnutls>:
11841         Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
11842         libgnutls-26.dll.
11844 2011-12-31  Andreas Schwab  <schwab@linux-m68k.org>
11846         * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
11848 2011-12-31  Eli Zaretskii  <eliz@gnu.org>
11850         * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
11851         headers of non-MIME messages, when rmail-enable-mime is non-nil.
11853 2011-12-29  Michael Albinus  <michael.albinus@gmx.de>
11855         * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
11856         also for alternative shells.
11857         (tramp-open-connection-setup-interactive-shell): Check, whether
11858         the shell is a busybox.
11859         (tramp-send-command): Don't suppress multiple prompts for
11860         busyboxes, it hurts.
11862 2011-12-28  Chong Yidong  <cyd@gnu.org>
11864         * progmodes/gdb-mi.el (gdb-get-source-file-list)
11865         (gdb-get-source-file): Move mode line update to
11866         gdb-get-source-file (Bug#10087).
11868 2011-12-25  Chong Yidong  <cyd@gnu.org>
11870         * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
11871         gud-gdb-marker-filter without taking it as an argument.
11872         (gud-gdb-run-command-fetch-lines): Caller changed.
11873         (gud-gdb-completion-function): New variable.
11874         (gud-gdb-completion-at-point): Use it.
11875         (gud-gdb-completions-1): Split from gud-gdb-completions.
11877         * progmodes/gdb-mi.el (gdb-input): Accept command and handler
11878         function as separate arguments.
11879         (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
11880         (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
11881         (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
11882         (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
11883         (gdb-stopped, def-gdb-auto-update-trigger)
11884         (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
11885         (gdb-get-changed-registers, gdb-get-main-selected-frame):
11886         Callers changed.
11887         (gud-gdbmi-completions): New function.
11888         (gdb): Use it for generating the completion table.
11890 2011-12-24  Alan Mackenzie  <acm@muc.de>
11892         Introduce a mechanism to widen the region used in context font
11893         locking.  Use this to protect declarations from losing their contexts.
11895         * progmodes/cc-langs.el (c-before-font-lock-functions):
11896         Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
11897         (c-before-context-fontification-functions): New defvar, a list of
11898         functions to be run just before context (etc.) font locking.
11900         * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
11901         New, functionality extracted from
11902         c-neutralize-syntax-in-and-mark-CPP.
11903         (c-in-after-change-fontification): New variable.
11904         (c-after-change): Set c-in-after-change-fontification.
11905         (c-set-fl-decl-start): Rejig its interface, so it can be called
11906         from both after-change and context fontifying.
11907         (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
11908         New functions.
11909         (c-standard-font-lock-fontify-region-function): New variable.
11910         (c-font-lock-fontify-region): New function.
11912 2011-12-24  Juri Linkov  <juri@jurta.org>
11914         * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
11915         (Bug#10348)
11917 2011-12-23  Michael Albinus  <michael.albinus@gmx.de>
11919         * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
11920         existence of source file.  (Bug#10325)
11922 2011-12-23  Alan Mackenzie  <acm@muc.de>
11924         Fix unstable fontification inside templates.
11926         * progmodes/cc-langs.el (c-before-font-lock-functions):
11927         Newly created from the singular version.  The (c c++ objc) entry now
11928         additionally has c-set-fl-decl-start.  The other languages (apart
11929         from AWK) have that as a single entry.
11931         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11932         The functionality for "local" declarations has been extracted to
11933         c-set-fl-decl-start.
11935         * progmodes/cc-mode.el (c-common-init, c-after-change):
11936         Changes due to pluralisation of c-before-font-lock-functions.
11937         (c-set-fl-decl-start): New function, extracted from
11938         c-font-lock-enclosing-decls and enhanced.
11940 2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
11942         * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
11944 2011-12-22  Juri Linkov  <juri@jurta.org>
11946         * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)
11948 2011-12-22  Chong Yidong  <cyd@gnu.org>
11950         * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
11952 2011-12-21  Drew Adams  <drew.adams@oracle.com>
11954         * files.el (file-remote-p): Fix docstring.  (Bug#10319)
11956 2011-12-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
11958         * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
11960 2011-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
11962         * progmodes/cfengine.el: Add Version.  Improve CFEngine 3.x syntax
11963         highlighting and support.  Fix up comments for capitalization.
11964         (cfengine-mode-debug): New var.
11965         (cfengine3-mode): Change the modeline indicator to "CFE3".
11966         (cfengine3-font-lock-keywords): Improve defun highlighting.
11967         (cfengine2-actions): Rename from `cfengine-actions'.
11968         (cfengine2-font-lock-keywords): Rename from
11969         `cfengine-font-lock-keywords'.
11970         (cfengine2-imenu-expression): Rename from
11971         `cfengine-imenu-expression'.
11972         (cfengine2-outline-level): Rename from `cfengine-outline-level'.
11973         (cfengine2-beginning-of-defun): Rename from
11974         `cfengine-beginning-of-defun'.
11975         (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
11976         (cfengine2-indent-line): Rename from `cfengine-indent-line'.
11977         (cfengine2-mode): Rename from `cfengine-mode'.  Change the
11978         modeline indicator to "CFE2".
11979         (cfengine-mode): Defalias to `cfengine-auto-mode'.
11980         (cfengine-mode-abbrevs): Mark obsolete.
11982 2011-12-21  Chong Yidong  <cyd@gnu.org>
11984         * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
11985         filename argument.
11987 2011-12-20  Martin Rudalics  <rudalics@gmx.at>
11989         * window.el (window-normalize-buffer-to-display): Remove.
11990         (display-buffer): Handle buffer-or-name argument as in Emacs 23.
11992 2011-12-19  Chong Yidong  <cyd@gnu.org>
11994         * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
11995         Don't signal an error in a predicate function; return non-nil.
11996         (vc-dir-mark-file): Move the error here.
11997         (vc-dir-mark-unmark): If acting on the region, keep going if one
11998         of the entries cannot be marked/unmarked.
11999         (vc-dir-mark-all-files): If current entry is a directory, mark
12000         only child files, as documented.
12002 2011-12-19  Vincent Belaïche  <vincentb1@users.sourceforge.net>
12004         * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
12005         branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
12006         addition.
12008 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
12010         * term/ns-win.el (ns-get-selection-internal)
12011         (ns-store-selection-internal): Declare.
12012         (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
12013         Declare as obsolete.
12014         (ns-get-pasteboard, ns-paste-secondary):
12015         Use ns-get-selection-internal.
12016         (ns-set-pasteboard, ns-copy-including-secondary):
12017         Use ns-store-selection-internal.
12019 2011-12-17  Chong Yidong  <cyd@gnu.org>
12021         * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
12022         (vc-deduce-fileset): Doc fix.
12024 2011-12-16  Andreas Schwab  <schwab@linux-m68k.org>
12026         * calc/calc-misc.el (calc-help): Avoid wrapping help message.
12028 2011-12-13  Sam Steingold  <sds@gnu.org>
12030         * man.el (Man-getpage-in-background): When running under a
12031         window-system, ignore $MANWIDTH and $COLUMNS.
12033 2011-12-15  Kenichi Handa  <handa@m17n.org>
12035         * language/ethio-util.el: Change coding tag to utf-8-emacs.
12036         (setup-ethiopic-environment-internal): Comment out key-binding for
12037         ethio-toggle-punctuation.
12039 2011-12-13  Alan Mackenzie  <acm@muc.de>
12041         Add the switch statement to AWK Mode.
12043         * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
12044         "default" to the keywords regexp.
12046         * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
12047         expression as the rest.
12048         (c-nonlabel-token-key): Allow string literals for AWK.
12049         Refactor for the other modes.
12051         Large brace-block initialisation makes CC Mode slow: Fix.
12052         Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
12053         routines.  Limit backward searching in c-font-lock-enclosing.decl.
12055         * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
12056         pp-state and literal type in addition to the limits.
12057         (c-state-safe-place): New defun, extracted from c-state-literal-at.
12058         (c-state-literal-at): Use the above new defun.
12059         (c-slow-in-literal, c-fast-in-literal): Remove.
12060         (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
12062         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
12063         being in a literal.  Add a limit for backward searching.
12065         * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
12066         c-slow-in-literal.
12068 2011-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12070         * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
12072 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
12074         * window.el (delete-other-windows): Use correct frame in call to
12075         window-with-parameter.
12077 2011-12-12  Daniel Pfeiffer  <occitan@t-online.de>
12079         * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
12080         (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
12081         (makefile-gmake-statements, makefile-makepp-statements):
12082         Use it and add new makepp keywords.
12083         (makefile-makepp-font-lock-keywords): Add new patterns.
12084         (makefile-match-function-end): Match new [...] and [[...]].
12086 2011-12-11  Juanma Barranquero  <lekktu@gmail.com>
12088         * ses.el (ses-call-printer-return, ses-cell-property-get)
12089         (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
12090         (ses-create-cell-variable, ses-reset-header-string)
12091         (ses-cell-set-formula, ses-repair-cell-reference-all)
12092         (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
12093         (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
12094         (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
12095         (ses-aset-with-undo, ses-load, ses-truncate-cell)
12096         (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
12097         (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
12098         (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
12099         (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
12100         (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
12101         (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
12102         (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
12103         (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
12105 2011-12-11  Vincent Belaïche  <vincentb1@users.sourceforge.net>
12107         * ses.el: The overall change is to add cell renaming, that is
12108         setting fancy names for cell symbols other than name matching
12109         "\\`[A-Z]+[0-9]+\\'" regexp .
12110         (ses-create-cell-variable): New defun.
12111         (ses-relocate-formula): Relocate formulas only for cells the
12112         symbols of which are not renamed, i.e. symbols whose names do not
12113         match regexp "\\`[A-Z]+[0-9]+\\'".
12114         (ses-relocate-all): Relocate values only for cells the symbols of
12115         which are not renamed.
12116         (ses-load): Create cells variables as the (ses-cell ...) are read,
12117         in order to check row col consistency with cell symbol name only
12118         for cells that are not renamed.
12119         (ses-replace-name-in-formula): New defun.
12120         (ses-rename-cell): New defun.
12122 2011-12-11  Chong Yidong  <cyd@gnu.org>
12124         * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
12125         for completion via gud-gdb-fetch-lines-filter (Bug#10274).
12127 2011-12-11  Eric Hanchrow  <eric.hanchrow@gmail.com>
12129         * window.el (other-window): Fix docstring.
12131 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
12133         * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
12134         `from' or `to' address before taking its substring.
12135         Fixes incorrect display in Rmail summary buffer whereby an RFC2047
12136         encoded name is chopped in the middle of the encoded string, and
12137         thus displayed encoded.
12139 2011-12-10  Juanma Barranquero  <lekktu@gmail.com>
12141         * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
12143 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
12145         * textmodes/texnfo-upd.el: Update commentary.  Add a warning not
12146         to use texinfo-update-node and commands that call it if the
12147         Texinfo file uses @node lines without next/prev/up pointers.
12148         Correct outdated description about texinfo-master-menu.
12149         (texinfo-all-menus-update, texinfo-master-menu)
12150         (texinfo-update-node, texinfo-every-node-update)
12151         (texinfo-multiple-files-update): Doc fix.  Warn against updating
12152         all the @node lines.
12153         (texinfo-master-menu): Only call texinfo-update-node if the prefix
12154         argument is numeric.  Explain better in the doc string what the
12155         function really does.
12156         (texinfo-insert-master-menu-list): Improve the error message
12157         displayed if there's no menu in the Top node.
12158         (Bug#2975)  See also this thread:
12159         http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
12161 2011-12-09  Manuel Gómez  <mgrojo@gmail.com>  (tiny change)
12163         * speedbar.el (speedbar-supported-extension-expressions):
12164         Add .adb and .ads, commonly used for Ada source code (bug#10256).
12166 2011-12-09  Juanma Barranquero  <lekktu@gmail.com>
12168         * printing.el (pr-mode-alist):
12169         * simple.el (filter-buffer-substring-functions)
12170         (completion-list-insert-choice-function):
12171         * window.el (window-with-parameter, window-atom-root)
12172         (window-sides-slots, window-size-fixed, window-min-delta)
12173         (window-max-delta, window--resize-mini-window)
12174         (window--resize-child-windows-normal, window-tree)
12175         (delete-other-windows, quit-window, split-window)
12176         (display-buffer-record-window, special-display-buffer-names)
12177         (special-display-regexps, special-display-popup-frame)
12178         (same-window-p, split-window-sensibly)
12179         (display-buffer-overriding-action, display-buffer-alist)
12180         (display-buffer-base-action, display-buffer, switch-to-buffer)
12181         (switch-to-buffer-other-window, switch-to-buffer-other-frame)
12182         (fit-window-to-buffer, recenter-positions)
12183         (mouse-autoselect-window-state, mouse-autoselect-window-select):
12184         * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
12185         and remove unneeded backslashes in docstrings.
12187 2011-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12189         * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
12191         * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
12192         (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
12193         end in ".mk".
12194         (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
12195         when reading the makefile (bug#10116).
12197 2011-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12199         * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
12200         (bug#10116).
12202 2011-12-06  Glenn Morris  <rgm@gnu.org>
12204         * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
12206 2011-12-06  Chong Yidong  <cyd@gnu.org>
12208         * progmodes/cc-fonts.el (c-annotation-face): Use defface.
12210 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
12212         * textmodes/table.el (table-shorten-cell): Fix typo.
12214 2011-12-05  Christopher Genovese  <genovese.cr@gmail.com>  (tiny change)
12216         * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
12218 2011-12-05  Eli Zaretskii  <eliz@gnu.org>
12220         * descr-text.el (describe-char): Fix display of strong
12221         right-to-left characters and directional embeddings and overrides.
12223         * simple.el (what-cursor-position): Fix display of codepoints of
12224         strong right-to-left characters.
12226 2011-12-05  Chong Yidong  <cyd@gnu.org>
12228         * faces.el (read-color): Doc fix.
12230 2011-12-05  Glenn Morris  <rgm@gnu.org>
12232         * align.el (align--set-marker): Add doc-string.
12233         Don't try to move something that is not a marker.  (Bug#10216)
12235 2011-12-04  Glenn Morris  <rgm@gnu.org>
12237         * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
12238         overly zealous deletion of trailing whitespace.
12240 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
12242         * server.el (server-delete-client): On Windows, do not try to delete
12243         the only terminal.
12244         (server-process-filter): On Windows, treat requests for a tty frame as
12245         if they were for a GUI frame if the running server is in GUI mode.
12247 2011-12-03  Glenn Morris  <rgm@gnu.org>
12249         * textmodes/texinfmt.el (batch-texinfo-format): Doc fix.  (Bug#10207)
12251 2011-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12253         * electric.el: Streamline electric-indent's hook.
12254         (electric-indent-chars): Revert to simple list.
12255         (electric-indent-functions): New var.
12256         (electric-indent-post-self-insert-function): Use it.
12258         * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
12259         there's no inferior buffer (bug#10196).
12260         (prolog-consult-compile): Don't use toggle-read-only.
12262 2011-12-02  Michael Albinus  <michael.albinus@gmx.de>
12264         * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
12265         interrupt.  (Bug#10187)
12267 2011-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12269         * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
12270         (bug#9160).
12272         * dired-aux.el (dired-query): Don't assume help-char is modifier-free
12273         (bug#10191).
12275 2011-12-02  Juri Linkov  <juri@jurta.org>
12277         * info.el (Info-search): Display "end of manual" when Isearch
12278         reaches the end of single-file Info manual.  (Bug#9918)
12280 2011-12-02  Eli Zaretskii  <eliz@gnu.org>
12282         * isearch.el (isearch-message-prefix): Run the input method part
12283         of the prompt through bidi-string-mark-left-to-right.  (Bug#10183)
12285 2011-12-02  Juri Linkov  <juri@jurta.org>
12287         * isearch.el (isearch-occur): Use `word-search-regexp' for
12288         `isearch-word'.
12289         (isearch-search-and-update): Add condition for `isearch-word' and
12290         call `word-search-regexp'.  (Bug#10145)
12292 2011-12-01  Glenn Morris  <rgm@gnu.org>
12294         * eshell/em-hist.el (eshell-hist-initialize):
12295         Handle eshell-history-size nil and HISTSIZE set or unset.
12296         (eshell-history-file-name, eshell-history-size): Fix custom type.
12298 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12300         * man.el (Man-completion-table): Fix the lambda case (bug#10168).
12302 2011-12-01  Michael McNamara  <mac@mail.brushroad.com>
12304         * progmodes/verilog-mode.el (verilog-pretty-expr):
12305         Rework verilog-pretty-expr to handle new assignment operators in system
12306         verilog, such as += *= and the like.
12307         (verilog-assignment-operator-re): Regular expression to find the
12308         assigment operator in a verilog assignment.
12309         (verilog-assignment-operation-re): Regular expression to find an
12310         assignment statement for pretty-expr.
12311         (verilog-in-attribute-p): Query returns true if point is in an
12312         attribute context; used to skip these for expression line up from
12313         pretty-expr.
12314         (verilog-in-parameter-p): Query returns true if point is in an
12315         parameter definition context; used to skip these for expression
12316         line up from pretty-expr.
12317         (verilog-in-parenthesis-p): Query returns true if point is in a
12318         parenthetical expression, specifically ( ) but not [ ] or { };
12319         used by pretty-expr.
12320         (verilog-just-one-space): If there is no space, don't add one.
12321         (verilog-get-lineup-indent-2): Specifically skip just attribute
12322         contexts for expression lineup, rather than skipping all
12323         parenthetical expressions.
12324         (verilog-calculate-indent): Fix comment, and fix indent.
12325         (verilog-do-indent): Indent declarations in lists (suggested by
12326         Joachim Lechner).
12327         (verilog-mode-abbrev-table): Populate abbrev mode with the various
12328         skeleton items.
12329         (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
12330         by Alain Mellan).
12332 2011-12-01  Wilson Snyder  <wsnyder@wsnyder.org>
12334         * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
12335         parameters with embedded comments.  Reported by Ray Stevens.
12336         (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
12337         verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
12338         Reported by Tim Holt.
12339         (verilog-auto): Fix AUTOing a upper module then AUTOing module
12340         instantiated by upper module causing wrong expansion until AUTOed a
12341         second time.  Reported by K C Buckenmaier.
12342         (verilog-diff-auto): Fix showing .* as a difference when
12343         `verilog-auto-star-save' off.  Reported by Dan Dever.
12344         (verilog-auto-reset, verilog-read-always-signals)
12345         (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
12346         temporary signals in reset list if
12347         verilog-auto-reset-blocking-in-non is nil, and match assignment
12348         style to each signal's assignment type, bug381.
12349         Reported by Thomas Esposito.
12350         (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
12351         (verilog-uvm-statement-re): Support UVM indentation and
12352         highlighting, with old OVM keywords only.
12353         (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
12354         Support AUTOTIEOFF creating non-wire data types.
12355         Suggested by Jonathan Greenlaw.
12356         (verilog-auto-insert-lisp, verilog-delete-to-paren)
12357         (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
12358         (verilog-inject-sense, verilog-read-inst-pins)
12359         (verilog-read-sub-decls, verilog-read-sub-decls-line):
12360         Fix mismatching parenthesis inside commented out code when deleting
12361         AUTOINST, bug383.  Reported by Jonathan Greenlaw.
12362         (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
12363         non-numeric vector width.  Reported by Alex Reed.
12364         (verilog-auto-ascii-enum): Add "onehot" option to work around not
12365         detecting signals with parameter widths.  Reported by Alex Reed.
12366         (verilog-auto-delete-trailing-whitespace):
12367         With `verilog-auto-delete-trailing-whitespace' remove trailing
12368         whitespace in auto expansion, bug371.  Reported by Brad Dobbie.
12369         (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
12370         Fix verilog-scan-cache corruption when running user AUTO expansion
12371         hooks that call indentation routines.
12372         (verilog-simplify-range-expression): Fix typo ignoring lower case
12373         identifiers.
12374         (verilog-delete-auto): Fix delete-autos to also remove user created
12375         automatics, as long as they start with AUTO.
12376         (verilog-batch-diff-auto, verilog-diff-auto)
12377         (verilog-diff-function): Add `verilog-diff-auto' and bind to
12378         "C-c?"  to report differences in AUTO expansion, ignoring spaces.
12379         (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
12380         (verilog-in-paren-quick, verilog-re-search-backward-quick)
12381         (verilog-re-search-forward-quick, verilog-syntax-ppss):
12382         Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
12383         is disabled and its cache will get corrupt, causing AUTOS not to
12384         expand.  Instead use only -quick functions.
12385         (verilog-scan-region): Fix scanning over escaped quotes.
12386         (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
12387         (verilog-re-search-backward-quick)
12388         (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
12389         related functions now ignore strings, to fix misparsing of strings
12390         with magic comments embedded in them.
12391         (verilog-read-auto-template):
12392         Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
12393         Reported by Brad Dobbie.
12394         (verilog-read-auto-template):
12395         Fix 'verilog-auto-inst-template-numbers' with comments.
12396         Reported by Brad Dobbie.
12397         (verilog-auto-inst, verilog-auto-inst-param)
12398         (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
12399         merge conflicts with AUTOINST, bug358.  Reported by Brad Dobbie.
12400         (verilog-auto-inst-template-numbers): Add 'lhs' policy for
12401         debugging templates without merge conflicts, bug357.
12402         Reported by Brad Dobbie.
12403         (verilog-read-auto-template):
12404         Fix verilog-auto-inst-template-numbers with multiple templates.
12405         Reported by Brad Dobbie.
12406         (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
12407         abbrevs so user won't be asked to save.
12408         (verilog-read-auto-lisp-present): Fix to start at beginning of
12409         buffer in case called outside of verilog-auto.
12410         (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
12411         to "X-2".  Reported by Matthew Myers.
12412         (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
12413         all inputs from module templates.  Reported by Leith Johnson.
12414         (verilog-module-inside-filename-p): Fix locating programs as with
12415         modules.
12416         (verilog-auto-inst-port): Fix vl-width expressions when using
12417         verilog-auto-inst-param-value, bug331.  Reported by Julian Gorfajn.
12418         (verilog-decls-get-regs, verilog-decls-get-signals,
12419         verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
12420         verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
12421         verilog-read-decls): Combine reg and wire structures into one var
12422         structure to represent SystemVerilog concepts.
12423         (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
12424         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
12425         (verilog-auto-wire-type, verilog-insert-definition):
12426         Add verilog-auto-wire-type and AUTOLOGIC to support using
12427         SystemVerilog "logic" keyword instead of "wire"/"reg".
12428         (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
12429         to declares outputs that also have assignments (presumably in an
12430         ifdef or generate if so there's not a driver conflict).
12431         Reported by Matthew Myers.
12432         (verilog-auto-declare-nettype, verilog-insert-definition):
12433         Add verilog-auto-declare-nettype to fix declarations using
12434         `default_nettype none.  Reported by Julian Gorfajn.
12435         (verilog-read-always-signals-recurse, verilog-read-decls)
12436         (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
12437         malformed end statement, bug325.  Reported by Joshua Wise and
12438         Andrew Drake.
12439         (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
12440         (verilog-inst-comment-re): Fix not deleting Interfaced comment
12441         when expanding .* in interfaces, bug320.
12442         Reported by Pierre-David Pfister.
12443         (verilog-read-module-name): Fix import statements between module
12444         name and open parenthesis, bug317.
12445         Reported by Pierre-David Pfister.
12446         (verilog-simplify-range-expression): Fix simplification of
12447         multiplications inside AUTOWIRE connections, bug303.
12448         (verilog-auto-inst-port): Support parameter expansion in
12449         multidimensional arrays.
12450         (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
12451         after "assert property".  Reported by Julian Gorfajn.
12452         (verilog-simplify-range-expression): Fix "couldn't merge" errors
12453         with multiplication, bug303.
12454         (verilog-read-decls): Fix parsing of unsigned data types, bug302.
12455         Reported by Jan Frode Lonnum.
12457 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
12459         * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
12460         (hfy-shell-file-name, hfy-shell):
12461         * international/fontset.el (x-decompose-font-name): Fix typos.
12463 2011-11-29  Ken Brown  <kbrown@cornell.edu>
12465         * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
12466         (gdb-version): Remove defvar.
12467         (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
12468         (gdb-gud-context-command, gdb-non-stop-handler)
12469         (gdb-current-context-command, gdb-stopped): Use it.
12470         (gdb-init-1): Enable pretty printing here.
12471         (gdb-non-stop-handler): Don't enable pretty-printing here.
12472         Check to see if the target supports non-stop mode; if not, turn off
12473         non-stop mode.  Use the following.
12474         (gdb-check-target-async): New defun.
12475         (gud-watch, gdb-stopped): Fix whitespace.
12476         (gdb-get-source-file): Don't try to display the source file if
12477         `gdb-main-file' is nil.
12479 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12481         * align.el: Try to generate fewer markers (bug#10047).
12482         (align--set-marker): New macro.
12483         (align-region): Use it.
12485 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12487         * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
12489 2011-11-29  Chong Yidong  <cyd@gnu.org>
12491         * indent.el (indent-for-tab-command, indent-according-to-mode):
12492         Doc fix.
12493         (indent-region): Doc fix.  Switch nested ifs to equivalent cond.
12495 2011-11-29  Michael Albinus  <michael.albinus@gmx.de>
12497         * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
12498         aware of remote file names.  (Bug#10124)
12500 2011-11-29  Chong Yidong  <cyd@gnu.org>
12502         * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
12504 2011-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12506         * files.el (find-file): Don't use force-same-window (bug#10144).
12507         * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
12508         use pop-to-buffer if the selected window can't be used.
12509         (pop-to-buffer-same-window): Use display-buffer--same-window-action.
12511 2011-11-28  Eli Zaretskii  <eliz@gnu.org>
12513         * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
12514         special-mode-map.
12516 2011-11-28  Chong Yidong  <cyd@gnu.org>
12518         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
12520 2011-11-27  Nick Roberts  <nickrob@snap.net.nz>
12522         * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
12523           gdb-get-source-file-list on gdb-create-source-file-list.
12525 2011-11-26  Eli Zaretskii  <eliz@gnu.org>
12527         * whitespace.el (whitespace-newline): Use a different foreground
12528         color for 16-color light-background displays.
12530 2011-11-24  Chong Yidong  <cyd@gnu.org>
12532         * window.el (display-buffer--special-action): Doc fix.
12534 2011-11-25  Juanma Barranquero  <lekktu@gmail.com>
12536         * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
12537         (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
12538         (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
12539         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
12540         (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
12541         (avl-tree-stack-first):
12542         * emacs-lisp/cconv.el (cconv--analyse-use):
12543         * net/gnutls.el (gnutls-negotiate): Fix typos.
12545 2011-11-24  Glenn Morris  <rgm@gnu.org>
12547         * lpr.el (lpr-windows-system, lpr-lp-system):
12548         * mail/binhex.el (binhex-begin-line):
12549         * progmodes/grep.el (grep-history, grep-find-history):
12550         * textmodes/flyspell.el:
12551         * vc/pcvs-defs.el (cvs-global-menu):
12552         * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
12553         * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
12554         * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
12556         * net/tls.el: Fix case of "GnuTLS".
12558         * paths.el (rmail-file-name): Format doc-string for make-docfile.
12560         * version.el (emacs-build-system): Give it a doc-string.
12562 2011-11-24  Juri Linkov  <juri@jurta.org>
12564         * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
12566 2011-11-24  Glenn Morris  <rgm@gnu.org>
12568         * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
12569         if called on a non-mime message just toggle the headers.  (Bug#8006)
12571 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
12573         * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
12574         (allout-lead-with-comment-string, allout-structure-deleted-hook)
12575         (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
12576         (allout-rebullet-heading, allout-open-sibtopic)
12577         (allout-toggle-current-subtree-encryption)
12578         (allout-toggle-subtree-encryption, allout-encrypt-string)
12579         (allout-next-topic-pending-encryption, allout-adjust-file-variable)
12580         (allout-distinctive-bullets-string, allout-auto-activation):
12581         * window.el (window-normalize-buffer-to-display):
12582         * progmodes/verilog-mode.el (verilog-batch-indent):
12583         * textmodes/bibtex.el (bibtex-field-braces-opt)
12584         (bibtex-field-strings-opt):
12585         * vc/cvs-status.el (cvs-tree-merge):
12586         Fix typos.
12588 2011-11-23  Michael Albinus  <michael.albinus@gmx.de>
12590         * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
12591         `non-essential' to t, in order to avoid remote connections.
12593 2011-11-23  Eli Zaretskii  <eliz@gnu.org>
12595         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12596         On MS-DOS and MS-Windows, compare with loaddefs.el
12597         case-insensitively.
12599 2011-11-23  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
12601         * mail/unrmail.el (unrmail): Always add blank line.  (Bug#7743)
12603 2011-11-23  Glenn Morris  <rgm@gnu.org>
12605         * paths.el (rmail-file-name): Reformat the doc-string so that it
12606         is picked up.
12608         * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
12609         (rmail-auto-file): Ignore case in the "special" field names,
12610         as mail-fetch-field does for all others.
12612         * mail/rmail.el (rmail-forward):
12613         * mail/rmailkwd.el (rmail-set-label):
12614         * mail/rmailout.el (rmail-output, rmail-output-as-seen)
12615         (rmail-output-body-to-file): Give error if no message.  (Bug#10082)
12617         * mail/rmail.el (rmail-current-message): Doc fix.
12619         * mail/rmail.el (rmail-message-filter): Mark as obsolete.  (Bug#2624)
12621 2011-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12623         * server.el (server-eval-and-print): Allow C-g (bug#6585).
12625 2011-11-22  Glenn Morris  <rgm@gnu.org>
12627         * mail/rmailmm.el (test-rmail-mime-handler)
12628         (test-rmail-mime-bulk-handler)
12629         (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12631 2011-11-21  Juri Linkov  <juri@jurta.org>
12633         * calc/calc.el (calc-read-key-sequence):
12634         Let-bind `input-method-function' to nil.  (Bug#10018)
12636 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12638         * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12639         Tell the caller that the next line needs recomputation, even
12640         though it doesn't start a sexp (bug#10094).
12642 2011-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12644         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12646 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12648         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12649         Use force-same-window.
12651 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
12653         * descr-text.el (describe-char-unicode-data):
12654         * json.el (json-string-escape):
12655         * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12656         (Footnote-unicode, Footnote-style-p):
12657         * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12659 2011-11-20  Chong Yidong  <cyd@gnu.org>
12661         * window.el (replace-buffer-in-windows): Restore interactive spec.
12663 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12665         * electric.el (electric-indent-mode): Fix last change (too optimistic).
12667         * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12668         (byte-compile-global-not-obsolete-vars): New var.
12669         (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12670         Use it.
12671         (byte-compile-warn-obsolete): Align text with the one in *Help*.
12673 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
12675         * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12676         * progmodes/pascal.el (electric-pascal-equal):
12677         * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12678         * xml.el (xml-substitute-special): Fix typos.
12680 2011-11-20  Glenn Morris  <rgm@gnu.org>
12682         * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12683         (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12684         Doc fixes.
12685         (rmail-decode-mime-charset): Mark as obsolete.
12687         * mail/rmailsum.el (rmail-message-regexp-p-1):
12688         * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12689         Before using mime functions, check they are set.  (Bug#10077)
12691 2011-11-19  Juri Linkov  <juri@jurta.org>
12693         * info.el (Info-finder-find-node): Use `package--builtins' instead
12694         of `package-alist'.  Use node names formed by the pattern "Keyword "
12695         and the keyword name.
12697 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
12699         * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
12701 2011-11-19  Juri Linkov  <juri@jurta.org>
12703         * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12704         that calls `revert-buffer' on all Info buffers.  (Bug#9915)
12705         (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12706         `old-history', `old-history-forward'.  Add let-binding
12707         `window-selected'.  Remove calls to `kill-buffer',
12708         `switch-to-buffer' and `Info-mode'.  Set `Info-current-file' to nil
12709         before calling `Info-find-node', so `Info-find-node-2' will reread
12710         the Info file.  Restore window positions only when `window-selected'
12711         is non-nil.
12713 2011-11-19  Juri Linkov  <juri@jurta.org>
12715         * isearch.el (isearch-lazy-highlight-new-loop):
12716         Remove condition `(not isearch-error)'.  (Bug#9918)
12718         * misearch.el (multi-isearch-search-fun): Add condition
12719         `(not bound)' to ignore lazy-highlighting search.
12720         Add the search-failed message "end of multi" when the end of
12721         multi-sequence is reached.  Uncapitalize the search-failed
12722         message "Repeat for next buffer".
12724         * info.el (Info-search): Add the search-failed message
12725         "end of the manual" when the end of the manual is reached
12726         in Isearch mode.
12728 2011-11-19  Juri Linkov  <juri@jurta.org>
12730         * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12731         Use non-destructive `remove' instead of `delete' because
12732         `Info-history-list' stored to `Info-isearch-initial-history-list' in
12733         `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12735 2011-11-19  Juri Linkov  <juri@jurta.org>
12737         * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12738         to nil instead of binding `search-ring' and `regexp-search-ring'.
12739         (Bug#9185)
12741 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
12743         * simple.el (line-move): Force movement by logical lines for any
12744         hscrolled window, not only when auto-hscroll-mode is on.
12745         (line-move-visual): Update doc string to that effect.  (Bug#10076)
12747 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
12749         * language/european.el (macintosh): Define as alias for mac-roman.
12751 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
12753         * mail/rmailmm.el (rmail-mime-display-header)
12754         (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12755         (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12756         (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12757         (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12758         (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12759         of a raw aref.
12760         (rmail-mime-entity-segment): To get past the tagline, move forward
12761         2 more lines, to account for the 2 empty lines that precede and
12762         follow the line with the buttons.
12763         (rmail-mime-update-tagline): Move one more line, to get past the
12764         empty line that follows the buttons in the tagline.  (Bug#9520)
12766 2011-11-19  Martin Rudalics  <rudalics@gmx.at>
12768         * window.el (window-max-delta-1, window-min-delta-1)
12769         (window-min-size-1, window-state-get-1, window-state-put-1)
12770         (window-state-put-2): Use "window--" prefix.
12772 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
12774         * emacs-lisp/smie.el: Improve warnings and conflict detection.
12775         (smie-warning-count): New var.
12776         (smie-set-prec2tab): Use it.
12777         (smie-bnf->prec2): Improve warnings.  Add docstring.
12778         (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
12779         (smie-bnf--set-class): New function.
12780         (smie-bnf--classify): Rename from smie-bnf-classify.  Rewrite to fix
12781         corner case.
12783         * progmodes/compile.el: Obey compilation-first-column in dest buffer.
12784         (compilation-error-properties, compilation-move-to-column):
12785         Handle compilation-first-column while in the target buffer.
12787         * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
12788         Don't hardcode point-min==1.
12790         * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
12791         (eshell-rewrite-for-command): Remove workaround.
12792         (eshell-do-pipelines, eshell-do-pipelines-synchronously)
12793         (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
12794         * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
12796         * files-x.el (modify-file-local-variable): Obey commenting conventions.
12798 2011-11-17  Glenn Morris  <rgm@gnu.org>
12800         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12801         Ignore buffer-local generated-autoload-file if it is the same
12802         as the global value.  (Bug#10049)
12804 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
12806         * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
12807         (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
12808         (reftex-toc-previous-heading, reftex-toc-max-level)
12809         (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
12810         (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
12811         (reftex-toc-do-promote, reftex-toc-promote-prepare)
12812         (reftex-toc-promote-action, reftex-toc-extract-section-number)
12813         (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
12814         (reftex-toc-rename-label, reftex-toc-visit-location)
12815         (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
12816         (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
12817         (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
12818         leaving "*toc*" only for references to the buffer.
12820 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
12822         * window.el (window-resize, delete-window, split-window):
12823         Replace window-splits by window-combination-resize.
12824         * cus-start.el (window-splits): Replace by window-combination-resize.
12826 2011-11-17  Glenn Morris  <rgm@gnu.org>
12828         * progmodes/sh-script.el (sh-font-lock-keywords-var):
12829         Make bash entry derive from sh entry, not shell entry.
12831 2011-11-16  Michael Albinus  <michael.albinus@gmx.de>
12833         * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
12834         local file name.
12836 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
12838         * menu-bar.el (menu-bar-file-menu):
12839         * printing.el (pr-ps-utility):
12840         * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
12841         (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
12842         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
12843         (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
12844         (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
12845         (icalendar--convert-cyclic-to-ical)
12846         (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
12847         (icalendar--convert-ical-to-diary)
12848         (icalendar--convert-recurring-to-diary)
12849         (icalendar--convert-non-recurring-all-day-to-diary)
12850         (icalendar-import-format-sample):
12851         * progmodes/idlw-shell.el (idlwave-shell-mode):
12852         * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
12853         (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
12854         (vhdl-ps-print-init): Fix typos.
12856 2011-11-16  Ken Manheimer  <ken.manheimer@gmail.com>
12858         * allout.el, allout-widgets.el (file metadata): Attribute copyright to
12859         FSF and collapse date sequence, obscure author/maintainer email address
12860         better, remove extra version line, track relocation of author's webpage.
12862         * progmodes/python.el (python-pdbtrack-input-prompt)
12863         (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
12864         regular python pdb prompts.  Adjustments shamelessly taken exactly as
12865         suggested in EmacsWiki page (tiny change):
12866         http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
12868 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
12870         * expand.el (expand-pos, expand-index, expand-point):
12871         Remove redundant info from docstring.
12872         (expand-add-abbrevs): Doc fix.
12873         (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
12874         (expand-sample-perl-mode-expand-list): Fix typos.
12876         * net/dbus.el (dbus-event-member-name):
12877         * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
12878         * term/pc-win.el (msdos-create-frame-with-faces):
12879         * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
12881 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
12883         * window.el (split-window, window-state-get-1)
12884         (window-state-put-1, window-state-put-2): Rename occurrences of
12885         window-nest to window-combination-limit.
12886         * cus-start.el (window-nest): Rename to window-combination-limit.
12888 2011-11-16  Chong Yidong  <cyd@gnu.org>
12890         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
12891         regexp (Bug#10033).
12893 2011-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12895         * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
12896         `completing-read' will remove *Completions* and will preserve
12897         current-buffer for us.
12898         (tmm-add-prompt): Users of *Completions* will always (re)set its
12899         major mode.
12900         (tmm-old-comp-map): Remove.
12902 2011-11-16  Glenn Morris  <rgm@gnu.org>
12904         * mail/rmailedit.el: Require rmailmm when compiling.
12905         (rmail-old-mime-state): New declaration.
12906         (rmail-edit-current-message): If editing a mime message,
12907         edit the "raw" message from the mbox buffer.
12908         (rmail-cease-edit): Handle mime messages.  (Bug#9840)
12910 2011-11-15  Glenn Morris  <rgm@gnu.org>
12912         * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
12913         which wasn't being used.  Add optional arg to force given state.
12914         (rmail-mime): Add optional arg to force given state.
12916 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
12918         * allout.el (allout-encryption-plaintext-sanitization-regexps):
12919         * frame.el (display-mm-dimensions-alist):
12920         * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
12921         (outline-move-subtree-down):
12922         * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
12923         (newsticker--treeview-do-get-node):
12924         * net/quickurl.el (quickurl-list-buffer-name):
12925         * progmodes/dcl-mode.el (dcl-mode):
12926         * progmodes/gdb-mi.el (gdb-mapcar*):
12927         * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
12929 2011-11-15  Glenn Morris  <rgm@gnu.org>
12931         * mail/rmail.el (rmail-file-coding-system): It's only ever used
12932         in a boolean sense, so just make it a boolean, and fix the doc.
12933         (rmail-show-mime-function, rmail-mime-feature)
12934         (rmail-require-mime-maybe): Doc fixes.
12935         (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
12937         * mail/rmailmm.el (rmail-show-mime): Doc fix.
12939 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
12941         * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
12942         (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
12943         (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
12944         (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
12946 2011-11-15  Glenn Morris  <rgm@gnu.org>
12948         * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
12949         (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
12950         (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
12951         (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
12952         (rmail-mime, rmail-show-mime): Doc fixes.
12954         * term/ns-win.el (mode-line-frame-identification):
12955         Leave it alone.  (Bug#10051)
12957         * simple.el (mark-whole-buffer): Doc fix.  (Bug#10023)
12959         * mail/rmailout.el (rmail-output-to-rmail-buffer):
12960         Handle empty buffers.  (Bug#9978)
12962 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
12964         * international/mule.el (define-charset):
12965         * mail/rmailmm.el (rmail-mime-find-header-encoding):
12966         * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
12967         * progmodes/verilog-mode.el (verilog-backward-token):
12968         * textmodes/ispell.el (lookup-words):
12969         * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
12971 2011-11-14  Glenn Morris  <rgm@gnu.org>
12973         * progmodes/executable.el
12974         (executable-make-buffer-file-executable-if-script-p):
12975         Handle file-modes returning nil.
12977         * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
12978         message - not necessary, and causes problems.  (Bug#9831)
12980         * mail/rmailsum.el (rmail-new-summary): Preserve message number.
12982         * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
12984         * mail/rmailsum.el (rmail-summary, rmail-new-summary)
12985         (rmail-new-summary-1): Allow empty summaries.  (Bug#9964)
12986         (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
12988 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
12990         * window.el (window-resize, delete-window): Use window-splits
12991         variable instead of function.
12992         (window-state-get-1, window-state-put-2, window-state-put):
12993         Don't deal with windows' splits status.
12995 2011-11-12  Glenn Morris  <rgm@gnu.org>
12997         * apropos.el (apropos-do-all, apropos-library, apropos-value)
12998         (apropos-documentation): Doc fixes.
13000 2011-11-11  Juanma Barranquero  <lekktu@gmail.com>
13002         * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
13003         * textmodes/sgml-mode.el (html-tag-help): Fix typos.
13005 2011-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13007         * electric.el (electric-indent-post-self-insert-function): Make it
13008         possible for a char to only indent in some circumstances.
13009         (electric-indent-mode): Simplify.
13011 2011-11-11  Martin Rudalics  <rudalics@gmx.at>
13013         * window.el (windows-with-parameter): Remove unused function.
13014         (windows-at-side): Rename to window-at-side-list.
13015         (window-check, window-atom-check, window-atom-check-1)
13016         (window-side-check, window-size-ignore, window-size-fixed-1)
13017         (window-in-direction-2): Prefix with "window--".
13018         (window-tree-1): Rename to window--subtree, fix doc-string.
13020 2011-11-11  Glenn Morris  <rgm@gnu.org>
13022         * subr.el (eval-after-load): If FILE is already loaded,
13023         evaluate FORM before it gets wrapped in more stuff.  (Bug#10009)
13025 2011-11-10  Glenn Morris  <rgm@gnu.org>
13027         * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
13028         Call svn via vc-svn-command rather than vc-do-command.
13029         (vc-svn-command): Add --non-interactive.  (Bug#9993)
13030         (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
13032         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13033         Add toggle-read-only.  (Bug#7292)
13034         * files.el (toggle-read-only): Mention that it should only
13035         be used interactively.  (Bug#10006)
13037 2011-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13039         * progmodes/compile.el (compilation-error-regexp-alist-alist):
13040         Adjust regexp for OCaml warnings.
13042         * electric.el (electric-pair-post-self-insert-function): Let user
13043         turn it off buffer-locally (bug#9932).
13045         * progmodes/python.el (python-beginning-of-statement):
13046         Rewrite (bug#2703).
13048         * progmodes/compile.el: Better handle TABs (bug#9749).
13049         (compilation-internal-error-properties)
13050         (compilation-next-error-function): Obey the target buffer's
13051         compilation-error-screen-columns.
13053 2011-11-09  Juanma Barranquero  <lekktu@gmail.com>
13055         * progmodes/meta-mode.el: Remove obsolete comments.
13056         (meta-right-comment-regexp, meta-ignore-comment-regexp):
13057         Fix typos in docstrings.
13059 2011-11-09  Martin Rudalics  <rudalics@gmx.at>
13061         * window.el (window-size-fixed-p): Rewrite doc-string.
13062         (window-resizable-p): Rename to window--resizable-p.  Update callers.
13063         (window--resizable): New function.  Make all callers of
13064         window-resizable call window--resizable instead.
13065         (window-resizable): Rewrite in terms of window--resizable.
13067 2011-11-08  Glenn Morris  <rgm@gnu.org>
13069         * progmodes/delphi.el (delphi-mode-syntax-table):
13070         Let define-derived-mode define a proper syntax table.  (Bug#9994)
13072 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13074         * window.el: Stay away from defsubst.
13075         (window-list-no-nils): Remove.
13076         (window-state-get-1, window-state-get): Use backquote instead.
13078 2011-11-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13080         * emacs-lisp/find-func.el (find-function-read):
13081         Fix incorrect use of default argument in `completing-read'.
13083 2011-11-08  Martin Rudalics  <rudalics@gmx.at>
13085         * window.el (display-buffer-function, special-display-function):
13086         Mention display-buffer-record-window but do not mention
13087         help-setup parameter in doc-strings.
13088         (window-min-delta): Fix doc-string typo.
13090 2011-11-08  Chong Yidong  <cyd@gnu.org>
13092         * window.el (window-total-height, window-total-width): Doc fix.
13093         (window-body-size): Move from C.
13094         (window-body-height, window-body-width): Move to C.
13096 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13098         * window.el: Make special-display like display-buffer-alist (bug#9532).
13099         (display-buffer--special-action): New function, morphed
13100         from display-buffer--special.
13101         (display-buffer): Use it to handle special-display-buffers at higher
13102         priority (just after display-buffer-alist).
13103         (display-buffer-fallback-action, display-buffer--other-frame-action)
13104         (pop-to-buffer-same-window): Remove display-buffer--special.
13106 2011-11-07  Glenn Morris  <rgm@gnu.org>
13108         * calendar/cal-menu.el (cal-menu-set-date-title):
13109         Do nothing if not in a calendar.  (Bug#9976)
13111 2011-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13113         * files.el (find-file): Always use selected-window.
13115 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
13117         * window.el (window-combinations): Make WINDOW argument
13118         mandatory.  Rewrite doc-string.
13119         (walk-window-subtree, window-atom-check, window-min-delta)
13120         (window-max-delta, window--resize-this-window)
13121         (window--resize-root-window-vertically, window-tree)
13122         (balance-windows, window-state-put): Rewrite doc-strings as to
13123         not mention the term "subwindow".
13124         (window--resize-subwindows-skip-p): Rename to
13125         window--resize-child-windows-skip-p.
13126         (window--resize-subwindows-normal): Rename to
13127         window--resize-child-windows-normal.
13128         (window--resize-subwindows): Rename to
13129         window--resize-child-windows.
13130         (window-or-subwindow-p): Rename to window--in-subtree-p.
13132 2011-11-07  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
13134         * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
13135         Ensure that mbox format messages end in two newlines (Bug#9974).
13137 2011-11-06  Chong Yidong  <cyd@gnu.org>
13139         * window.el (window-combination-p): Function deleted; its
13140         side-effect is not used in any existing code.
13141         (window-combinations, window-combined-p): Call window-*-child
13142         directly.
13144 2011-11-05  Chong Yidong  <cyd@gnu.org>
13146         * window.el (window-valid-p): Rename from window-any-p.
13147         (window-size-ignore, window-state-get): Callers changed.
13148         (window-normalize-window): Rename from window-normalize-any-window.
13149         New arg LIVE-ONLY, replacing window-normalize-live-window.
13150         (window-normalize-live-window): Delete.
13151         (window-combination-p, window-combined-p, window-combinations)
13152         (walk-window-subtree, window-atom-root, window-min-size)
13153         (window-sizable, window-sizable-p, window-size-fixed-p)
13154         (window-min-delta, window-max-delta, window-resizable)
13155         (window-resizable-p, window-full-height-p, window-full-width-p)
13156         (window-current-scroll-bars, window-point-1, set-window-point-1)
13157         (window-at-side-p, window-in-direction, window-resize)
13158         (adjust-window-trailing-edge, maximize-window, minimize-window)
13159         (window-deletable-p, delete-window, delete-other-windows)
13160         (record-window-buffer, unrecord-window-buffer)
13161         (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
13162         (quit-window, split-window, window-state-put)
13163         (set-window-text-height, fit-window-to-buffer)
13164         (shrink-window-if-larger-than-buffer): Callers changed.
13166 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
13168         * mail/rmail.el (rmail-simplified-subject): Decode subject with
13169         rfc2047-decode-string.
13170         (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
13171         warnings.
13173         * window.el (window-body-height, window-body-width): Mention in
13174         the doc string that the return values are in frame's canonical
13175         units.  (Bug#9949)
13177 2011-11-03  Alan Mackenzie  <acm@muc.de>
13179         * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
13180         change in cc-engine.el.
13182 2011-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13184         * window.el (switch-to-buffer): Use `force-same-window' interactively.
13186 2011-11-02  Martin Rudalics  <rudalics@gmx.at>
13188         * window.el (quit-window): Call unrecord-window-buffer after
13189         showing another buffer in the window.  (Bug#9937)
13190         (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
13192 2011-11-02  Juanma Barranquero  <lekktu@gmail.com>
13194         * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
13195         Accept status with more than 9 shelves.  (Bug#9935)
13196         Reported by Colin D Bennett <colin@gibibit.com>.
13198 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
13200         * help.el (with-help-window): Don't reference
13201         temp-buffer-show-specifiers in doc-string.
13203 2011-10-31  Andreas Schwab  <schwab@linux-m68k.org>
13205         * subr.el (keymap--menu-item-with-binding): Ignore item if not a
13206         menu-item.
13208 2011-10-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13210         * whitespace.el: New version 13.2.2.
13211         (whitespace-newline-mode): Disable properly.  Reported by Sarah
13212         <EmacsWiki>.
13214 2011-10-30  Ulf Jasper  <ulf.jasper@web.de>
13216         * net/newst-treeview.el: Remove "Time-stamp".
13217         (newsticker--group-manage-orphan-feeds): Do not call
13218         newsticker--treeview-tree-update.
13219         (newsticker-treeview-update, newsticker-treeview):
13220         Call newsticker--treeview-tree-update if necessary.
13222 2011-10-30  Martin Rudalics  <rudalics@gmx.at>
13224         * window.el (window-iso-combination-p, window-iso-combined-p)
13225         (window-iso-combinations): Remove "iso-" infix.
13226         Suggested by Chong Yidong.
13227         (window-min-size-1, window-size-fixed-1, window-min-delta-1)
13228         (window-max-delta-1, window-resize, window--resize-siblings)
13229         (window--resize-this-window, adjust-window-trailing-edge)
13230         (split-window, balance-windows-1)
13231         (shrink-window-if-larger-than-buffer):
13232         * calendar/calendar.el (calendar-generate-window):
13233         * help.el (resize-temp-buffer-window): Adjust callers accordingly.
13235 2011-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13237         * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
13238         in place (bug#9907).
13239         (eshell-subcommand-arg-values, eshell-rewrite-named-command)
13240         (eshell-rewrite-if-command, eshell-rewrite-for-command)
13241         (eshell-structure-basic-command, eshell-rewrite-while-command)
13242         (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
13243         (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
13244         (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
13245         (eshell-do-pipelines-synchronously, eshell-eval-command):
13246         Use backquotes and prefer setq to set.
13247         (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
13248         (eshell-macrop): Use functionp.
13249         (eshell-do-eval): Handle multiple expressions in `while' body.
13251 2011-10-30  Chong Yidong  <cyd@gnu.org>
13253         * emulation/viper-cmd.el (viper-exec-change): Use push-mark
13254         instead of set-mark (Bug#9810).
13256 2011-10-30  Chong Yidong  <cyd@gnu.org>
13258         * window.el (split-window-below, split-window-right): Rename from
13259         split-window-above-each-other and split-window-side-by-side
13260         respectively.  All callers changed.
13261         (split-window-sensibly, split-window-sensibly): Use them.
13262         (split-window-keep-point): Doc fix.
13264         * isearch.el: Add isearch-scroll property to split-window-below
13265         and split-window-right.
13267         * follow.el (follow-mode):
13268         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13269         * progmodes/ada-xref.el (ada-gdb-application):
13270         * emulation/vip.el (vip-buffer-in-two-windows):
13271         * image-dired.el (image-dired-dired-with-window-configuration):
13272         * dired-x.el (dired-do-find-marked-files):
13273         * dired.el (dired-pop-to-buffer):
13274         * bs.el (bs--show-with-configuration):
13275         * vc/emerge.el (emerge-setup-windows):
13276         * textmodes/two-column.el (2C-two-columns):
13277         * textmodes/reftex-toc.el (reftex-toc):
13278         * progmodes/gdb-mi.el (gdb-setup-windows):
13279         * progmodes/fortran.el (fortran-window-create):
13280         * net/newst-treeview.el (newsticker--treeview-window-init):
13281         * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
13282         * emulation/tpu-edt.el (tpu-gold-map):
13283         * emulation/crisp.el (crisp-mode-map):
13284         * calendar/calendar.el (calendar-basic-setup): Callers changed.
13286 2011-10-29  Chong Yidong  <cyd@gnu.org>
13288         * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
13290         * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
13292         * textmodes/flyspell.el (flyspell-word): Fix char offset for
13293         forged Ispell output (Bug#7904).
13295         * emacs-lisp/package.el (package-refresh-contents): Add autoload.
13297 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13299         * doc-view.el: Avoid ugly errors about not finding nil.
13300         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
13301         (doc-view-dvipdf-program, doc-view-unoconv-program)
13302         (doc-view-ps2pdf-program, doc-view-pdftotext-program):
13303         Avoid nil or absolute file name as default value.
13304         (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
13306 2011-10-28  Alan Mackenzie  <acm@muc.de>
13308         * progmodes/cc-defs.el (c-version): -> 5.32.2.
13310 2011-10-28  Alan Mackenzie  <acm@muc.de>
13312         Amend the handling of c-beginning/end-of-defun in nested declaration
13313         scopes.
13315         * progmodes/cc-vars.el (c-defun-tactic): Move here from
13316         cc-langs.el.  Change it to a defcustom.
13318         * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
13319         cc-vars.el.
13321         * progmodes/cc-engine.el (c-beginning-of-statement-1):
13322         Prevent "class foo : bar" being spuriously recognized as a label.
13324         * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
13325         Add parameter `inclusive' (to include enclosing braces in the region).
13326         (c-widen-to-enclosing-decl-scope): New function.
13327         (c-while-widening-to-decl-block): New macro.
13328         (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
13329         outward for defun boundaries, and correspondingly change symbol
13330         `respect-enclosure' to `go-outward'.
13331         (c-declaration-limits): Change algorithm to report only the "innermost"
13332         defun's boundaries.
13334 2011-10-28  Deniz Dogan  <deniz@dogan.se>
13336         * net/rcirc.el (rcirc-mode): Use hard newlines.
13338 2011-10-28  Alan Mackenzie  <acm@muc.de>
13340         Amend to indent and fontify macros "which include their own semicolon"
13341         correctly, using the "virtual semicolon" mechanism.
13343         * progmodes/cc-defs.el: Update "virtual semicolon" comments.
13345         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
13346         Recode to scan one line at a time rather than having \n and \r
13347         explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
13348         (c-forward-label): Amend for virtual semicolons.
13349         (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
13351         * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
13352         of the new C macros.
13354         * progmodes/cc-langs.el (c-at-vsemi-p-fn):
13355         (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
13356         (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
13357         (c-opt-cpp-macro-define): Make into a full language variable.
13358         (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
13359         AWK Mode (including \n, \r) removed, no longer needed.
13361         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
13362         Invoke c-make-macro-with-semi-re.
13364         * progmodes/cc-vars.el (c-macro-with-semi-re):
13365         (c-macro-names-with-semicolon): New variables.
13366         (c-make-macro-with-semi-re): New function.
13368 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13370         * vc/log-edit.el: Fill empty field rather than adding new one.
13371         (log-edit-add-field): New function.
13372         (log-edit-insert-changelog): Use it.
13374 2011-10-28  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
13376         * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
13378 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13380         * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
13381         (gdb--check-interpreter): New function.
13382         (gdb): Use it.
13384 2011-10-27  Glenn Morris  <rgm@gnu.org>
13386         * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
13387         (least-positive-float, least-negative-float)
13388         (least-positive-normalized-float, least-negative-normalized-float)
13389         (float-epsilon, float-negative-epsilon):
13390         Remove unnecessary declarations.
13392         * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
13393         * emacs-lisp/cl.el (most-positive-float, most-negative-float)
13394         (least-positive-float, least-negative-float)
13395         (least-positive-normalized-float, least-negative-normalized-float)
13396         (float-epsilon, float-negative-epsilon): Add doc-strings,
13397         based on those in cl.texi.
13399         * files.el (set-visited-file-name): If the major-mode changed,
13400         reload the local variables.  (Bug#9796)
13402 2011-10-27  Chong Yidong  <cyd@gnu.org>
13404         * subr.el (change-major-mode-after-body-hook): New hook.
13405         (run-mode-hooks): Run it.
13407         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13408         Use change-major-mode-before-body-hook.
13410         * simple.el (fundamental-mode):
13411         * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
13412         change introducing fundamental-mode-hook.
13414 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
13416         * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
13418 2011-10-26  Michael Albinus  <michael.albinus@gmx.de>
13420         * ido.el (ido-file-name-all-completions-1): Do not require
13421         tramp.el explicitly.  (Bug#7583)
13423 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
13425         * progmodes/octave-mod.el:
13426         * progmodes/octave-inf.el: Update maintainer.
13428 2011-10-26  Chong Yidong  <cyd@gnu.org>
13430         * subr.el (with-wrapper-hook): Rewrite doc.
13432 2011-10-25  Michael Albinus  <michael.albinus@gmx.de>
13434         * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
13435         filenames "/method:foo:".  (Bug#9793)
13437 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13439         * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
13440         (bug#9865).
13442 2011-10-24  Glenn Morris  <rgm@gnu.org>
13444         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.  (Bug#9819)
13446 2011-10-24  Michael Albinus  <michael.albinus@gmx.de>
13448         * notifications.el: Add the requirement of a running D-Bus session
13449         bus to the Commentary.
13451 2011-10-24  Juri Linkov  <juri@jurta.org>
13453         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
13454         `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
13455         (Bug#9364)
13457 2011-10-24  Juri Linkov  <juri@jurta.org>
13459         * info.el (Info-following-node-name-re): Add newline to the list
13460         of allowed characters for leading space.  (Bug#9824)
13462 2011-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13464         * progmodes/octave-inf.el (inferior-octave-mode-map):
13465         Fix C-c C-h binding.
13466         * progmodes/octave-mod.el (octave-help): Remove.
13468 2011-10-23  Michael Albinus  <michael.albinus@gmx.de>
13470         Sync with Tramp 2.2.3.
13472         * net/tramp-cache.el (top): Pacify byte-compiler using
13473         `init-file-user' and `site-run-file'.
13475         * net/trampver.el: Update release number.
13477 2011-10-23  Chong Yidong  <cyd@gnu.org>
13479         * files.el (toggle-read-only): Remove obsolete comment about
13480         version control.
13482         * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
13483         for toggle-read-only.  Note that this hasn't called vc-next-action
13484         since 2008-05-02, though it wasn't documented at the time.
13486         * vc/ediff-init.el (ediff-toggle-read-only-function):
13487         Use toggle-read-only.
13489 2011-10-22  Alan Mackenzie  <bug-cc-mode@gnu.org>
13491         Fix bug #9560, sporadic wrong indentation; improve instrumentation
13492         of c-parse-state.
13494         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13495         correct faulty logical expression.
13496         (c-parse-state-state, c-record-parse-state-state):
13497         (c-replay-parse-state-state): New defvar/defuns.
13498         (c-debug-parse-state): Use new functions.
13500 2011-10-22  Martin Rudalics  <rudalics@gmx.at>
13502         * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
13503         last fix.  Use window-in-direction correctly.
13505 2011-10-21  Chong Yidong  <cyd@gnu.org>
13507         * progmodes/idlwave.el (idlwave-mode):
13508         * progmodes/vera-mode.el (vera-mode): No need to set
13509         require-final-newline; that's done in prog-mode.
13510         Suggested by Stefan Monnier.
13512 2011-10-21  Martin Rudalics  <rudalics@gmx.at>
13514         * mouse.el (mouse-drag-window-above)
13515         (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
13516         (mouse-drag-mode-line-1, mouse-drag-header-line)
13517         (mouse-drag-vertical-line-rightward-window): Remove.
13518         (mouse-drag-line): New function.
13519         (mouse-drag-mode-line, mouse-drag-header-line)
13520         (mouse-drag-vertical-line): Call mouse-drag-line.
13521         * window.el (window-at-side-p, windows-at-side): New functions.
13523 2011-10-21  Ulrich Mueller  <ulm@gentoo.org>
13525         * tar-mode.el (tar-grind-file-mode):
13526         Fix handling of setuid/setgid, handle sticky bit.  (Bug#9817)
13528 2011-10-21  Chong Yidong  <cyd@gnu.org>
13530         * progmodes/idlwave.el (idlwave-mode):
13531         * progmodes/vera-mode.el (vera-mode):
13532         Use mode-require-final-newline.
13534 2011-10-20  Glenn Morris  <rgm@gnu.org>
13536         * vc/vc.el (vc-next-action): Handle removed directories.  (Bug#9781)
13538 2011-10-20  Christoph Scholtes  <cschol2112@googlemail.com>
13540         * emulation/cua-base.el (cua-set-mark): Fix case of string.
13542 2011-10-20  Chong Yidong  <cyd@gnu.org>
13544         * emulation/cua-base.el (cua-mode):
13545         * mail/footnote.el (footnote-mode):
13546         * mail/mailabbrev.el (mail-abbrevs-mode):
13547         * net/xesam.el (xesam-minor-mode):
13548         * progmodes/bug-reference.el (bug-reference-mode):
13549         * progmodes/cap-words.el (capitalized-words-mode):
13550         * progmodes/compile.el (compilation-minor-mode)
13551         (compilation-shell-minor-mode):
13552         * progmodes/gud.el (gud-tooltip-mode):
13553         * progmodes/hideif.el (hide-ifdef-mode):
13554         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
13555         * progmodes/subword.el (subword-mode):
13556         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13557         * progmodes/which-func.el (which-function-mode):
13558         * term/tvi970.el (tvi970-set-keypad-mode):
13559         * term/vt100.el (vt100-wide-mode):
13560         * textmodes/flyspell.el (flyspell-mode):
13561         * textmodes/ispell.el (ispell-minor-mode):
13562         * textmodes/nroff-mode.el (nroff-electric-mode):
13563         * textmodes/paragraphs.el (use-hard-newlines):
13564         * textmodes/refill.el (refill-mode):
13565         * textmodes/reftex.el (reftex-mode):
13566         * textmodes/rst.el (rst-minor-mode):
13567         * textmodes/sgml-mode.el (html-autoview-mode)
13568         (sgml-electric-tag-pair-mode):
13569         * textmodes/tex-mode.el (latex-electric-env-pair-mode):
13570         * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
13571         * emulation/crisp.el (crisp-mode):
13572         * emacs-lisp/eldoc.el (eldoc-mode):
13573         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
13574         minor mode behavior.
13576 2011-10-19  Juri Linkov  <juri@jurta.org>
13578         * descr-text.el (describe-char): Add #x2010 and #x2011 to
13579         the list of hard-coded chars with escape-glyph face.
13581 2011-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13583         * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
13585 2011-10-19  Michael Albinus  <michael.albinus@gmx.de>
13587         * net/tramp.el (tramp-connectable-p): Make a stronger check on a
13588         running process.
13590 2011-10-19  Glenn Morris  <rgm@gnu.org>
13592         * vc/vc-bzr.el (vc-bzr-after-dir-status):
13593         Ignore ignored files.  (Bug#9726)
13595 2011-10-19  Chong Yidong  <cyd@gnu.org>
13597         Doc fix for minor modes, stating that an omitted argument enables
13598         the mode unconditionally when called from Lisp.
13600         * abbrev.el (abbrev-mode):
13601         * allout.el (allout-mode):
13602         * autoinsert.el (auto-insert-mode):
13603         * autoarg.el (autoarg-mode, autoarg-kp-mode):
13604         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13605         (global-auto-revert-mode):
13606         * battery.el (display-battery-mode):
13607         * composite.el (global-auto-composition-mode)
13608         (auto-composition-mode):
13609         * delsel.el (delete-selection-mode):
13610         * desktop.el (desktop-save-mode):
13611         * dired-x.el (dired-omit-mode):
13612         * dirtrack.el (dirtrack-mode):
13613         * doc-view.el (doc-view-minor-mode):
13614         * double.el (double-mode):
13615         * electric.el (electric-indent-mode, electric-pair-mode):
13616         * emacs-lock.el (emacs-lock-mode):
13617         * epa-hook.el (auto-encryption-mode):
13618         * follow.el (follow-mode):
13619         * font-core.el (font-lock-mode):
13620         * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
13621         * help.el (temp-buffer-resize-mode):
13622         * hilit-chg.el (highlight-changes-mode)
13623         (highlight-changes-visible-mode):
13624         * hi-lock.el (hi-lock-mode):
13625         * hl-line.el (hl-line-mode, global-hl-line-mode):
13626         * icomplete.el (icomplete-mode):
13627         * ido.el (ido-everywhere):
13628         * image-file.el (auto-image-file-mode):
13629         * image-mode.el (image-minor-mode):
13630         * iswitchb.el (iswitchb-mode):
13631         * jka-cmpr-hook.el (auto-compression-mode):
13632         * linum.el (linum-mode):
13633         * longlines.el (longlines-mode):
13634         * master.el (master-mode):
13635         * mb-depth.el (minibuffer-depth-indicate-mode):
13636         * menu-bar.el (menu-bar-mode):
13637         * minibuf-eldef.el (minibuffer-electric-default-mode):
13638         * mouse-sel.el (mouse-sel-mode):
13639         * msb.el (msb-mode):
13640         * mwheel.el (mouse-wheel-mode):
13641         * outline.el (outline-minor-mode):
13642         * paren.el (show-paren-mode):
13643         * recentf.el (recentf-mode):
13644         * reveal.el (reveal-mode, global-reveal-mode):
13645         * rfn-eshadow.el (file-name-shadow-mode):
13646         * ruler-mode.el (ruler-mode):
13647         * savehist.el (savehist-mode):
13648         * scroll-all.el (scroll-all-mode):
13649         * scroll-bar.el (scroll-bar-mode):
13650         * server.el (server-mode):
13651         * shell.el (shell-dirtrack-mode):
13652         * simple.el (auto-fill-mode, transient-mark-mode)
13653         (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13654         (line-number-mode, column-number-mode, size-indication-mode)
13655         (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13656         * strokes.el (strokes-mode):
13657         * time.el (display-time-mode):
13658         * t-mouse.el (gpm-mouse-mode):
13659         * tool-bar.el (tool-bar-mode):
13660         * tooltip.el (tooltip-mode):
13661         * type-break.el (type-break-mode-line-message-mode)
13662         (type-break-query-mode):
13663         * view.el (view-mode):
13664         * whitespace.el (whitespace-mode, whitespace-newline-mode)
13665         (global-whitespace-mode, global-whitespace-newline-mode):
13666         * xt-mouse.el (xterm-mouse-mode): Doc fix.
13668         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13669         Fix autogenerated docstring.
13671 2011-10-19  Juri Linkov  <juri@jurta.org>
13673         * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13674         by checking environment variables "DESKTOP_SESSION" and
13675         "XDG_CURRENT_DESKTOP".  (Bug#9779)
13677 2011-10-19  Juri Linkov  <juri@jurta.org>
13679         * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13680         (browse-url-chromium-program, browse-url-chromium-arguments):
13681         New defcustoms.
13682         (browse-url-default-browser): Check for `browse-url-chromium' and
13683         call `browse-url-chromium-program'.
13684         (browse-url-chromium): New command.  (Bug#9779)
13686 2011-10-18  Juanma Barranquero  <lekktu@gmail.com>
13688         * facemenu.el (list-colors-duplicates): On Windows, detect more
13689         duplicates by assuming that only colors matching "^System" are
13690         special "system colors".  (Bug#9722)
13692 2011-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
13694         * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13695         to distinguish the author from the committer.
13697 2011-10-18  Michael Albinus  <michael.albinus@gmx.de>
13699         * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13701 2011-10-18  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
13703         * international/mule.el (sgml-html-meta-auto-coding-function):
13704         Add support for detecting encoding in HTML5 specified only as
13705         <meta charset="UTF-8">.  Implementation just makes http-equiv and
13706         content-type parts from HTML4 encoding string optional.  (Bug#9716)
13708 2011-10-18  Glenn Morris  <rgm@gnu.org>
13710         * vc/vc.el (vc-initial-comment): Mark as obsolete.  (Bug#9745)
13712 2011-10-18  Chong Yidong  <cyd@gnu.org>
13714         * faces.el (cursor): Doc fix.
13716 2011-10-17  Chong Yidong  <cyd@gnu.org>
13718         * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13720 2011-10-17  Ryan Barrett  <emacs@ryanb.org>  (tiny change)
13722         * dirtrack.el (dirtrack): Support shell buffers with path
13723         prefixes, e.g. tramp-based remote shells.  (Bug#9647)
13725 2011-10-17  Teodor Zlatanov  <tzz@lifelogs.com>
13727         * json.el: Bump version to 1.3 and note change in History.
13728         (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13730 2011-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13732         * comint.el (comint-insert-input, comint-send-input)
13733         (comint-get-old-input-default, comint-backward-matching-input)
13734         (comint-next-prompt): Use nil instead of `input' for field property of
13735         past user input (bug#114).
13737         * minibuffer.el (completion--replace): Inherit surrounding properties
13738         (bug#114).
13739         (minibuffer-complete-and-exit): Use it.
13741         * comint.el (comint--table-subvert): Quote the all-completions output
13742         (bug#9160).
13744 2011-10-17  Martin Rudalics  <rudalics@gmx.at>
13746         * ido.el (ido-default-buffer-method): Remove redundant :type entry.
13748         * menu-bar.el (menu-bar-file-menu): Add entry for making new
13749         window on right of selected.  (Bug#9350) Reword other window
13750         entries and separate them from frame entries.
13752 2011-10-15  Glenn Morris  <rgm@gnu.org>
13754         * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13755         Doc fixes.
13757 2011-10-15  Chong Yidong  <cyd@stupidchicken.com>
13759         * net/network-stream.el (network-stream-open-starttls):
13760         Improve detection of failure due to lack of TLS support.
13762         * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13763         putting the input text in front and in bold.
13765 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13767         * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
13769         * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
13770         empty buffer.
13772         * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
13773         unread-command-events rather than pushing yet-another event.
13775 2011-10-14  Eli Zaretskii  <eliz@gnu.org>
13777         * mail/sendmail.el (sendmail-query-once): Improve the wording of
13778         the explanation of the possible choices.  Make the options passed
13779         to completing-read shorter.
13781 2011-10-13  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13783         * textmodes/flyspell.el (flyspell-large-region): Make sure
13784         extended character mode is used if defined (Bug#1339).
13786 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
13788         * simple.el (what-cursor-position): Fix the display of the
13789         character info for LRE, LRO, RLE, and RLO characters by appending
13790         an invisible PDF.
13792 2011-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13794         * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
13795         even in case of error; add debug spec; simplify data flow.
13796         (with-timeout-handler): Remove.
13798 2011-10-12  Michael Albinus  <michael.albinus@gmx.de>
13800         Fix Bug#6019, Bug#9315.
13802         * files.el (set-auto-mode): Call `file-name-sans-versions' for the
13803         complete `buffer-file-name', the local file name part could look
13804         remotely (for example on VMS).
13806         * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
13807         `tramp-run-real-handler'.
13808         (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
13809         already quoted by '"'.
13811         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
13812         Let `file-name-handler-alist' be nil, the local file name part
13813         could look remotely (for example on VMS).
13815 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13817         * textmodes/flyspell.el (flyspell-word): Move with-local-quit
13818         from here...
13819         (flyspell-post-command-hook): ...to here.
13821 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13823         * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
13824         if not needed.
13825         (sendmail-query-once): Remove OS dependencies.  Make it a 3-way choice
13826         using completion.  Protect against "slow" callers.
13827         Remove the "message hack".
13829 2011-10-11  Juri Linkov  <juri@jurta.org>
13831         * isearch.el (isearch-lazy-highlight-word): New variable.
13832         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
13833         Use it.  (Bug#9727)
13835 2011-10-11  Glenn Morris  <rgm@gnu.org>
13837         * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
13838         like f90-previous-statement does.
13840 2011-10-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13842         * eshell/eshell.el (eshell-command): History should be saved
13843         only in interactive use, to avoid error.
13845 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13847         * minibuffer.el (completion-file-name-table): Fix last change,
13848         i.e. ignore normal errors but not the other ones.
13850 2011-10-10  Martin Rudalics  <rudalics@gmx.at>
13852         * window.el (special-display-buffer-names)
13853         (special-display-regexps): Remove some remnants of earlier
13854         changes from doc-strings.
13855         (quit-windows-on): New function.
13857         * vc/vc.el (vc-revert, vc-rollback):
13858         * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
13859         instead of deleting windows.  (Bug#4557) (Bug#5310) (Bug#5556)
13860         (Bug#6183) (Bug#7074) (Bug#7447)
13862 2011-10-09  Martin Rudalics  <rudalics@gmx.at>
13864         * window.el (frame-auto-hide-function): Add version tag.
13865         (Bug#9699)
13867 2011-10-09  Michael Albinus  <michael.albinus@gmx.de>
13869         * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
13870         condition.
13872 2011-10-09  Leo Liu  <sdl.web@gmail.com>
13874         * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
13875         (Bug#9701)
13877 2011-10-08  Glenn Morris  <rgm@gnu.org>
13879         * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
13880         before the first code statement zero indent.  (Bug#9690)
13882 2011-10-08  Chong Yidong  <cyd@stupidchicken.com>
13884         * simple.el (count-words-region): Always count in the region.
13885         Report the number of lines and characters too.
13886         (count-words): New command, which counts in the buffer if the
13887         region is inactive, as count-words-region used to.
13888         (count-words--message): New function.  Handle plurals.
13889         (count-lines-region): Make it an alias for count-words-region.
13891         * bindings.el (esc-map): Replace count-lines-region with
13892         count-words-region.
13894 2011-10-08  Martin Rudalics  <rudalics@gmx.at>
13896         * window.el (window--delete): Delete dedicated frame
13897         unconditionally when argument KILL is non-nil.  (Bug#9699)
13898         (switch-to-buffer): Fix doc-string typo.
13900 2011-10-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13902         * eshell/eshell.el (eshell-command): Avoid using hooks.
13904 2011-10-07  Chong Yidong  <cyd@stupidchicken.com>
13906         * bindings.el ([M-left],[M-right]): Bind to left-word and
13907         right-word respectively.
13909 2011-10-07  Glenn Morris  <rgm@gnu.org>
13911         * cus-start.el (debug-on-quit): Fix custom type.
13913 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13915         * subr.el (define-key-after): Clarify that the function is not
13916         useful for non-menu keymaps.
13918         * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
13920 2011-10-06  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13922         * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
13923         in current minibuffer (Fix bug with recursive minibuffers).
13925 2011-10-06  Chong Yidong  <cyd@stupidchicken.com>
13927         * progmodes/gdb-mi.el (gdb): Doc fix.
13929 2011-10-05  Martin Rudalics  <rudalics@gmx.at>
13931         * window.el (frame-auto-hide-function): New option replacing
13932         frame-auto-delete.  Suggested by Stefan Monnier.
13933         (window--delete): Call frame-auto-hide-function instead of
13934         investigating frame-auto-delete.
13935         (window-point-1, set-window-point-1): New functions.
13936         (window-in-direction, record-window-buffer, window-state-get-1)
13937         (display-buffer-record-window): Use window-point-1 instead of
13938         window-point.
13939         (set-window-buffer-start-and-point): Use set-window-point-1.
13941 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13943         * emacs-lisp/edebug.el: Heed checkdoc recommendations.
13945 2011-10-05  Glenn Morris  <rgm@gnu.org>
13947         * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
13948         (perl-calculate-indent): Suppress scan errors.  (Bug#2205)
13950 2011-10-05  Leo Liu  <sdl.web@gmail.com>
13952         * subr.el (read-char-choice): Fix argument to buffer-live-p which
13953         works with buffer object.
13955 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13957         * mpc.el (mpc-tool-bar-map): Add labels.
13959 2011-10-04  Glenn Morris  <rgm@gnu.org>
13961         * calendar/holidays.el (calendar-check-holidays): Doc fix.
13963 2011-10-04  Martin Rudalics  <rudalics@gmx.at>
13965         * window.el (window--delete): New function.
13966         (frame-auto-delete): Resuscitate option.
13967         (bury-buffer, replace-buffer-in-windows)
13968         (quit-window): Rewrite using window--delete.
13969         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
13970         Pass display-buffer-mark-dedicated to window--display-buffer-2
13971         (Bug#9639).
13973 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13975         * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
13976         returns a list (bug#9554).  Add remote file name completion.
13977         * comint.el (comint--table-subvert): Curry and get quote&unquote
13978         functions as arguments.
13979         (comint--complete-file-name-data): Adjust call accordingly.
13980         * pcomplete.el (pcomplete--table-subvert): Remove.
13981         (pcomplete-completions-at-point): Use comint--table-subvert instead.
13983         * minibuffer.el (completion-table-case-fold): Use currying.
13984         (completion--styles-type, completion--cycling-threshold-type):
13985         New constants.
13986         (completion-styles, completion-category-overrides)
13987         (completion-cycle-threshold): Use them.
13988         * pcomplete.el (pcomplete-completions-at-point): Adjust call to
13989         completion-table-case-fold.
13991 2011-10-03  Stephen Berman  <stephen.berman@gmx.net>
13993         * minibuffer.el (completion-category-overrides): Fix type of styles
13994         and add more user friendly tags (bug#9660).
13996 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13998         * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
13999         (mule-input-method-string): New widget.
14000         (default-input-method, language-info-custom-alist): Use it.
14002 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14004         * pcomplete.el: Require comint.
14005         (pcomplete--common-suffix): Remove.
14006         (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
14007         (pcomplete--table-subvert): Sync with comint--table-subvert.
14008         (pcomplete--entries): Use comint-completion-file-name-table.
14009         * comint.el (comint-unquote-filename): Simplify.
14010         (comint-completion-file-name-table): New function (bug#9616).
14011         (comint--complete-file-name-data): Use it.
14013         * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
14014         (pcmpl-gnu-tar-buffer): Remove.
14015         (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
14016         around.  Make sure pcomplete-suffix-list is only changed temporarily.
14017         Don't look inside the tar's file if it's too large.
14019 2011-10-01  Chong Yidong  <cyd@stupidchicken.com>
14021         * cus-edit.el (custom-mode-map):
14022         * epa.el (epa-key-list-mode-map):
14023         * man.el (Man-mode-map):
14024         * startup.el (splash-screen-keymap):
14025         * simple.el (special-mode-map): Use scroll-up-command and
14026         scroll-down-command.
14028         * progmodes/idlw-help.el (idlwave-help-mode-map):
14029         * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
14030         * net/newst-plainview.el (newsticker-mode-map):
14031         * emulation/ws-mode.el (wordstar-mode-map):
14032         * emulation/vi.el (vi-com-map):
14033         * calc/calc-graph.el (calc-graph-show-dumb):
14034         * term/sun.el (terminal-init-sun):
14035         * term/ns-win.el (global-map):
14036         * progmodes/grep.el (grep-mode-map):
14037         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
14038         * mail/rmail.el (rmail-mode-map):
14039         * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
14041         * custom.el (custom-safe-themes, load-theme): Treat value of t for
14042         custom-safe-themes as special.
14044 2011-10-01  Julien Danjou  <julien@danjou.info>
14046         * notifications.el (notifications-notify): Fix docstring.
14048 2011-10-01  Per Starbäck  <per@starback.se>
14050         * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call.  (Bug#9643)
14052 2011-09-30  Martin Rudalics  <rudalics@gmx.at>
14054         * startup.el (command-line-1): Fix last fix by inserting
14055         initial-scratch-message into *scratch* before displaying it.
14056         (Bug#9605) and (Bug#9636)
14058 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
14060         * simple.el (line-move): If auto-hscroll-mode is disabled and the
14061         window is hscrolled, move by logical lines.  (Bug#9607)
14062         (line-move-visual): Update the doc string to the above effect.
14064 2011-09-29  Martin Rudalics  <rudalics@gmx.at>
14066         * window.el (display-buffer-record-window): When WINDOW is the
14067         selected window use `point' instead of `window-point'.  (Bug#9626)
14069         * startup.el (command-line-1): Use insert-before-markers when
14070         inserting initial-scratch-message.  (Bug#9605)
14072         * help.el (help-window): Remove variable.
14074 2011-09-29  Glenn Morris  <rgm@gnu.org>
14076         * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
14078 2011-09-29  Juanma Barranquero  <lekktu@gmail.com>
14080         * descr-text.el (describe-char-categories): Accept category
14081         descriptions more than one line long.
14083 2011-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14085         * simple.el (delete-trailing-whitespace): Fix last change.
14087         * progmodes/perl-mode.el (perl-syntax-propertize-function):
14088         Don't confuse "y => 3" as the beginning of a `y' operation.
14090         * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
14091         object has more than 4 slots (bug#9613).
14093 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
14095         * subr.el (with-output-to-temp-buffer):
14096         * net/quickurl.el (quickurl, quickurl-browse-url):
14097         Fix typos in docstrings.
14099 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
14101         * minibuffer.el (completion-styles)
14102         (completion-category-overrides): Cross reference each other in doc
14103         strings.
14105 2011-09-27  Glenn Morris  <rgm@gnu.org>
14107         * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
14108         to split-string.  (Bug#9606)
14110 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14112         * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
14113         (bug#9615).
14115 2011-09-27  Chong Yidong  <cyd@stupidchicken.com>
14117         * emacs-lisp/package.el (list-packages): Fix echo area message.
14119 2011-09-27  Leo Liu  <sdl.web@gmail.com>
14121         * ido.el (ido-read-internal): Accept cons cell HIST arg.
14123 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
14125         * net/dbus.el (dbus-unregister-object): Don't release services for
14126         registered signals.  (Bug#9581)
14128 2011-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
14130         * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
14131         function that picks between cfengine 2 and 3 support
14132         automatically.  Update docs accordingly.
14134 2011-09-22  Kenichi Handa  <handa@m17n.org>
14136         * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
14137         ZERO.
14138         (indian-itrans-v5-table-for-tamil): New variable.
14139         (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
14141 2011-09-22  Ken Manheimer  <ken.manheimer@gmail.com>
14143         * allout.el (allout-this-command-hid-stuff): Buffer-local variable
14144         that's true if the current command involved collapsing of text.
14145         It's reset to false at the beginning of the next command.
14146         (allout-post-command-business): Move the cursor to the beginning
14147         of entry if the cursor is hidden and collapsing activity just
14148         happened.
14150 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
14152         * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
14153         tracking (Bug#9541).
14155 2011-09-24  Ulf Jasper  <ulf.jasper@web.de>
14157         * net/newst-reader.el (newsticker-html-renderer)
14158         (newsticker-show-news): Automatically load html rendering package
14159         if newsticker-html-renderer is set.  Fixes "Warning: defvar ignored
14160         because w3m-fill-column is let-bound" and the error "Symbol's value
14161         as variable is void: w3m-fill-column".
14163 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
14165         * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
14166         Release services only if they are defined.  (Bug#9581)
14168 2011-09-23  Richard Stallman  <rms@gnu.org>
14170         * textmodes/paragraphs.el (forward-sentence): For backwards case,
14171         distinguish start of paragraph from start of its text.
14173         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
14175         * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
14176         (rmail-generate-viewer-buffer): Put that hook on view buffer.
14177         (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
14179 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
14181         * international/mule-diag.el (mule-diag): Insert a newline after
14182         each fontset description.
14184 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14186         * simple.el (delete-trailing-whitespace):
14187         Document last change; simplify.
14189 2011-09-23  Peter J. Weisberg  <pj@irregularexpressions.net>
14191         * simple.el (delete-trailing-whitespace): Also delete
14192         extra newlines at the end of the buffer.
14194         * textmodes/picture.el: Make motion commands obey shift-select-mode.
14195         (picture-newline): Use forward-line so as to ignore fields.
14197 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14199         * subr.el (with-wrapper-hook): Fix edebug spec.
14201 2011-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14203         * simple.el (kill-line): Note effect of `show-trailing-whitespace'
14204         (bug#4538).
14206 2011-09-23  Michael Albinus  <michael.albinus@gmx.de>
14208         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
14209         Fix nasty bug using wrong cached values.
14211 2011-09-23  Alan Mackenzie  <acm@muc.de>
14213         * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
14215 2011-09-23  Chong Yidong  <cyd@stupidchicken.com>
14217         * window.el (pop-to-buffer): Ensure right window is selected if we
14218         chose another frame.
14220 2011-09-22  Eli Zaretskii  <eliz@gnu.org>
14222         * simple.el (what-cursor-position): Use get-char-property-change
14223         and next-single-char-property-change, to be able to show display
14224         properties that come from overlays as well as text properties.
14226 2011-09-22  Chong Yidong  <cyd@stupidchicken.com>
14228         * window.el (pop-to-buffer-same-window): New (reinstated) fun.
14230         * cmuscheme.el (run-scheme, switch-to-scheme):
14231         * cus-edit.el (customize-group, custom-buffer-create)
14232         (customize-browse):
14233         * info.el (info):
14234         * shell.el (shell):
14235         * mail/sendmail.el (mail):
14236         * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
14238 2011-09-22  Richard Stallman  <rms@gnu.org>
14240         * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
14241         move back only to line beg, don't move back over blank lines.
14243 2011-09-22  Michael Albinus  <michael.albinus@gmx.de>
14245         * files.el (copy-directory): Set directory attributes only in case
14246         they could be retrieved from the source directory.  (Bug#9565)
14248 2011-09-22  Dima Kogan  <dkogan@secretsauce.net>  (tiny change)
14250         * progmodes/hideshow.el (hs-looking-at-block-start-p)
14251         (hs-find-block-beginning, hs-hide-level-recursive):
14252         Ignore strings as well as comments.  (Bug#9502)
14254 2011-09-22  Andrew Schein  <andrew@andrewschein.com>  (tiny change)
14256         * progmodes/sql.el (sql-comint-postgres):
14257         Convert port number to a string.  (Bug#9566)
14259 2011-09-22  Martin Rudalics  <rudalics@gmx.at>
14261         * window.el (quit-window): Undedicate window when switching to
14262         previous buffer.  Reported by Thierry Volpiatto
14263         <thierry.volpiatto@gmail.com>.
14264         (special-display-popup-frame): When popping up a new frame reset
14265         its previous buffers to nil.  Simplify code.
14267 2011-09-21  Michael Albinus  <michael.albinus@gmx.de>
14269         * net/tramp.el (tramp-handle-shell-command): Set process sentinel
14270         and process filter, as done also in `shell-command'.
14272 2011-09-21  Martin Rudalics  <rudalics@gmx.at>
14274         * window.el (set-window-buffer-start-and-point):
14275         Call set-window-start with NOFORCE argument t.
14276         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14277         (quit-window): Reword doc-string.  Handle new format of
14278         quit-restore parameter.  Don't delete window if it has a
14279         previous buffer we can show instead of the present one.
14280         (display-buffer-record-window): Rewrite using a new format for
14281         the quit-restore window parameter
14282         (special-display-popup-frame, display-buffer-same-window)
14283         (display-buffer-reuse-window, display-buffer-pop-up-frame)
14284         (display-buffer-pop-up-window, display-buffer-use-some-window):
14285         Adapt symbol passed to display-buffer-record-window.
14286         * help.el (help-window-setup): Handle new format of quit-restore
14287         parameter.
14289 2011-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14291         * faces.el (face-list): Fix docstring (bug#9564).
14293         * window.el (display-buffer--action-function-custom-type):
14294         Don't include internal functions in the Custom interface.
14296 2011-09-20  Juri Linkov  <juri@jurta.org>
14298         * info.el (Info-history-skip-intermediate-nodes): New defcustom.
14299         (Info-forward-node, Info-backward-node, Info-next-preorder)
14300         (Info-last-preorder): Use it.  (Bug#9528)
14302 2011-09-20  Juri Linkov  <juri@jurta.org>
14304         * info.el (Info-last-preorder): Visit last menu item only when
14305         `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
14307 2011-09-20  Julien Danjou  <julien@danjou.info>
14309         * password-cache.el (password-cache-remove): Remove entries even if the
14310         value is nil, so that password with a nil value (negative caching) is
14311         possible to invalidate.
14313 2011-09-20  Lawrence Mitchell  <wence@gmx.li>
14315         * progmodes/f90.el (f90-break-line): If breaking inside comment delete
14316         all whitespace around breakpoint.  (Bug#9553)
14317         (f90-find-breakpoint): Only break at whitespace inside a comment.
14319 2011-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14321         * minibuffer.el (completion-file-name-table): Keep track of errors.
14322         (completion-table-with-predicate): Handle the case where pred1 is nil.
14323         * pcomplete.el (pcomplete-completions-at-point): Simplify.
14325 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14327         * emacs-lisp/debug.el (debugger-args): Give it a docstring.
14328         (debugger-return-value): Signal an error if the debugging context does
14329         not await any return value.
14331         * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
14332         * image-mode.el (image-toggle-display-text)
14333         (image-toggle-display-image): Stay away from evil `intangible'.
14335 2011-09-19  Leo Liu  <sdl.web@gmail.com>
14337         * replace.el (occur-revert-arguments): Make it permanent-local.
14338         (occur-mode): Don't call font-lock-defontify.
14340 2011-09-19  Chong Yidong  <cyd@stupidchicken.com>
14342         * net/ldap.el (ldap-search-internal): Don't push empty search
14343         result (Bug#9508).
14345 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14347         * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
14349 2011-09-19  Michael Albinus  <michael.albinus@gmx.de>
14351         * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
14352         Suggested by Liam Stitt <stittl@cuug.ab.ca>.
14354 2011-09-18  Juri Linkov  <juri@jurta.org>
14356         * buff-menu.el (Buffer-menu-mode-map):
14357         * dired.el (dired-mode-map):
14358         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
14359         (lisp-interaction-mode-map):
14360         * emacs-lisp/package.el (package-menu-mode-map):
14361         * epa.el (epa-key-list-mode-map):
14362         * menu-bar.el (menu-bar-showhide-tool-bar-menu)
14363         (menu-bar-options-menu):
14364         * outline.el (outline-mode-menu-bar-map):
14365         * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
14366         * vc/vc-dir.el (vc-dir-menu-map):
14367         * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
14368         Capitalize non-function content words in menu item strings.
14370         * dired.el (dired-mode-map): Add menu item for
14371         `image-dired-dired-toggle-marked-thumbs'.
14373 2011-09-18  Juri Linkov  <juri@jurta.org>
14375         * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
14376         to `isearch-case-fold-search' and restore its original value
14377         after the `isearch-mode' call.
14379 2011-09-18  Juri Linkov  <juri@jurta.org>
14381         * progmodes/grep.el (grep-process-setup): Don't check code for 1
14382         because `zgrep' returns 1 for successful matches (bug#9226).
14384 2011-09-18  Juri Linkov  <juri@jurta.org>
14386         * info.el (Info-extract-menu-node-name): Check the second match
14387         for empty string (second test-case of bug#9528).
14388         (Info-last-preorder): Let-bind `Info-history' to nil to not add
14389         intermediate nodes to the history (first test-case of bug#9528).
14391 2011-09-18  Juri Linkov  <juri@jurta.org>
14393         * info.el (Info-mode-syntax-table): New variable.
14394         (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
14396 2011-09-18  Juri Linkov  <juri@jurta.org>
14398         * info.el (Info-file-supports-index-cookies):
14399         Increment line-beginning-position's arg from 3 to 4 because makeinfo
14400         outputs one more line for long file names (bug#4142).
14402 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
14404         * newcomment.el (comment-normalize-vars): If prompting for
14405         comment-start, set comment-start-skip too (Bug#8424).
14407 2011-09-18  Johan Bockgård  <bojohan@gnu.org>
14409         * icomplete.el: Fix previous fix of Bug#5849.
14410         (icomplete-mode): Don't set completion-show-inline-help.
14411         (icomplete-minibuffer-setup): Set completion-show-inline-help
14412         locally during icompletion.
14414 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
14416         * woman.el (woman2-process-escapes): Don't delete unrecognized
14417         escapes (Bug#7843).
14419         * files.el (inhibit-first-line-modes-regexps): Add image files.
14420         (hack-local-variables-prop-line): Return nil for malformed
14421         prop-lines (Bug#9044).
14423 2011-09-18  Michael Albinus  <michael.albinus@gmx.de>
14425         * net/tramp.el (top): Don't require 'shell.
14426         (tramp-methods): Fix docstring.
14427         (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
14428         Return complete remote file name.  Handle "smb" case.
14429         Use `tramp-tmpdir', if defined for the respective method.
14430         (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
14432         * net/tramp-compat.el (top): Require 'shell.
14434         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
14435         (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
14436         `tramp-current-host'.
14437         (tramp-get-remote-tmpdir): Remove.
14439         * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
14440         `tramp-tmpdir' entries.
14441         (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
14442         (tramp-smb-handle-file-attributes): Ignore errors.
14443         (tramp-smb-wait-for-output): Check also for process end.
14445 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14447         * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
14448         when sending QUIT (bug#9312).
14450 2011-09-17  Chong Yidong  <cyd@stupidchicken.com>
14452         * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
14453         (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
14454         occur-mode-display-occurrence.
14455         (occur-edit-mode): Add usage message.
14456         (occur-cease-edit): New command.
14457         (occur-after-change-function): Use text properties to find the
14458         position of the prefix text.
14459         (occur-engine): Set stickiness of prefix text properties.
14461 2011-09-17  Glenn Morris  <rgm@gnu.org>
14463         * progmodes/etags.el (complete-tag):
14464         Fix call to completion-in-region.  (Bug#9526)
14466 2011-09-17  Juri Linkov  <juri@jurta.org>
14468         * textmodes/ispell.el (ispell-word): Add to the error message
14469         the word, ispell program name and current dictionary (bug#9121).
14470         (ispell-tex-arg-end): Capitalize "error" in the error message.
14472 2011-09-17  Andreas Schwab  <schwab@linux-m68k.org>
14474         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
14475         check.  (Bug#4251)
14477 2011-09-17  Juri Linkov  <juri@jurta.org>
14479         * window.el (window-safe-min-height, window-safe-min-width):
14480         Fix typos (followup to bug#9522).
14482 2011-09-17  Sven Joachim  <svenjoac@gmx.de>
14484         * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
14486 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
14488         * simple.el (line-move): If goal-column is set, move by logical
14489         lines, not by display lines.  (Bug#971)
14490         (next-line, previous-line, goal-column, line-move-visual): Doc fix
14491         to reflect the above change.
14493 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14495         * image.el (imagemagick-register-types): Use regexp-opt.
14497 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
14499         * window.el (display-buffer-base-action): Rename from
14500         display-buffer-default-action.  Make default value empty.
14501         (display-buffer-overriding-action): Convert to defvar.
14502         (display-buffer-fallback-action): New var.
14504 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
14506         * emacs-lisp/package.el (package-alist): Fix risky-local-variable
14507         declaration.
14508         (package--add-to-archive-contents): If there is a duplicate entry
14509         with an older version, remove it.
14510         (package-menu-mark-delete, package-menu-mark-install)
14511         (package-menu-mark-unmark): Make unused args optional.
14512         (package-menu-mark-obsolete-for-deletion):
14513         Use package-menu-get-status instead of a regexp search.
14514         (package-menu-get-status): Use tabulated-list-entry.
14515         (package-menu-mark-upgrades): New command.
14516         (package-menu-mode-map): Bind it to U.  Add it to menu bar.
14517         (package-menu-execute): Do installation before deletion.
14518         (package-menu-refresh, package-menu-execute): Use derived-mode-p
14519         instead of checking major-mode.
14520         (package-menu--find-upgrades): New function.
14522 2011-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14524         * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
14525         passwords in the log buffer.
14526         (smtpmail-process-filter): Update the process marker so that the
14527         "broken by peer" status message is inserted in the right place.
14529 2011-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14531         * textmodes/bibtex.el (bibtex-complete-string-cleanup)
14532         (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
14533         bibtex-completion-at-point-function.
14534         (bibtex-completion-at-point-function): Use them.
14536         * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
14538         * mpc.el (mpc-constraints-tag-lookup): New function.
14539         (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
14540         also to browser "album|playlist".
14542 2011-09-14  Juri Linkov  <juri@jurta.org>
14544         * isearch.el (isearch-fail-pos): Add new arg `msg'.  Doc fix.
14545         (isearch-edit-string): Use length of `isearch-string' when
14546         `isearch-fail-pos' returns nil.
14547         (isearch-message): Remove duplicate code and call
14548         `isearch-fail-pos' with arg `t'.
14550 2011-09-14  Chong Yidong  <cyd@stupidchicken.com>
14552         * replace.el (occur-mode-goto-occurrence): Don't force using other
14553         window (Bug#9499).
14555         * dired-aux.el (dired-do-chmod): Don't provide initial input.
14557 2011-09-14  Martin Rudalics  <rudalics@gmx.at>
14559         * window.el (display-buffer-window): Remove.
14560         (display-buffer-record-window): Use help-setup window parameter
14561         instead of variable display-buffer-window.
14562         (display-buffer-function, special-display-buffer-names)
14563         (special-display-function): Mention help-setup parameter instead
14564         of display-buffer-window in doc-string.
14565         * help.el (help-window-setup): New argument help-window.
14566         Use help-window-setup parameter instead of display-buffer-window.
14567         Reword some messages.
14568         (with-help-window): Pass window used for displaying the buffer
14569         to help-window-setup.  Don't set display-buffer-window.
14571 2011-09-13  Glenn Morris  <rgm@gnu.org>
14573         * emacs-lisp/debug.el (debugger-make-xrefs):
14574         Preserve point.  (Bug#9462)
14576 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
14578         * window.el (window-deletable-p): Use next-frame.
14580 2011-09-13  Martin Rudalics  <rudalics@gmx.at>
14582         * window.el (window-auto-delete): Remove.
14583         (window-deletable-p): Remove argument FORCE.  Don't deal with
14584         dedication and previous buffers.
14585         (switch-to-prev-buffer): Don't delete window.
14586         (delete-windows-on): Delete a window's frame if and only if the
14587         window is dedicated.
14588         (replace-buffer-in-windows): Delete buffer's window or frame if
14589         and only if window is dedicated.
14590         (quit-window): Handle quit-restore as before last change.
14591         (bury-buffer): Delete window only if window-deletable-p returns t.
14593 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
14595         * window.el (window-deletable-p): Never delete the last frame on a
14596         given terminal.
14598 2011-09-13  Glenn Morris  <rgm@gnu.org>
14600         * help.el (describe-key-briefly): Copy previous standard-output change.
14602 2011-09-13  PJ Weisberg  <pj@irregularexpressions.net>
14604         * help.el (where-is): Respect non-standard standard-output.  (Bug#9030)
14606 2011-09-13  Glenn Morris  <rgm@gnu.org>
14608         * emacs-lisp/lisp-mode.el (lisp-indent-function):
14609         * progmodes/scheme.el (scheme-indent-function): Doc fixes.
14611 2011-09-12  Chong Yidong  <cyd@stupidchicken.com>
14613         * dired-aux.el (dired-mark-read-string): Don't return default
14614         value on empty input (Bug#9361).
14615         (dired-do-chxxx): Treat empty input for "touch" as no -t option.
14616         Omit initial minibuffer contents.
14617         (dired-do-chmod): Signal an error on empty input.
14618         (dired-mark-read-string): Don't return default on empty input.
14620         * files.el (file-modes-symbolic-to-number): Doc fix.
14622 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14624         * international/mule-cmds.el (ucs-completions): Remove.
14625         (read-char-by-name): Use complete-with-action instead; add metadata.
14627 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
14629         * window.el (display-buffer--action-function-custom-type)
14630         (display-buffer--action-custom-type): New vars.
14631         (display-buffer-alist, display-buffer-default-action)
14632         (display-buffer-overriding-action): Add defcustom types.
14634         * frame.el (delete-other-frames): Doc fix (Bug#276).
14636 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14638         * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14640 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
14642         Change modes that used same-window-* vars to use switch-to-buffer.
14644         * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14645         Use switch-to-buffer.
14647         * cus-edit.el (customize-group, custom-buffer-create)
14648         (customize-browse, custom-buffer-create-other-window):
14649         Use switch-to-buffer or switch-to-buffer-other-window.
14651         * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14652         (Info-prev, Info-up, Info-speedbar-goto-node)
14653         (info-display-manual): Use switch-to-buffer.
14654         (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14656         * mail/sendmail.el (mail): Use switch-to-buffer.
14657         (mail-recover): Use switch-to-buffer-other-window.
14659         * cmuscheme.el (run-scheme, switch-to-scheme):
14660         * ielm.el (ielm):
14661         * shell.el (shell):
14662         * net/rlogin.el (rlogin):
14663         * net/telnet.el (telnet, rsh):
14664         * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14666 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
14668         * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14670 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14672         * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14673         so don't mention it (bug#9301).
14674         (dired-sort-toggle-or-edit): Clarify string further.
14676         * faces.el (face-spec-set-match-display): Make `(type graphic)'
14677         match `x', `w32' and `ns', like the manual says (bug#9029).
14679         * subr.el (eval-after-load): Doc string clarification (bug#9125).
14680         (process-kill-buffer-query-function): Mention the buffer name in
14681         the query.
14683         * image-mode.el (image-next-line): The line parameter is mandatory
14684         (bug#9258).
14686         * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14687         which can be useful (bug#9301).
14689         * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14691         * subr.el (match-string): Mention that the current buffer should
14692         be the same as the search was done in (bug#9282).
14694         * facemenu.el: Disable the remove-* commands if the mark isn't
14695         active (bug#9162).
14697 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
14699         * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14700         of display-buffer.
14701         (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14703         * replace.el (occur-mode-goto-occurrence)
14704         (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14705         and display-buffer.
14707         * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14708         display-buffer.
14710         * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14711         special-display and same-window variables.
14712         (mail-other-window): Use switch-to-buffer-other-window.
14713         (mail-other-frame): USe switch-to-buffer-other-frame.
14715         * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14716         Use display-buffer-other-frame.
14717         (gdb-display-gdb-buffer): Use pop-to-buffer.
14719         * progmodes/gud.el (gud-goto-info): Use info-other-window.
14721         * progmodes/python.el: Don't set same-window-buffer-names.
14723         * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14725         * window.el (display-buffer-alist): Add *Python*.
14727 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
14729         * window.el (display-buffer-alist): Add entry for buffers
14730         previously handled same-window-*.
14731         (display-buffer-alist, display-buffer-default-action)
14732         (display-buffer-overriding-action): Mark as risky.
14733         (display-buffer-alist): Document action function changes.
14734         (display-buffer--same-window-action)
14735         (display-buffer--other-frame-action): New variables.
14736         (switch-to-buffer, display-buffer-other-frame): Use them.
14737         (display-buffer): Rename reuse-frame entry to reusable-frames.
14738         (display-buffer-reuse-selected-window): Function deleted.
14739         (display-buffer-reuse-window): Handle reusable-frames alist entry.
14740         If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14741         (display-buffer-special): New function.
14742         (display-buffer--maybe-pop-up-frame-or-window): Rename from
14743         display-buffer-reuse-or-pop-window.  Split off special-display
14744         part into display-buffer-special.
14745         (display-buffer-use-some-window): Don't perform any special
14746         pop-up-frames handling.
14747         (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
14748         (display-buffer--maybe-same-window): Rename from
14749         display-buffer-maybe-same-window.
14751         * info.el: Don't set same-window-regexps.
14752         (info-setup): New function.
14753         (info-other-window, info): Call it.
14755         * cus-edit.el: Don't set same-window-regexps.
14756         (customize-group): New argument.
14757         (customize-group-other-window): Use it.
14758         (customize-face, customize-face-other-window): Likewise.
14759         (custom-buffer-create-other-window): Use pop-to-buffer directly.
14761         * net/rlogin.el:
14762         * net/telnet.el:
14763         * progmodes/gud.el: Don't set same-window-regexps.
14765         * cmuscheme.el:
14766         * ielm.el:
14767         * shell.el:
14768         * mail/sendmail.el:
14769         * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
14771 2011-09-10  Juri Linkov  <juri@jurta.org>
14773         * isearch.el (isearch-edit-string): Remove obsolete mention of
14774         `C-w' (`isearch-yank-word-or-char') from docstring.
14775         (isearch-query-replace): Fix typo in docstring (bug#9466).
14777 2011-09-10  Juri Linkov  <juri@jurta.org>
14779         * paren.el (show-paren-function): Don't show escaped parens.
14780         Let-bind `unescaped' to `t' when paren is not escaped.  (Bug#9461)
14782 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
14784         * mail/sendmail.el (mml-to-mime, mml-attach-file)
14785         (mm-default-file-encoding): Remove autoload forms, they are
14786         replaced with autoload cookies in mml.el and mm-encode.el.
14787         (mail-add-attachment): New command.
14788         (mail-mode-map): Add a menu-bar item for mail-add-attachment.
14789         (mail-mode): Mention mail-insert-file and mail-add-attachment in
14790         the doc string.
14791         (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
14793 2011-09-10  Reuben Thomas  <rrt@sc3d.org>
14795         * simple.el (count-words-region): Use buffer if there's no region
14796         (bug#9429).
14798 2011-09-09  Juri Linkov  <juri@jurta.org>
14800         * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
14801         `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
14802         (wdired-isearch-filter-read-only): New function.  (Bug#6362)
14804 2011-09-09  Alan Mackenzie  <acm@muc.de>
14806         * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
14807         spuriously generating `awk-mode-syntax-table'.  (Bug #9448).
14809 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
14811         Fix for Savannah bug#9392.
14812         * simple.el (mail-encode-mml): New defvar.
14814         * mail/rmail.el (mail-encode-mml): Add a defvar.
14815         (rmail-enable-mime-composing): Default to t.
14816         (rmail-forward): Use MIME method of forwarding only if both
14817         rmail-enable-mime-composing and rmail-enable-mime are non-nil.
14818         Set mail-encode-mml non-nil if the MIME method was used.
14820         * mail/sendmail.el (mml-to-mime): Add autoload form.
14821         (mail-encode-mml): Add a defvar.
14822         (mail-mode): Make mail-encode-mml buffer-local and initialize it
14823         to nil.
14824         (mail-send): If mail-encode-mml is non-nil, run the outgoing
14825         message through mml-to-mime, and reset mail-encode-mml to nil.
14827 2011-09-09  Glenn Morris  <rgm@gnu.org>
14829         * woman.el (woman-if-body): When processing an .el block,
14830         do not delete the next .el block as well.  (Bug#9447)
14831         (woman-special-characters): Add oq, cq, and hy characters.
14833 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
14835         * window.el (window-deletable-p): Make sure window is live before
14836         invoking window-prev-buffers.
14838 2011-09-08  Leo Liu  <sdl.web@gmail.com>
14840         * net/rcirc.el (rcirc-cmd-invite): New rcirc command.  (Bug#9453)
14842 2011-09-08  Juri Linkov  <juri@jurta.org>
14844         * progmodes/compile.el (compilation-environment): Make it
14845         a defcustom (bug#8340).
14847 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
14849         * window.el (frame-auto-delete): Rename to window-auto-delete.
14850         Make it control auto-deletion of windows and/or frames.
14851         (window-deletable-p): New argument FORCE.  Rewrite conditions
14852         for deleting window/frame.  (Bug#9419)
14853         (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
14854         Rewrite handling of case when window/frame can be deleted.
14855         (delete-windows-on): Call window-deletable-p with new FORCE
14856         argument t.  (Bug#9456)
14858 2011-09-07  Chong Yidong  <cyd@stupidchicken.com>
14860         * help-mode.el (help-mode): Restore autoload.
14862 2011-09-07  Juri Linkov  <juri@jurta.org>
14864         * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
14865         `compilation-environment'.  Set buffer-local
14866         `compilation-environment' to `thisenv' later after (funcall mode).
14867         (Bug#8340)
14869         * vc/vc-git.el (vc-git-grep): Remove --no-color.  (Bug#9408)
14870         (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
14871         instead of replacing its value.  (Bug#8340)
14873 2011-09-07  Juri Linkov  <juri@jurta.org>
14875         * progmodes/grep.el (grep-regexp-alist): Calculate column positions
14876         based on text properties put by `grep-filter' instead of matching
14877         escape sequences.
14878         (grep-mode): Set buffer-local `compilation-error-screen-columns'
14879         to the value of `grep-error-screen-columns' (bug#9438).
14881 2011-09-07  Juri Linkov  <juri@jurta.org>
14883         * simple.el (next-error-highlight, next-error-highlight-no-select):
14884         Doc fix (bug#9432).
14886 2011-09-07  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
14888         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14889         Check for null c-opt-block-decls-with-vars-key.  (Bug#9443)
14891 2011-09-07  Leo Liu  <sdl.web@gmail.com>
14893         * net/rcirc.el (rcirc-mode): Conditionally initialize
14894         rcirc-input-ring.
14896 2011-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
14898         * emacs-lisp/find-func.el (find-function-C-source): Only set
14899         find-function-C-source-directory after checking that we found a source
14900         file there (bug#9440).
14902 2011-09-06  Alan Mackenzie  <acm@muc.de>
14904         * isearch.el (isearch-other-meta-char): Wherever a key list is
14905         unread, "unread" the prefix arg, too.  This fixes bug #8901.
14907 2011-09-05  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
14909         * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
14911 2011-09-05  Juri Linkov  <juri@jurta.org>
14913         * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
14915 2011-09-05  Juri Linkov  <juri@jurta.org>
14917         * progmodes/grep.el (grep-filter): Avoid incomplete processing by
14918         keeping point where processing of grep matches begins, and
14919         continue to delete remaining escape sequences from the same point.
14920         (grep-filter): Make leading zero optional in "0?1;31m" because
14921         git-grep emits "\033[1;31m" escape sequences unlike expected
14922         "\033[01;31m" as GNU Grep does (bug#9408).
14923         (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
14925 2011-09-05  Juri Linkov  <juri@jurta.org>
14927         * subr.el (y-or-n-p): Capitalize "yes".
14929 2011-09-04  Michael Albinus  <michael.albinus@gmx.de>
14931         * net/tramp.el (top): Require 'shell.  Use `tramp-unload-hook' but
14932         `tramp-cache-unload-hook' where appropriate.
14933         (tramp-methods): Rename `tramp-remote-sh' to
14934         `tramp-remote-shell'.  Add `tramp-remote-shell-args'.
14935         (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
14937         * net/tramp-sh.el (top): Don't require 'shell.
14938         (tramp-methods): Add `tramp-remote-shell' and
14939         `tramp-remote-shell-args' entries.
14940         (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
14941         (tramp-sh-handle-shell-command): Remove.
14942         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14943         Use `tramp-remote-shell'.
14945 2011-09-03  Chong Yidong  <cyd@stupidchicken.com>
14947         * mail/sendmail.el (sendmail-query-once-function): Delete.
14948         (sendmail-query-once): Save directly to send-mail-function.
14949         Update message-send-mail-function too.
14951         * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
14953 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
14955         * progmodes/python.el (python-mode-map): Use correct function to
14956         start python interpreter from menu-bar (as reported by Geert
14957         Kloosterman).
14958         (inferior-python-mode-map): Fix typo.
14959         (python-shell-map): Remove.
14961 2011-09-03  Deniz Dogan  <deniz@dogan.se>
14963         * net/rcirc.el (rcirc-print): Simplify code for
14964         rcirc-scroll-show-maximum-output.  There is no need to walk
14965         through all windows to find the right one.
14967 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
14969         * help.el (help-return-method): Doc fix.
14971 2011-09-03  Martin Rudalics  <rudalics@gmx.at>
14973         * window.el (window-deletable-p): Don't return a non-nil value
14974         when there's a buffer that was shown in the window before.
14975         (Bug#9419)
14976         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14977         Set window's previous buffers to nil.
14979 2011-09-03  Eli Zaretskii  <eliz@gnu.org>
14981         * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
14982         newline before and after the tag line, so it doesn't interfere
14983         with determining the paragraph direction of bidirectional text.
14985 2011-09-03  Leo Liu  <sdl.web@gmail.com>
14987         * files.el (find-file-not-true-dirname-list): Remove.  (Bug#9422)
14989 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
14991         * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
14992         (pop-to-buffer): Change interactive spec.  Pass second argument
14993         directly to display-buffer.
14994         (display-buffer): Fix interactive spec.  Use functionp to
14995         distinguish between a function and a list of functions.
14997         * abbrev.el (edit-abbrevs):
14998         * arc-mode.el (archive-extract):
14999         * autoinsert.el (auto-insert):
15000         * bookmark.el (bookmark-bmenu-list):
15001         * files.el (find-file):
15002         * view.el (view-buffer):
15003         * progmodes/compile.el (compilation-goto-locus):
15004         * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
15006 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
15008         * window.el (display-buffer-alist): Doc fix.
15009         (display-buffer): Add docstring.  Don't treat
15010         display-buffer-default specially.
15011         (display-buffer-reuse-selected-window)
15012         (display-buffer-same-window, display-buffer-maybe-same-window)
15013         (display-buffer-reuse-window, display-buffer-pop-up-frame)
15014         (display-buffer-pop-up-window)
15015         (display-buffer-reuse-or-pop-window)
15016         (display-buffer-use-some-window): New functions.
15017         (display-buffer-default-action): Use them.
15018         (display-buffer-default): Delete.
15019         (pop-to-buffer-1): Fix choice of actions.
15021 2011-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15023         * minibuffer.el (completion--insert-strings): Don't get confused by
15024         completion entries that end with an LF char.
15026 2011-09-01  Eli Zaretskii  <eliz@gnu.org>
15028         * window.el (frame-auto-delete, window-deletable-p): Doc fix.
15030 2011-09-01  Chong Yidong  <cyd@stupidchicken.com>
15032         * window.el (display-buffer): Restore interactive spec.
15033         (display-buffer-same-window, display-buffer-other-window):
15034         New functions.
15035         (pop-to-buffer-1): New function.  Use the above.
15036         (pop-to-buffer, pop-to-buffer-same-window): Use it.
15037         (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
15039         * view.el (view-buffer-other-window, view-buffer-other-frame):
15040         Just use pop-to-buffer.
15042 2011-09-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
15044         * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories.  (Bug#9391)
15046 2011-09-01  Wilfred Hughes  <wilfred@potatolondon.com>  (tiny change)
15048         * vc/vc-git.el (vc-git-grep): Use --no-color.  (Bug#9408)
15050 2011-08-31  Richard Stallman  <rms@gnu.org>
15052         * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
15053         of the separation of rmail-view-buffer from rmail-buffer.
15054         If you say no to "replace original", the decrypt is in the
15055         view buffer.  If you say yes, the decrypt goes into the
15056         rmail buffer also.
15058 2011-08-31  Martin Rudalics  <rudalics@gmx.at>
15060         * window.el (display-buffer-window): Rewrite doc-string.
15061         (display-buffer-record-window): New function.
15062         (display-buffer-macro-specifiers)
15063         (display-buffer-even-window-sizes, display-buffer-set-height)
15064         (display-buffer-set-width, display-buffer-in-window)
15065         (display-buffer-reuse-window, display-buffer-split-specifiers)
15066         (display-buffer-side-specifiers, display-buffer-split-window-1)
15067         (display-buffer-split-window, display-buffer-split-atom-window)
15068         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15069         (display-buffer-pop-up-side-window, display-buffer-in-side-window)
15070         (display-buffer-other-window-means-other-frame)
15071         (display-buffer-normalize-special)
15072         (display-buffer-normalize-default)
15073         (display-buffer-normalize-argument)
15074         (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
15075         (display-buffer-normalize-specifiers, display-buffer-frame)
15076         (display-buffer-same-window, display-buffer-same-frame)
15077         (display-buffer-other-window)
15078         (display-buffer-same-frame-other-window)
15079         (display-buffer-other-frame, pop-to-buffer-same-window)
15080         (pop-to-buffer-same-frame, pop-to-buffer-other-window)
15081         (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
15082         (switch-to-buffer-same-frame)
15083         (switch-to-buffer-other-window-same-frame)
15084         (display-buffer-alist-of-strings-p, display-buffer-alist-add)
15085         (display-buffer-alist-set-1, display-buffer-alist-set-2)
15086         (display-buffer-alist-set): Remove.
15087         (display-buffer-function, special-display-buffer-names)
15088         (special-display-regexps, special-display-function):
15089         In doc-string refer to display-buffer-window and quit-restore
15090         parameter.
15091         (pop-up-frame-alist, pop-up-frame-function, special-display-p)
15092         (special-display-frame-alist, special-display-popup-frame)
15093         (same-window-buffer-names, same-window-regexps, same-window-p)
15094         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15095         (split-window-preferred-function, split-height-threshold)
15096         (split-width-threshold, window-splittable-p)
15097         (split-window-sensibly, window--try-to-split-window)
15098         (window--frame-usable-p, even-window-heights)
15099         (window--even-window-heights, window--display-buffer-1)
15100         (window--display-buffer-2, display-buffer-other-frame):
15101         Restore old Emacs 23 code, order and doc-strings where applicable.
15102         (display-buffer-default, display-buffer-assq-regexp): New functions.
15103         (display-buffer-alist): Rewrite doc-string.
15104         (display-buffer-default-action)
15105         (display-buffer-overriding-action): New variables.
15106         (display-buffer, switch-to-buffer): Rewrite.
15107         (pop-to-buffer): Restore Emacs 23 behavior but use
15108         window-normalize-buffer-to-display.
15109         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
15110         Restore Emacs 23 behavior but use
15111         window-normalize-buffer-to-switch-to.
15112         (pop-to-buffer-same-window): Rewrite.
15113         (pop-to-buffer-other-window, pop-to-buffer-other-frame):
15114         Rewrite using Emacs 23 options.
15116 2011-08-31  Michael Albinus  <michael.albinus@gmx.de>
15118         * net/tramp.el (tramp-root-regexp): Remove.
15119         (tramp-completion-file-name-regexp-unified)
15120         (tramp-completion-file-name-regexp-separate)
15121         (tramp-completion-file-name-regexp-url): Don't use leading volume
15122         letter on w32 systems.  (Bug#5303, Bug#9311)
15123         (tramp-drop-volume-letter): Simplify definition.
15124         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
15126 2011-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15128         * subr.el (event-modifiers): Fix "missing modifier" part of docstring
15129         (bug#9356).
15131 2011-08-30  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
15133         * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
15135 2011-08-29  Juri Linkov  <juri@jurta.org>
15137         * isearch.el (isearch-done): Don't display message "Mark saved"
15138         when arg `edit' is non-nil to prevent its flicker in the echo area.
15140 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
15142         * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
15143         obsolete packages for deletion.
15145 2011-08-28  Christoph Scholtes  <cschol2112@googlemail.com>
15147         * help-mode.el (help-mode-map): Add special-mode-map to parent.
15148         (help-mode): Derive help-mode from special-mode.  Don't invoke
15149         view-mode from help-mode.
15150         (help-xref-override-view-map): Remove.
15151         (help-make-xrefs): Remove minor-mode-overriding-map-alist since
15152         view-mode is not used anymore.
15154 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
15156         * server.el (server-port): Doc fix.
15158         * cus-theme.el (custom-theme-choose-mode): Inherit from
15159         special-mode (Bug#9124).
15160         (custom-theme-choose-mode-map): Add special-mode to parent.
15162 2011-08-28  Alan Mackenzie  <acm@muc.de>
15164         * progmodes/cc-fonts.el
15165         (c-make-font-lock-BO-decl-search-function): New function.
15166         (c-basic-matchers-after - "Fontify the clauses after various
15167         keywords"): Extract the three keyword lists for the 3 erroneous
15168         constructs from the list of four, and use the new function above
15169         in place of an old one.
15171 2011-08-28  Deniz Dogan  <deniz@dogan.se>
15173         * net/rcirc.el (rcirc-insert-prev-input)
15174         (rcirc-insert-next-input): Remove unused argument.
15176 2011-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15178         * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
15180 2011-08-27  Alan Mackenzie  <acm@muc.de>
15182         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
15183         handle function pointer parameters properly.
15185 2011-08-27  Martin Rudalics  <rudalics@gmx.at>
15187         * window.el (display-buffer-reuse-window): Fix case where
15188         selected window was reused with non-nil OTHER-WINDOW argument.
15189         (Bug#9381)
15191 2011-08-27  Deniz Dogan  <deniz@dogan.se>
15193         * net/rcirc.el (rcirc-check-auth-status): Adding support for
15194         oftc's NickServ messages.
15196 2011-08-27  Glenn Morris  <rgm@gnu.org>
15198         * saveplace.el (save-place-limit): Make it finite.  (Bug#9352)
15200 2011-08-26  Chong Yidong  <cyd@stupidchicken.com>
15202         * emacs-lisp/package.el (package-install): Call package-initialize
15203         if called interactively.
15205 2011-08-26  Leo Liu  <sdl.web@gmail.com>
15207         * emacs-lisp/cl-macs.el (defstruct): Fix format.  (Bug#9357)
15209 2011-08-25  Juri Linkov  <juri@jurta.org>
15211         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15212         `search-whitespace-regexp' (bug#9364).
15214 2011-08-25  Juri Linkov  <juri@jurta.org>
15216         * isearch.el (isearch-edit-string): Let-bind `search-ring' and
15217         `regexp-search-ring' to their global values to protect from
15218         updating by `read-from-minibuffer' (bug#9185).
15220 2011-08-25  Juri Linkov  <juri@jurta.org>
15222         * textmodes/ispell.el (ispell-command-loop): Add newline
15223         at the end of the "Use option `i'..." line.
15225 2011-08-25  Juri Linkov  <juri@jurta.org>
15227         * battery.el (display-battery-mode): If `battery-status-function'
15228         or `battery-mode-line-format' is nil, display the message and set
15229         `display-battery-mode' to nil (bug#9363).
15231 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
15233         * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
15234         bidi-string-mark-left-to-right; they are unnecessary now.
15236 2011-08-25  Deniz Dogan  <deniz@dogan.se>
15238         * net/quickurl.el: Documentation typo fixes.
15240 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
15242         * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
15244 2011-08-25  Glenn Morris  <rgm@gnu.org>
15246         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15248         * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
15249         (smtpmail-via-smtp): Handle nil response from smtp.
15251 2011-08-24  Juri Linkov  <juri@jurta.org>
15253         * proced.el (proced-marked): Inherit from `error' instead of
15254         `font-lock-warning-face'.
15256         * ibuffer.el (ibuffer-marked-face): Change default face from
15257         `font-lock-warning-face' to `warning'.
15258         (ibuffer-deletion-face): Change default face from
15259         `font-lock-type-face' to `error'.
15261         * battery.el (battery-update): Use the face `error' instead of
15262         `font-lock-warning-face' (bug#6117).
15264 2011-08-24  Juri Linkov  <juri@jurta.org>
15266         * faces.el (success): Change face color from "Green3" to
15267         "ForestGreen" on light background (bug#9353).
15269 2011-08-24  Chong Yidong  <cyd@stupidchicken.com>
15271         * window.el (quit-window): Rename from quit-restore-window.
15272         Use same arglist as old quit-window.
15273         (frame-auto-delete): Doc fix.
15275         * view.el (view-mode-exit): Use quit-window.
15277 2011-08-24  Juri Linkov  <juri@jurta.org>
15279         * isearch.el (isearch-ring-adjust1): Start visiting previous
15280         search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
15281         (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
15282         for empty search string (when the last search string is reused
15283         automatically) to adjust the isearch ring to the last element and
15284         prepare the correct index for further M-p commands (bug#9185).
15286 2011-08-24  Kenichi Handa  <handa@m17n.org>
15288         * international/ucs-normalize.el: If decomposition property of
15289         CHAR is the default one (i.e. a list of CHAR itself), treat it as
15290         nil.
15291         (nfd, nfkd): Likewise.
15293 2011-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15295         * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
15296         from process filters aren't reliably transmitted to the surrounding
15297         accept-process-output.
15298         (mpc-proc-check): New function.
15299         (mpc-proc-sync): Use it (bug#8293)
15301 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15303         * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
15304         Add compatibility functions (bug#9313).
15306 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
15308         * cus-start.el (all): Add entry for bidi-paragraph-direction.
15310         * international/uni-bidi.el: Regenerate.
15312 2011-08-23  Kenichi Handa  <handa@m17n.org>
15314         * international/charprop.el:
15315         * international/uni-bidi.el:
15316         * international/uni-category.el:
15317         * international/uni-combining.el:
15318         * international/uni-comment.el:
15319         * international/uni-decimal.el:
15320         * international/uni-decomposition.el:
15321         * international/uni-digit.el:
15322         * international/uni-lowercase.el:
15323         * international/uni-mirrored.el:
15324         * international/uni-name.el:
15325         * international/uni-numeric.el:
15326         * international/uni-old-name.el:
15327         * international/uni-titlecase.el:
15328         * international/uni-uppercase.el: Regenerate.
15330 2011-08-23  Martin Rudalics  <rudalics@gmx.at>
15332         * help.el (help-window-setup): Fix message displayed when other
15333         window is reused.  (Bug#9341)
15335 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15337         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
15338         * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
15340         * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
15341         Mark obsolete.
15342         * shell.el (shell-parse-pcomplete-arguments): New function.
15343         (shell-completion-vars): Use it instead (bug#9160).
15345 2011-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
15347         * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
15348         strings and comments (bug#9333).
15350         * emacs-lisp/debug.el (debug-arglist): New function.
15351         (debug-convert-byte-code): Use it.  Handle lexical byte-codes.
15352         (debug-on-entry-1): Handle interpreted closures (bug#9120).
15354 2011-08-22  Juri Linkov  <juri@jurta.org>
15356         * progmodes/compile.el (compilation-mode-font-lock-keywords):
15357         Revert regexp that highlights output switches to its old
15358         pre-2010-10-28 value and remove one `?' from it (bug#9319).
15360         * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
15361         to check for empty output (bug#9226).
15363 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
15365         * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
15366         symbol-constituent as the default, as that stops font-lock from
15367         working properly (Bug#8843).
15369 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15371         * mail/smtpmail.el (smtpmail-via-smtp): Only bind
15372         `coding-system-for-*' around the process open call to avoid
15373         auth-source side effects.
15374         (smtpmail-try-auth-methods): Expand the secret password.
15375         (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
15376         probe hangs.
15378 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
15380         * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
15382         * emacs-lisp/find-func.el (find-function-noselect): New arg
15383         lisp-only.
15385         * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
15386         signal an error for built-in functions (Bug#6664).
15388 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15390         * mail/smtpmail.el (smtpmail-smtp-user): New variable.
15391         (smtpmail-try-auth-methods): Use it.
15393 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
15395         * font-lock.el (font-lock-fontify-region)
15396         (font-lock-unfontify-region, font-lock-default-fontify-buffer)
15397         (font-lock-default-unfontify-buffer)
15398         (font-lock-default-fontify-region)
15399         (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
15401         * progmodes/compile.el (compilation-error-properties):
15402         Fix confusion between file struct and message struct (Bug#9319).
15403         (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
15404         `ant' regexp.
15406         * net/browse-url.el (browse-url-firefox): Don't call
15407         browse-url-firefox-sentinel unless using -remote (Bug#9328).
15409 2011-08-20  Glenn Morris  <rgm@gnu.org>
15411         * tutorial.el (help-with-tutorial): Avoid an error on short screens.
15413         * tutorial.el (tutorial--default-keys): Update some default bindings.
15415         * files.el (hack-local-variables): Fully ignore case for "mode:".
15417 2011-08-20  Alan Mackenzie  <acm@muc.de>
15419         Resolve invalid use of a regexp in regexp-opt.
15421         * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
15422         detection for a java annotation.
15424         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
15425         detection for a java annotation.
15427         * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
15428         handling for java.
15429         (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
15431 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
15433         * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
15434         (Bug#9274).
15436 2011-08-20  Alan Mackenzie  <acm@muc.de>
15438         Fontify CPP expressions correctly when starting in the middle of
15439         such a construct.  Mainly for when jit-lock etc. starts a chunk
15440         here.
15442         * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
15443         variable.
15444         (c-make-font-lock-search-form): New function, extracted from
15445         c-make-font-lock-search-function.
15446         (c-make-font-lock-search-function): Use the above function.
15447         (c-make-font-lock-context-search-function): New function.
15448         (c-cpp-matchers): Enhance the preprocessor expression case with
15449         the above function
15450         (c-font-lock-complex-decl-prepare): Test for being in a CPP form
15451         which takes an expression.
15453         * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
15455 2011-08-20  Martin Rudalics  <rudalics@gmx.at>
15457         * window.el (display-buffer-reuse-window)
15458         (display-buffer-pop-up-window): Don't reuse or split a side
15459         window.
15461 2011-08-19  Glenn Morris  <rgm@gnu.org>
15463         * files.el (hack-local-variables-prop-line, hack-local-variables):
15464         Downcase "Mode:".  (Bug#9331)
15466 2011-08-18  Chong Yidong  <cyd@stupidchicken.com>
15468         * international/characters.el: Add L and R categories.
15470         * subr.el (bidi-string-mark-left-to-right): Rename from
15471         string-mark-left-to-right.  Use category search.
15473         * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
15475 2011-08-18  Juri Linkov  <juri@jurta.org>
15477         * faces.el (error, warning, success): New faces with definitions
15478         copied from old default values of `font-lock-warning-face',
15479         `compilation-warning', `compilation-info' (bug#6117).
15481         * font-lock.el (font-lock-warning-face): Inherit from `error'.
15483         * progmodes/compile.el (compilation-error): Inherit from `error'.
15484         (compilation-warning): Inherit from `warning'.
15485         (compilation-info): Inherit from `success'.
15487         * dired.el (dired-marked): Inherit from `warning'.
15488         (dired-flagged): Inherit from `error'.
15490 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15492         * mail/smtpmail.el (auth-source): Require to avoid problems with
15493         binding variables (bug#9298).  Also clean up some unused
15494         autoloads.
15496         * net/network-stream.el (network-stream-open-starttls):
15497         Support using starttls.el without using gnutls-cli.
15499 2011-08-17  Juri Linkov  <juri@jurta.org>
15501         * progmodes/grep.el (rgrep): Handle the case when
15502         `grep-find-command' is a cons cell (bug#9278).
15504 2011-08-17  Martin Rudalics  <rudalics@gmx.at>
15506         * window.el (display-buffer-pop-up-frame): Run frame creation
15507         function with BUFFER current (as special-display-popup-frame
15508         does).  Reported by Drew Adams.
15510 2011-08-17  Daiki Ueno  <ueno@unixuser.org>
15512         * epa-mail.el: Simplify GnuPG group expansion using
15513         epg-expand-group.
15514         (epa-mail-group-alist, epa-mail-group-modtime)
15515         (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
15516         (epa-mail-sync-groups, epa-mail-expand-recipient-1)
15517         (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
15518         Remove.
15520 2011-08-16  Feng Li  <fengli@gmail.com>  (tiny change)
15522         * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
15524 2011-08-16  Alan Mackenzie  <acm@muc.de>
15526         * progmodes/cc-engine.el (c-state-cache-non-literal-place):
15527         Correct, to avoid the inside of macros.
15529 2011-08-16  Richard Stallman  <rms@gnu.org>
15531         * epa-mail.el: Handle GnuPG group definitions.
15532         (epa-mail-group-alist, epa-mail-group-modtime)
15533         (epa-mail-gnupg-conf-file): New variables.
15534         (epa-mail-parse-groups, epa-mail-sync-groups)
15535         (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
15536         (epa-mail-expand-recipients): New functions.
15537         (epa-mail-encrypt): Call epa-mail-expand-recipients.
15539         * mail/rmail.el (rmail-epa-decrypt): New command.
15541         * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
15542         Don't bind buffer-read-only, just inhibit-read-only.
15543         (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
15544         (epa-decrypt-armor-in-region): Make error message clearer.
15546 2011-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
15548         * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
15549         and "a2b" to "ab" for `prefix'.
15551 2011-08-14  Chong Yidong  <cyd@stupidchicken.com>
15553         * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
15554         filter groups.
15555         (ibuffer-included-in-filter-p-1): Use it.  Suggested by Rafaël
15556         Fourquet (Bug#8804).
15558 2011-08-12  Juanma Barranquero  <lekktu@gmail.com>
15560         * startup.el (argi): Declare as global variable (bug#9275).
15562 2011-08-12  Chong Yidong  <cyd@stupidchicken.com>
15564         * subr.el (string-mark-left-to-right): Search the entire string
15565         for RTL script, not just the terminating character.  Doc fix.
15567 2011-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15569         * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
15570         New function.
15571         (js--regexp-literal, js-syntax-propertize-function): Remove.
15572         (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
15573         (js-mode-map): Don't rebind electric keys.
15574         (js-insert-and-indent): Remove.
15575         (js-mode): Setup electric-layout and electric-indent instead.
15577         * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
15579 2011-08-12  Daiki Ueno  <ueno@unixuser.org>
15581         * epa.el (epa-progress-callback-function): Fix the logic of
15582         displaying progress.
15583         * epa-file.el (epa-file-insert-file-contents): Make progress
15584         display more user-friendly.
15585         (epa-file-write-region): Ditto.
15587 2011-08-10  Chong Yidong  <cyd@stupidchicken.com>
15589         * subr.el (string-mark-left-to-right): New function.
15591         * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
15592         Use string-mark-left-to-right.
15593         (list-buffers-noselect): Caller changed.
15595         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15596         Use string-mark-left-to-right.
15597         (tabulated-list-print): Recenter after moving point.
15599 2011-08-10  Juri Linkov  <juri@jurta.org>
15601         * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
15602         This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
15603         intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
15605 2011-08-09  Chong Yidong  <cyd@stupidchicken.com>
15607         * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
15608         (Bug#7554).
15610 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
15612         * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
15613         character.  (Bug#6594)
15615 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
15617         * image-dired.el: Don't use find-file for temporary work (Bug#7895).
15618         (image-dired--with-db-file): New macro.
15619         (image-dired-write-tags, image-dired-remove-tag)
15620         (image-dired-create-gallery-lists, image-dired-write-comments)
15621         (image-dired-get-comment, image-dired-mark-tagged-files)
15622         (image-dired-list-tags, image-dired-gallery-generate): Use it.
15623         (image-dired-gallery-generate): Use insert-file-contents.
15625         * time.el (display-time-world-list, display-time-world-display):
15626         * time-stamp.el (time-stamp-string):
15627         * vc/add-log.el (add-change-log-entry): Use setenv instead of
15628         set-time-zone-rule (Bug#7337).
15630 2011-08-08  Daiki Ueno  <ueno@unixuser.org>
15632         * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15633         (epg-error-to-string, epg-errors-to-string): New function.
15634         (epg-wait-for-completion): Reverse errors list.
15635         (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15636         (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15637         (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15638         (epg-sign-keys, epg-generate-key-from-file)
15639         (epg-generate-key-from-string): Format errors by using
15640         epg-errors-to-string (bug#9255).
15641         (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15643 2011-08-07  Juri Linkov  <juri@jurta.org>
15645         * faces.el (list-faces-display): Remove extra angle bracket
15646         from `help-mode-map'.
15648         * info.el (Info-history-toc-nodes): Doc fix.
15650         * longlines.el (longlines-mode): Doc fix.
15652 2011-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15654         * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15655         of statements and in a few more cases (bug#9183).
15657         * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15658         New functions.
15659         (cl-transform-lambda): Use them (bug#9239).
15661 2011-08-05  Martin Rudalics  <rudalics@gmx.at>
15663         * window.el (display-buffer-same-window)
15664         (display-buffer-same-frame, display-buffer-other-window)
15665         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15666         (pop-to-buffer-other-window)
15667         (pop-to-buffer-same-frame-other-window)
15668         (pop-to-buffer-other-frame): Make them defuns.
15669         (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15671 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15673         * subr.el (make-composed-keymap): Move from C.  Change calling
15674         convention, and improve docstring to bring attention to a subtle point.
15675         * minibuffer.el (completing-read-default): Adjust accordingly.
15677 2011-08-03  Michael Albinus  <michael.albinus@gmx.de>
15679         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15680         (tramp-open-shell): Use `tramp-shell-quote-argument'.
15682         * net/trampver.el: Update release number.
15684 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15686         * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15687         "in" (bug#9190).
15689 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15691         * mail/sendmail.el (sendmail-query-once): Restore the current
15692         buffer after querying (bug#9074).
15694         * dired.el (dired-flagged): Use different faces for marked and
15695         flagged files (bug#6117).
15697         * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15698         (bug#4433).
15700         * ido.el (ido-mode): Switch off the message if called
15701         non-interactively.
15703         * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15704         before 587, since it appears that that's more likely to work for
15705         more people.
15707         * cus-edit.el (custom-file): When running under emacs -q, always
15708         refuse to save the customizations, even if the .emacs file doesn't
15709         exist.
15711         * info.el: Remove the `Info-beginning-of-buffer' function
15712         (bug#8325).
15714         * net/network-stream.el (network-stream-open-starttls):
15715         Use `starttls-available-p' to see whether starttls.el can be used.
15717 2011-08-01  Martin Rudalics  <rudalics@gmx.at>
15719         * window.el (display-buffer-in-window): Don't set dedicated status
15720         of window here (Bug#9215).
15721         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15722         (display-buffer-pop-up-side-window)
15723         (display-buffer-in-side-window): Set dedicated status of window here.
15725 2011-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
15727         * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15728         before binding generated-autoload-file.
15730 2011-08-01  Deniz Dogan  <deniz@dogan.se>
15732         * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15734 2011-07-30  Michael Albinus  <michael.albinus@gmx.de>
15736         Sync with Tramp 2.2.2.
15738         * net/trampver.el: Update release number.
15740 2011-07-30  Juri Linkov  <juri@jurta.org>
15742         * dired-aux.el (dired-touch-initial): Remove function.
15743         (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15744         current time, and `default' to the last modification time of the
15745         current marked file (bug#6887).
15747 2011-07-28  Jose E. Marchesi  <jemarch@gnu.org>
15749         * simple.el (goto-line): Use string-to-number to provide a
15750         numeric argument to read-number (bug#9163).
15752 2011-07-27  Michael Albinus  <michael.albinus@gmx.de>
15754         * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15755         connection process, it could be nil.
15757 2011-07-27  Leo Liu  <sdl.web@gmail.com>
15759         Simplify url handling in rcirc-mode.
15761         * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15762         (rcirc-browse-url-at-mouse): Remove.
15763         * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15765 2011-07-26  Alan Mackenzie  <acm@muc.de>
15767         Fontify bitfield declarations properly.
15769         * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
15770         (c-symbol-chars): Now exported as a lang variable.
15771         (c-not-primitive-type-keywords): New lang variable.
15773         * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
15774         QT keyword "more" to prevent "more slots: ...." being spuriously
15775         parsed as a bitfield declaration.
15777         * progmodes/cc-engine.el (c-beginning-of-statement-1):
15778         Refactor and enhance to handle bitfield declarations.
15779         (c-punctuation-in): New function.
15780         (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
15781         declarations properly.
15783 2011-07-26  Ulf Jasper  <ulf.jasper@web.de>
15785         * calendar/icalendar.el (icalendar--all-events): Take care of
15786         multiple vcalendars in a single file.
15787         (icalendar--convert-float-to-ical): Checkdoc fixes.
15789 2011-07-25  Deniz Dogan  <deniz@dogan.se>
15791         * image.el (insert-image): Clarifying docstring.
15793 2011-07-24  Michael Albinus  <michael.albinus@gmx.de>
15795         * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
15796         `tramp-send-command-and-check' if there is no error.
15797         (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
15799 2011-07-22  Alan Mackenzie  <acm@muc.de>
15801         Prevent cc-langs.elc being loaded at run time.
15803         * progmodes/cc-mode.el: Remove two autoload forms which loaded
15804         cc-langs.
15806         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
15807         "(require 'cc-langs)".  Quote a form so it will evaluate at
15808         (cc-mode's) compilation time.
15810 2011-07-22  Michael Albinus  <michael.albinus@gmx.de>
15812         * net/tramp.el (tramp-file-name-handler): Avoid recursive
15813         loading.  (Bug#9114)
15815 2011-07-21  Martin Rudalics  <rudalics@gmx.at>
15817         * window.el (display-buffer-pop-up-window)
15818         (display-buffer-pop-up-side-window)
15819         (display-buffer-in-side-window): Call display-buffer-set-height
15820         and display-buffer-set-width after setting the new window's
15821         buffer so `fit-window-to-buffer' and friends work on the right buffer.
15823 2011-07-20  Sam Steingold  <sds@gnu.org>
15825         * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
15826         (etags-tags-included-tables): Call `convert-standard-filename' on
15827         the file names contained in TAGS so that windows Emacs can handle
15828         TAGS files created by cygwin ctags.
15830 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15832         * proced.el (proced-update): Revert yesterday's bug#1779 patch,
15833         which apparently didn't work.
15835 2011-07-19  Roland Winkler  <winkler@gnu.org>
15837         * proced.el (proced-send-signal): For *Marked Processes* buffer
15838         put point at beginning of buffer.
15840 2011-07-19  Stephen Berman  <stephen.berman@gmx.net>
15842         * proced.el (proced-format): Make header lines align with the text
15843         (bug#1779).
15845 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15847         * view.el (view-buffer): Allow running in `special' modes if we're
15848         visiting a file (bug#8615).
15850 2011-07-19  Martin Rudalics  <rudalics@gmx.at>
15852         * window.el (display-buffer-alist-of-strings-p)
15853         (display-buffer-alist-set-1, display-buffer-alist-set-2):
15854         New functions.
15855         (display-buffer-alist-set): Rewrite to handle Emacs 23 options
15856         more accurately.
15858 2011-07-18  Alan Mackenzie  <acm@muc.de>
15860         Fontify declarators properly when, e.g., a jit-lock chunk begins
15861         inside a declaration.
15863         * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
15865         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15866         New function.
15867         (c-complex-decl-matchers): Insert reference to
15868         c-font-lock-enclosing-decls.
15870         * progmodes/cc-engine.el (c-backward-single-comment):
15871         (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
15872         to nil around calls to (forward-comment -1).
15874 2011-07-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15876         * image.el (put-image): Doc typo fix.
15878         * progmodes/etags.el (tags-search): Doc typo fix.
15880         * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
15881         password if we get errors 550 to 554.
15883 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15885         * net/gnutls.el (gnutls-log-level): Remove.
15887         * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
15888         indentation character (bug#6380).
15890         * files.el (buffer-offer-save): Made permanently local (bug#6241).
15892         * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
15893         to clarify what the problem is (bug#4291).
15895         * simple.el (current-kill): Clarify what
15896         `interprogram-paste-function' does (bug#7500).
15897         (auto-fill-mode): Document `auto-fill-function' in relation to
15898         `auto-fill-mode' (bug#2470).
15900 2011-07-16  Lawrence Mitchell  <wence@gmx.li>
15902         * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
15903         method if slot is read-only (bug#9035).
15905 2011-07-16  Martin Rudalics  <rudalics@gmx.at>
15907         * frame.el (select-frame-set-input-focus): New argument NORECORD.
15908         * window.el (pop-to-buffer): Select window used even if it was
15909         selected before, see discussion of (Bug#8615), (Bug#6954).
15910         Pass argument NORECORD on to select-frame-set-input-focus.
15912 2011-07-15  Glenn Morris  <rgm@gnu.org>
15914         * subr.el (read-char-choice): Allow quitting.  (Bug#9001)
15915         Respect help-form.
15917 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
15919         * net/gnutls.el (gnutls-min-prime-bits): New variable.
15920         (gnutls-negotiate): Use it.
15922 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15924         * net/gnutls.el (gnutls-negotiate):
15925         Upcase `gnutls-algorithm-priority'.
15927 2011-07-15  Glenn Morris  <rgm@gnu.org>
15929         * jka-compr.el (jka-compr-verbose): Move from here...
15930         * jka-cmpr-hook.el (jka-compr-verbose): ... to here.  (Bug#9090)
15931         Add missing :version tag.
15932         * info.el: No need to require jka-compr when compiling.
15934 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15936         * net/gnutls.el (gnutls-algorithm-priority): New variable.
15937         (gnutls-negotiate): Use it.
15939         * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
15941         * info.el (Info-beginning-of-buffer): New command.
15942         (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
15943         announcing `b' as the key (bug#8325).
15944         (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
15946         * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
15948         * international/mule-cmds.el
15949         (describe-specified-language-support): Make the error message
15950         clearer (bug#8905).
15952         * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
15954         * isearch.el (isearch-barrier): Add a doc string, since it's
15955         mentioned in a function doc string (bug#8678).
15957 2011-07-15  Martin Rudalics  <rudalics@gmx.at>
15959         * window.el (switch-to-buffer): Call pop-to-buffer with normalized
15960         buffer argument (Bug#9083) and self-identifying label argument.
15962 2011-07-15  Glenn Morris  <rgm@gnu.org>
15964         * emacs-lisp/debug.el (debug): Doc fix.  (Bug#8273)
15966 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15968         * man.el (Man-fontify-manpage): Fix message when formatting the
15969         man page (bug#7929).
15971 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
15973         * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
15974         argument LRM; if non-nil, append an invisible LRM character to the
15975         buffer name.
15976         (list-buffers-noselect): Call Buffer-menu-buffer+size with the
15977         last argument non-nil, when formatting buffer names.
15978         (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
15979         paragraph direction.
15981 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15983         * man.el (Man-bgproc-sentinel): Skip any arguments and only output
15984         the man page name (bug#7929).
15986         * image.el (put-image): Mention the `put-image' overlay property
15987         (bug#7834).
15989         * scroll-bar.el (set-scroll-bar-mode): Mention that
15990         `scroll-bar-mode' lists the values (bug#7772).
15992         * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
15993         command (bug#7729).
15995         * rect.el (apply-on-rectangle): Return the point after the last
15996         operation.
15997         (string-rectangle): Go to the point after the last operation
15998         (bug#7522).
16000         * printing.el (pr-toggle-region): Clarify the documentation
16001         slightly (bug#7493).
16003         * time.el (display-time-update):
16004         Allow `display-time-mail-function' to return nil (bug#7158).
16005         Fix suggested by Detlev Zundel.
16007         * vc/diff.el (diff): Clarify the order the file names are read
16008         (bug#7111).
16010         * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
16011         the doc string (bug#7015).
16013         * font-lock.el (font-lock-maximum-decoration): Mention what
16014         numeric levels mean (bug#6935).
16016         * startup.el (initial-buffer-choice): Don't mention the `none'
16017         selection, which is against policy.
16019 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
16021         * window.el (display-buffer-normalize-special):
16022         Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
16024 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
16026         * subr.el (version<, version<=, version=): Mention "-CVS" and
16027         "-12345" alpha version numbers.
16029 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
16031         * bindings.el: Add advertised binding for set-mark-command
16032         (Bug#5772).
16034 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
16036         * bindings.el (mode-line-other-buffer):
16037         * bookmark.el (bookmark-bmenu-2-window):
16038         * bs.el (bs-cycle-next, bs-cycle-previous):
16039         * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
16040         switch-to-buffer.
16042         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16043         Delete.
16045 2011-07-14  Juanma Barranquero  <lekktu@gmail.com>
16047         * follow.el (follow-debug-message, follow-redisplay):
16048         * jka-cmpr-hook.el (with-auto-compression-mode):
16049         Fix typos in docstrings.
16051 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16053         * subr.el (with-silent-modifications): Clarify somewhat what the
16054         macro inhibits (bug#6525).
16056         * simple.el (eval-expression): Note what it does if called
16057         interactively (bug#6495).
16059 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
16061         * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
16062         Use pop-to-buffer buffer-or-name if it is nil.
16064         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16065         Remove switch-to-buffer.
16067 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16069         * files.el (make-directory): Clarify that an error will be raised
16070         if there's an error (bug#6397).
16072         * startup.el (initial-buffer-choice): Add `none' as a choice
16073         (bug#6234).
16075         * subr.el (add-hook): Clarify section about buffer-local hooks
16076         (bug#6218).
16078         * dired.el (dired-flagged): Clarify doc string (bug#6117).
16080 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
16082         * tabify.el (untabify): Preserve the current column so that point
16083         doesn't move (bug#6032).
16085 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16087         * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
16088         Rewrite to avoid awkward possessive "s" (bug#5986).
16090 2011-07-13  Glenn Morris  <rgm@gnu.org>
16092         * dired.el (dired-use-ls-dired): Doc fix.  (Bug#9039).
16093         (dired-insert-directory): Give a message the first time
16094         if ls is found not to support --dired.
16096 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16098         * simple.el (toggle-truncate-lines): Clarify what is toggled
16099         (bug#5580).  Text by Drew Adams.
16101 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
16103         * simple.el (blink-matching-open): Make the error message from the
16104         last change less verbose.
16106 2011-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
16108         * font-lock.el (font-lock-comment-face): Use the high contrast
16109         "yellow" color for font-lock-comment-face on low color terminals
16110         using a dark background color (bug#4221).
16112 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16114         * dired.el (dired-insert-set-properties): Make the doc string
16115         reflect what it does now (bug#5325).
16117         * simple.el (blink-matching-open): Say that we were unable to find
16118         the match within the limit, if we're limited (bug#5122).
16120         * international/mule-cmds.el (prefer-coding-system): Add an
16121         example (bug#4869).
16123         * progmodes/etags.el (tags-search): Document `file-list-form'
16124         (bug#4731).
16126 2011-07-13  Lawrence Mitchell  <wence@gmx.li>
16128         * net/browse-url.el (browse-url-default-browser)
16129         (browse-url-browser-function): Make the default browser choice a
16130         bit more logical (bug#4300).  Also clean up the doc string.
16132 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
16134         * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
16135         binary endings (bug#4440).
16137 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16139         * info.el (info-insert-file-contents): Inhibit jka-compr messages,
16140         which can be pretty annoying (bug#8971).
16142         * jka-compr.el (jka-compr-verbose): New variable, and use
16143         throughout (bug#8971).
16145         * info.el (Info-find-file): Fall back on the installation
16146         directory if we can't find the info node anywhere else.
16148 2011-07-13  Sergei Organov  <osv@javad.com>  (tiny change)
16150         * vc/vc.el (vc-revert-file):
16151         Don't set file time-stamp in the past.  (Bug#5181)
16153 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16155         * files.el (after-find-file): Give a better error message when
16156         trying to find a symlink that points to a file that doesn't exist
16157         (bug#4398).
16159         * progmodes/cc-vars.el: Remove (probably) misleading comment
16160         (bug#4396).
16162 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
16164         * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
16166 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
16168         * mouse-sel.el: Hack restoring functionality, while keeping
16169         compatibility with 2010-07-03 changes to mouse selection.
16170         (mouse-sel-primary-overlay): New var.
16171         (mouse-sel-selection-alist): Use it.
16172         (mouse-sel-mode): Doc fix; remove points that are default features
16173         of mouse.el.
16175 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
16177         * progmodes/compile.el (compilation-error-regexp-alist-alist):
16178         Fix previous fix (bug#2490).
16180 2011-07-12  Roland Winkler  <winkler@gnu.org>
16182         * textmodes/bibtex.el (bibtex-initialize):
16183         Use pop-to-buffer-same-window.
16184         (bibtex-search-entries): Fix interactive call.
16186 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16188         * progmodes/compile.el (compilation-error-regexp-alist-alist):
16189         Fontise bytecomp Error lines more correctly (bug#2490).
16190         Fix suggested by Johan Bockgård.
16192         * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
16194         * dired-x.el (dired-guess-default): Use `delete-dups'.
16196 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
16198         * dired.el (dired-mark-prompt):
16199         * dired-aux.el (dired-read-shell-command): Doc fix.
16201 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16203         * mail/sendmail.el (sendmail-query-once):
16204         Use `customize-save-variable' unconditionally, now that it works under
16205         emacs -Q.
16207         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16209         * cus-edit.el (custom-file): Take an optional no-error variable.
16210         (customize-save-variable): Set the variable, and give a warning if
16211         running under "emacs -q".
16213 2011-07-11  Juanma Barranquero  <lekktu@gmail.com>
16215         * loadhist.el (unload-feature-special-hooks):
16216         Add `auto-coding-functions', `fill-nobreak-predicate' and
16217         `find-directory-functions' (bug#5327).
16219 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16221         * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
16223         * cus-edit.el (custom-guess-name-alist): -alist variables should
16224         use the `alist' type (bug#3120).  Suggested by Drew Adams.
16226         * printing.el: Add documentation to all the `pr-toggle-' commands.
16228 2011-07-11  Leo Liu  <sdl.web@gmail.com>
16230         * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
16231         backends where it makes sense (bug#2623).
16233 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16235         * dired-x.el (dired-guess-default): Remove duplicate shell command
16236         entries (bug#2028).
16237         (dired-guess-default): Fix grammar in doc string (bug#2028).
16238         (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
16240         * subr.el (remove-duplicates): New conveniency function.
16242 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16244         * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
16245         (bug#1526).
16247 2011-07-10  Martin Rudalics  <rudalics@gmx.at>
16249         * window.el (display-buffer-normalize-default): Don't invert
16250         meaning of even-window-heights.  Reported by Eli Zaretskii
16251         <eliz@gnu.org>.
16253 2011-07-10  Bob Rogers  <rogers@rgrjr.dyndns.org>
16255         * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
16257 2011-07-10  Chong Yidong  <cyd@stupidchicken.com>
16259         * window.el (display-buffer): Fix arguments to
16260         display-buffer-reuse-window in last change.
16262         * faces.el (link): Use a less saturated blue on light backgrounds.
16264         * startup.el (fancy-startup-text, fancy-about-text)
16265         (fancy-startup-tail): Use font-lock faces, for background safety.
16267 2011-07-09  Bob Nnamtrop  <bobnnamtrop@gmail.com>  (tiny change)
16269         * emulation/viper-cmd.el (viper-change-state-to-vi):
16270         Limit triggering of abbrev expansion (Bug#9038).
16272 2011-07-09  Martin Rudalics  <rudalics@gmx.at>
16274         * window.el (display-buffer-default-specifiers): Remove.
16275         (display-buffer-macro-specifiers): Remove default specifiers.
16276         (display-buffer-alist): Default to nil.
16277         (display-buffer-reuse-window): New optional argument other-window.
16278         (display-buffer-pop-up-window): Allow splitting internal
16279         windows.  Check whether a live window was created.
16280         (display-buffer-other-window-means-other-frame)
16281         (display-buffer-normalize-arguments): Rename to
16282         display-buffer-normalize-argument and rewrite.  Set the
16283         other-window specifier.
16284         (display-buffer-normalize-special): New function.
16285         (display-buffer-normalize-options): Rename to
16286         display-buffer-normalize-default and rewrite.
16287         (display-buffer-normalize-options-inhibit): Remove.
16288         (display-buffer-normalize-specifiers): Rewrite.
16289         (display-buffer): Process other-window specifier and call
16290         display-buffer-reuse-window with it.  Emulate Emacs 23 behavior
16291         more faithfully.
16292         (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
16293         (display-buffer-alist-set): Don't handle 'unset default values.
16294         (display-buffer-in-window, display-buffer-alist-set):
16295         Replace symbol "dedicated" by "dedicate".  Reported by Tassilo Horn
16296         <tassilo@member.fsf.org>.
16298 2011-07-09  Leo Liu  <sdl.web@gmail.com>
16300         * register.el (insert-register): Restore accidental change on
16301         2011-06-26.  (Bug#9028)
16303 2011-07-09  Glenn Morris  <rgm@gnu.org>
16305         * subr.el (remq): Handle the empty list.  (Bug#9024)
16307 2011-07-08  Andreas Schwab  <schwab@linux-m68k.org>
16309         * mail/sendmail.el (send-mail-function): No longer delay custom
16310         initialization.
16311         * custom.el (custom-initialize-delay): Doc fix.
16313 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16315         * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
16317 2011-07-08  Michael Albinus  <michael.albinus@gmx.de>
16319         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
16320         human-friendly prompt.
16322 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16324         * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
16325         provided by a particular plugin.
16327 2011-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16329         * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
16330         save customizations (with "emacs -Q"), just set the variable
16331         instead of erroring out.
16333         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16335 2011-07-08  Juri Linkov  <juri@jurta.org>
16337         * arc-mode.el (archive-zip-expunge, archive-zip-update)
16338         (archive-zip-update-case): Use 7z if found by `executable-find'.
16339         The order of searching the available programs is the same as in
16340         `archive-zip-extract' (bug#8968).
16342 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
16344         * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
16345         (menu-bar-options-menu): Tweak descriptions.
16347 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16349         * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
16350         menu items into verb phrases (bug#1421).  Also refill to fit under
16351         80 columns.
16353 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
16355         * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
16356         (Info-read-node-name): Doc fix (Bug#1084).
16358         * thingatpt.el (forward-thing, bounds-of-thing-at-point)
16359         (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
16360         (end-of-sexp, beginning-of-sexp)
16361         (thing-at-point-bounds-of-list-at-point, forward-whitespace)
16362         (forward-symbol, forward-same-syntax, word-at-point)
16363         (sentence-at-point): Doc fix (Bug#1144).
16365 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16367         * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
16368         should cover it (bug#1281).
16370         * cus-edit.el (custom-show): Mark as obsolete.
16372         * net/network-stream.el (network-stream-open-starttls): If GnuTLS
16373         negotiation fails, then possibly try again with a non-encrypted
16374         connection (bug#9017).
16376         * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
16377         be used.
16379 2011-07-07  Richard Stallman  <rms@gnu.org>
16381         * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
16382         property, and handle its changed format.
16383         Look for the correct line number.
16384         Use file's line contents (but not past first =) to find
16385         correct line in message.
16387 2011-07-07  Kenichi Handa  <handa@m17n.org>
16389         * international/characters.el (build-unicode-category-table):
16390         Delete it.
16391         (unicode-category-table): Set it by unicode-property-table-internal.
16393         * international/mule-cmds.el (char-code-property-alist): Move to
16394         to src/chartab.c.
16395         (get-char-code-property): Call unicode-property-table-internal to
16396         load a file.  Call get-unicode-property-internal where necessary.
16397         (put-char-code-property): Call unicode-property-table-internal to
16398         load a file.  Call put-unicode-property-internal where necessary.
16399         put-unicode-property-internal where necessary.
16400         (char-code-property-description):
16401         Call unicode-property-table-internal to load a file.
16403         * international/charprop.el:
16404         * international/uni-bidi.el:
16405         * international/uni-category.el:
16406         * international/uni-combining.el:
16407         * international/uni-comment.el:
16408         * international/uni-decimal.el:
16409         * international/uni-decomposition.el:
16410         * international/uni-digit.el:
16411         * international/uni-lowercase.el:
16412         * international/uni-mirrored.el:
16413         * international/uni-name.el:
16414         * international/uni-numeric.el:
16415         * international/uni-old-name.el:
16416         * international/uni-titlecase.el:
16417         * international/uni-uppercase.el: Regenerate.
16419         * loadup.el: Load international/charprop.el before
16420         international/characters.
16422 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
16424         * window.el (next-buffer, previous-buffer): Signal an error if
16425         called from a minibuffer window.
16427         * bindings.el: Revert 2011-07-04 change.
16429 2011-07-06  Richard Stallman  <rms@gnu.org>
16431         * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
16432         (rmail-mime-insert-bulk, rmail-mime-insert-text):
16433         Treat markers like ints.
16434         (rmail-mime-entity): Doc fix.
16436 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16438         * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
16439         defcustom again for backwards compatibility.
16441         * simple.el (shell-command-on-region): Fill.
16443         * dired-aux.el (dired-kill-line): Add a doc string.
16445         * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
16446         to "\\sw\\|\\s_" (bug#358).
16448         * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
16449         (dired-unmark-backward): Ditto.
16450         (dired-flag-backup-files): Ditto.
16452         * dired-x.el (dired-mark-sexp): Ditto.
16454 2011-07-06  Richard Stallman  <rms@gnu.org>
16456         * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
16457         (rmail-mime-entity): New arg TRUNCATED.
16458         (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
16459         New functions.
16460         (rmail-mime-save): Warn if entity is truncated.
16461         (rmail-mime-toggle-hidden): Likewise, for showing.
16462         (rmail-mime-process-multipart): Record when an entity is truncated.
16464         * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
16465         if ENTITY is a string.
16467 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16469         * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
16470         of faces when `M-C-x'-ing their definitions (bug#8378).
16471         Also clean up the code slightly.
16473         * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
16474         because that makes the colors go away.
16476         * mail/sendmail.el (send-mail-function): Change the default to
16477         `sendmail-query-once'.
16478         (sendmail-query-once): Add an autoload cookie.
16480         * net/network-stream.el (network-stream-open-starttls): Try using
16481         a plain connection even if the server offered STARTTLS, and we
16482         kinda wanted to use it, if Emacs doesn't have any STARTTLS
16483         capability.  This should make smtpmail.el work in slightly more
16484         configurations.
16486 2011-07-06  Michael Albinus  <michael.albinus@gmx.de>
16488         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16489         New defun.
16490         * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
16492 2011-07-06  Michael R. Mauger  <mmaug@yahoo.com>
16494         * progmodes/sql.el: Version 3.0
16495         (sql-product-alist): Add product :completion-object,
16496         :completion-column, and :statement attributes.
16497         (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
16498         (sql-mode-syntax-table): Mark all punctuation.
16499         (sql-font-lock-keywords-builder): Temporarily remove fallback on
16500         ansi keywords.
16501         (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
16502         (sql-mode-oracle-font-lock-keywords): Improve.
16503         (sql-oracle-show-reserved-words): New function for development.
16504         (sql-product-font-lock): Simplify for source code buffers.
16505         (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
16506         New functions.
16507         (sql-highlight-product): Set product specific syntax table.
16508         (sql-mode-map): Add statement movement functions.
16509         (sql-ansi-statement-starters, sql-oracle-statement-starters):
16510         New variable.
16511         (sql-statement-regexp, sql-beginning-of-statement)
16512         (sql-end-of-statement, sql-signum): New functions.
16513         (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
16514         (sql-show-sqli-buffer): Bug fix.
16515         (sql-interactive-mode): Store connection data as buffer local.
16516         (sql-connect): Add NEW-NAME parameter.  Redesign interaction
16517         with sql-interactive-mode.
16518         (sql-save-connection): Save buffer local settings.
16519         (sql-connection-menu-filter): Change menu entry name.
16520         (sql-product-interactive): Bug fix.
16521         (sql-preoutput-hold): New variable.
16522         (sql-interactive-remove-continuation-prompt): Bug fixes.
16523         (sql-debug-redirect): New variable.
16524         (sql-str-literal): New function.
16525         (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
16526         Redesign.
16527         (sql-oracle-save-settings, sql-oracle-restore-settings)
16528         (sql-oracle-list-all, sql-oracle-list-table): New functions.
16529         (sql-completion-object, sql-completion-column)
16530         (sql-completion-sqlbuf): New variables.
16531         (sql-build-completions-1, sql-build-completions)
16532         (sql-try-completion): New functions.
16533         (sql-read-table-name): Use them.
16534         (sql-contains-names): New buffer local variable.
16535         (sql-list-all, sql-list-table): Use it.
16536         (sql-oracle-completion-types): New variable.
16537         (sql-oracle-completion-object, sql-sqlite-completion-object)
16538         (sql-postgres-completion-object): New functions.
16540 2011-07-06  Glenn Morris  <rgm@gnu.org>
16542         * window.el (pop-to-buffer): Doc fix.
16544 2011-07-06  Markus Heiser  <markus.heiser@darmarit.de>  (tiny change)
16546         * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
16548 2011-07-06  Chong Yidong  <cyd@stupidchicken.com>
16550         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
16552         * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
16554 2011-07-05  Chong Yidong  <cyd@stupidchicken.com>
16556         * button.el (button): Inherit from link face.  Suggested by Dan
16557         Nicolaescu.
16559 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16561         * progmodes/gdb-mi.el: Fit in 80 columns.
16562         (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
16563         switch-to-buffer.
16565         * progmodes/which-func.el (which-func-ff-hook): Don't output a message
16566         if imenu is simply not configured (bug#8941).
16568 2011-07-05  Ken Manheimer  <ken.manheimer@gmail.com>
16570         * allout.el (allout-post-undo-hook): New allout outline-change
16571         event hook to signal undo activity.
16572         (allout-post-command-business): Run allout-post-undo-hook if an
16573         undo just occurred.
16574         (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
16575         * allout-widgets.el (allout-widgets-after-undo-function):
16576         Ensure the integrity of the current item's decoration after it has been
16577         in the vicinity of an undo.
16578         (allout-widgets-mode): Include allout-widgets-after-undo-function
16579         on the new allout-post-undo-hook.
16581 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16583         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
16584         Let define-derived-mode define it.
16585         * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
16586         cycles of abbrev-table inheritance (bug#8998).
16588 2011-07-05  Roland Winkler  <winkler@gnu.org>
16590         * textmodes/bibtex.el: Add support for biblatex.
16591         (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
16592         (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
16593         (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
16594         (bibtex-entry-alist, bibtex-field-alist): New variables.
16595         (bibtex-entry-field-alist): Obsolete alias for
16596         bibtex-BibTeX-entry-alist.
16597         (bibtex-entry-alist, bibtex-field-alist): New widgets.
16598         (bibtex-set-dialect): New command.
16599         (bibtex-entry-type, bibtex-entry-head)
16600         (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
16601         Bind via bibtex-set-dialect.
16602         (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
16603         (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
16604         (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
16605         (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
16606         Define via bibtex-set-dialect.
16607         (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
16608         Obey bibtex-no-opt-remove-re.
16609         (bibtex-vec-push, bibtex-vec-incr): New functions.
16610         (bibtex-format-entry, bibtex-field-list)
16611         (bibtex-print-help-message, bibtex-validate)
16612         (bibtex-search-entries): Use new format of bibtex-entry-alist.
16614 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16616         * progmodes/compile.el (compilation-goto-locus):
16617         * net/tramp-cmds.el (tramp-append-tramp-buffers):
16618         * bs.el (bs-cycle-next, bs-cycle-previous):
16619         * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
16620         * bindings.el (mode-line-other-buffer):
16621         * autoinsert.el (auto-insert):
16622         * arc-mode.el (archive-extract):
16623         * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
16625 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
16627         * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16628         Fix check of `emacs-lock-unlockable-modes'.
16629         Coerce true values of `emacs-lock--try-unlocking' to t.
16631 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
16633         * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16634         * emacs-lock.el: New file.
16636 2011-07-05  Julien Danjou  <julien@danjou.info>
16638         * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16639         than `boundp' to check if face is set.
16641 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
16643         * register.el (registerv-make):
16644         * window.el (window-min-height): Fix typos in docstrings.
16646 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
16648         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
16649         Update doc string.
16651 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
16653         * server.el (server-execute): Catch quit and call
16654         `server-return-error' to pass the error back to emacsclient and
16655         close the connection (bug#8942).
16657 2011-07-04  Ken Manheimer  <ken.manheimer@gmail.com>
16659         * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16660         insecure exception for current topic.  Also note that auto-saves
16661         are handled differently.
16663         (allout-auto-save-temporarily-disabled, allout-just-did-undo):
16664         State variables for tracking auto-save inhibition situation.
16666         (allout-write-contents-hook-handler): Rename from
16667         'allout-write-file-hook-handler', and describe how it depends on
16668         write-contents-functions sensitivity to non-nil value to prevent
16669         file write.
16671         (allout-auto-save-hook-handler): Remove.  auto-save does not check
16672         this in individual buffers, only in the starting buffer, so this
16673         is not the right way for us to inhibit auto-save in a buffer
16674         according to its condition.
16676         (allout-mode): Use new allout-write-contents-hook-handler, and
16677         only with write-contents-functions.  Remove auto-save provisions -
16678         they're implemented elsewhere.
16680         (allout-before-change-handler): If undo is in progress, note that
16681         for attention of allout-post-command-business.
16683         (allout-post-command-business): If the command we're following was
16684         an undo, check for change in the status of encrypted items and
16685         adjust auto-save inhibitions accordingly.
16687         (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16688         according to whether there are or aren't any plain-text topics
16689         pending encryption.
16691         (allout-inhibit-auto-save-info-for-decryption):
16692         Adjust buffer-saved-size and some allout state to inhibit auto-saves
16693         if there are plain-text topics pending encryption.
16695         (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16696         buffer-saved-size and some allout state to not inhibit auto-saves
16697         if there are no longer any plain-text topics pending encryption.
16699         (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16700         No longer provide for exemption of the current topic.
16702 2011-07-04  Juri Linkov  <juri@jurta.org>
16704         Add 7z operations to delete and save changed members (bug#8968).
16705         * arc-mode.el (archive-7z-expunge, archive-7z-update):
16706         New defcustoms.
16707         (archive-7z-write-file-member): New function.
16708         (archive-7z-summarize): Fix the number of dashes in the
16709         listing output.
16711 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
16713         * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16714         (bug#8958).
16716 2011-07-04  Chong Yidong  <cyd@stupidchicken.com>
16718         * bindings.el: Ignore next-buffer and previous-buffer in
16719         minibuffer-local-map.
16721         * font-lock.el (font-lock-builtin-face): Change light background
16722         color to dark slate blue (Bug#6693).
16724 2011-07-04  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
16726         * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16728 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
16730         * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16731         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16732         Add switch-to-buffer.
16734 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16736         * isearch.el (isearch-search-fun-function): Clarify further the
16737         meaning of the function returned.
16739 2011-07-04  Michael Albinus  <michael.albinus@gmx.de>
16741         * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16743         * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16744         (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16745         Use it.
16746         (tramp-remote-path): Add "/bin" and "/usr/bin".  On busyboxes,
16747         `tramp-default-remote-path' does not exist.
16748         (tramp-send-command-and-read): New optional argument NOERROR.
16749         (tramp-open-connection-setup-interactive-shell)
16750         (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16751         (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16752         (tramp-process-sentinel): Flush also process' connection property.
16753         (tramp-sh-handle-start-file-process): Do not set process
16754         sentinel.  It is done now ...
16755         (tramp-maybe-open-connection): ... here.  (Bug#8929)
16757 2011-07-04  MON KEY  <monkey@sandpframing.com>
16759         * play/animate.el (animate-string): Doc fixes and allow changing
16760         the buffer name (bug#5417).
16762 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16764         * play/animate.el (animation-buffer-name): Rename from *animate*.
16766 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
16768         * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
16769         This is simpler and helps future-proof the code.
16770         (timer-until): Use time-subtract and float-time.
16771         (timer--time-less-p): Use time-less-p.
16773 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
16775         * type-break.el (timep): Use the value of `float-time' to avoid a
16776         byte-compiler warning.
16778         * server.el (server-eval-and-print): Return any result, even nil.
16780 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
16782         * type-break.el: Accept time formats that the builtins accept.
16783         (timep, type-break-time-difference): Accept any format that
16784         float-time accepts, rather than insisting on (HIGH LOW USECS) format.
16785         This is simpler and helps future-proof the code.
16786         (type-break-time-difference): Round rather than ignoring
16787         subseconds components.
16789 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16791         * info.el (Info-apropos-matches): Make non-interactive, since it
16792         doesn't seem to do anything useful as a command (bug#8829).
16794 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
16796         * frame.el (frame-background-mode, frame-set-background-mode):
16797         Move from faces.el.
16798         (frame-default-terminal-background): New function.
16800         * custom.el (custom-push-theme): Don't record faces in `changed'
16801         theme; this doesn't work correctly for per-frame face settings.
16802         (disable-theme): Use face-set-after-frame-default to reset faces.
16803         (custom--frame-color-default): New function.
16805 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16807         * dired.el (dired-flagging-regexp): Remove unused variable
16808         (bug#8769).
16810 2011-03-29  Kevin Ryde  <user42@zip.com.au>
16812         * progmodes/compile.el (compilation-error-regexp-alist-alist):
16813         `perl-Test2' extend to match possible "fail #N" rep count
16814         (bug#8377).
16816 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16818         * mail/feedmail.el (feedmail-buffer-to-smtpmail):
16819         `smtpmail-via-smtp' now returns the error instead of nil.
16821         * isearch.el (isearch-search-fun-function): Clarify the doc string
16822         (bug#8101).
16824 2011-07-03  Richard Kim  <emacs18@gmail.com>  (tiny change)
16826         * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
16827         unnecessary spaces (bug#8987).
16829 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16831         * net/network-stream.el (open-network-stream): Use the
16832         :end-of-capability command thoughout.
16834 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
16836         * net/network-stream.el (open-network-stream): Add the
16837         :end-of-capability command parameter, used by pop3.el.
16839 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16841         * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
16843         * fringe.el (fringe-query-style): Remove redundant text " (type ?
16844         for list)" (bug#6475).
16846         * files.el (file-expand-wildcards): Ignore non-readable
16847         sub-directories while trying to find matches instead of signaling
16848         an error (bug#6297).
16850         * man.el (Man-reference-regexp): Allow matching possible
16851         word-wrapped references (bug#6289).
16853         * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
16854         for consistency with the other vc buffers (bug#6197).
16855         (vc-checkin): Ditto.
16857         * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
16859         * longlines.el (longlines-mode): Document what ARG does (bug#6150).
16861 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16863         * custom.el (defcustom): Clarify that :set is only used in the
16864         Customize user interface (bug#6089).
16866         * progmodes/flymake.el (flymake-mode): If the buffer isn't
16867         associated with a file, refuse to run instead of erroring out
16868         (bug#6084).
16870         * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
16871         the doc string, since it appears that using `fill-column' always
16872         controls the width (bug#7845).
16874         * simple.el (shell-command-on-region): Say where the error output
16875         went if `shell-command-default-error-buffer' is set (bug#6857).
16877 2011-07-02  Ken Manheimer  <ken.manheimer@gmail.com>
16879         * allout.el (allout-yank-processing): Adjust cursor position for
16880         backwards-deleted space.
16882         (allout-rebullet-heading): Register changes with
16883         allout-exposure-changed-hook, so the modified topic is properly
16884         decorated.
16886 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16888         * minibuffer.el (completion-in-region): Document PREDICATE
16889         (bug#7136).
16891         * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
16892         of keyword/argument pairs (bug#6904).
16894         * replace.el (multi-occur):
16895         Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
16897 2011-07-02  Drew Adams  <drew.adams@oracle.com>
16899         * dired.el (dired-mark-if): Make the message about whether it's
16900         marking or unmarking clearer (bug#8523).
16902 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16904         * disp-table.el (display-table-print-array): New function.
16905         (describe-display-table): Use it to print the vectors more pretty
16906         (Bug#8859).
16908 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
16910         * window.el (window-state-get-1): Don't assign clone numbers.
16911         Add clone-of item to list of window parameters.
16912         (window-state-put-2): Don't process clone numbers.
16913         (display-buffer-alist): Fix doc-string.
16915 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
16917         * subr.el (remq): Don't allocate if it's not needed.
16918         (keymap--menu-item-binding, keymap--menu-item-with-binding)
16919         (keymap--merge-bindings): New functions.
16920         (keymap-canonicalize): Use them to refine the canonicalization.
16921         * minibuffer.el (minibuffer-local-completion-map)
16922         (minibuffer-local-must-match-map): Move initialization from C.
16923         (minibuffer-local-filename-completion-map): Move initialization from C;
16924         don't inherit from anything here.
16925         (minibuffer-local-filename-must-match-map): Make obsolete.
16926         (completing-read-default): Use make-composed-keymap to combine
16927         minibuffer-local-filename-completion-map with either
16928         minibuffer-local-must-match-map or
16929         minibuffer-local-filename-completion-map.
16931 2011-07-01  Glenn Morris  <rgm@gnu.org>
16933         * type-break.el (type-break-time-sum): Use dolist.
16935         * textmodes/flyspell.el (flyspell-word-search-backward):
16936         Replace CL function.
16938 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
16940         * mouse.el (mouse--strip-first-event): New function.
16941         (function-key-map): Use it to map fringe clicks to normal clicks
16942         by default.
16944         * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
16945         (vc-bzr-revision-completion-table): Add support for annotate and date.
16947         * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
16948         inherit from parent.
16950 2011-07-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16952         * dired-aux.el (dired-diff): Doc fixup (bug#8816).
16953         (dired-show-file-type): Doc fixup (bug#8818).
16955         * dired.el (dired-mode): Fix up the doc string as suggested by
16956         Drew Adams (bug#8817).
16958         * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
16959         cookie, since the manual says that it should be possible to add
16960         this function to `find-file-hook' (bug#8709).
16962 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
16964         * progmodes/cfengine.el: Moved all cfengine3.el functionality
16965         here.  Noted Ted Zlatanov as the maintainer.
16966         (cfengine-common-settings, cfengine-common-syntax): New functions
16967         to set up common things between `cfengine-mode' and
16968         `cfengine3-mode'.
16969         (cfengine3-mode): New mode.
16970         (cfengine3-defuns cfengine3-defuns-regex
16971         (cfengine3-class-selector-regex cfengine3-category-regex)
16972         (cfengine3-vartypes cfengine3-font-lock-keywords)
16973         (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
16974         (cfengine3-indent-line): Add from cfengine3.el.
16976 2011-07-01  Michael Albinus  <michael.albinus@gmx.de>
16978         * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
16980         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
16982 2011-07-01  Martin Rudalics  <rudalics@gmx.at>
16984         * window.el (same-window-buffer-names, same-window-regexps)
16985         (same-window-p, special-display-frame-alist)
16986         (special-display-popup-frame, special-display-function)
16987         (special-display-buffer-names, special-display-regexps)
16988         (special-display-p, pop-up-frame-alist, pop-up-frame-function)
16989         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
16990         (split-window-preferred-function, split-height-threshold)
16991         (split-width-threshold, even-window-heights)
16992         (display-buffer-mark-dedicated, window-splittable-p)
16993         (split-window-sensibly, window-safely-shrinkable-p):
16994         Un-obsolete.
16995         (display-buffer): Don't spread args with function specifier
16996         because special-display-popup-frame won't like it.
16998 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
17000         Time-stamp simplifications and fixes.
17001         These improve accuracy slightly, and future-proof the code
17002         against some potential changes to current-time format.
17004         * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
17005         by using time-since and float-time.
17007         * vc/ediff-util.el (ediff-calc-command-time): Use time-since
17008         and float-time.  Say "NNN.NNN seconds" rather than "NNN seconds
17009         + NNN microseconds".
17011         * type-break.el (type-break-time-sum): Rewrite using time-add.
17013         * play/hanoi.el (hanoi-current-time-float): Remove.
17014         All uses replaced by float-time.
17016         * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
17017         This yields a more-accurate answer.
17018         (rng-time-to-float): Remove; no longer needed.
17020         * emacs-lisp/timer.el (timer-relative-time): Use time-add.
17022         * calendar/timeclock.el (timeclock-seconds-to-time):
17023         Defalias to seconds-to-time, since they're the same thing.
17025         * emacs-lisp/elp.el (elp-elapsed-time):
17026         * emacs-lisp/benchmark.el (benchmark-elapse):
17027         * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
17029 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
17031         * window.el (bury-buffer): Don't iconify the only frame.
17032         (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
17033         to pop-to-buffer.  Use pop-to-buffer-same-frame if you don't like that.
17035 2011-07-01  Chong Yidong  <cyd@stupidchicken.com>
17037         * eshell/em-smart.el (eshell-smart-display-navigate-list):
17038         Add mouse-yank-primary.
17040 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
17042         * progmodes/cfengine3.el: New file to support CFEngine 3.x.
17044 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
17046         * emacs-lisp/find-func.el (find-library--load-name): New fun.
17047         (find-library-name): Use it to find relative load names when provided
17048         absolute file name (bug#8803).
17050 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17052         * textmodes/flyspell.el (flyspell-word): Consider words that
17053         differ only in case as potential doublons (bug#5687).
17055         * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
17056         Remove two rather uninteresting debugging-like messages to make
17057         debbugs.el more silent.
17059         * comint.el (comint-password-prompt-regexp): Accept "Response" as
17060         a password-like phrase.
17062 2011-06-30  Masatake YAMATO  <yamato@redhat.com>
17064         * progmodes/cc-guess.el: New file.
17066         * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
17068         * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
17069         derived from `c-basic-common-init'.
17071         * progmodes/cc-mode.el (top-level): Require cc-guess.
17072         (c-basic-common-init): Use `cc-choose-style-for-mode'.
17074 2011-06-30  Lawrence Mitchell  <wence@gmx.li>
17076         * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
17078 2011-06-30  Alan Mackenzie  <acm@muc.de>
17080         * progmodes/cc-engine.el (c-guess-continued-construct):
17081         Correct the handling of template-args-cont, particularly for when font
17082         lock is disabled.  Name this case as "CASE G".
17084 2011-06-30  Ken Manheimer  <ken.manheimer@gmail.com>
17086         * allout.el (allout-yank-processing): Fix injection of extra space
17087         between bullet and non-whitespace character in first topic when
17088         pasting, ensuring that the actual spacing in the pasted topic
17089         following the bullet char is preserved.  This extra space was
17090         causing pasted encrypted topics to get a decrypted status even
17091         when the content was actually still encrypted.  Now the decryption
17092         status from before the paste is preserved.
17094         (allout-flag-region): Set all allout overlays so they evaporate
17095         when reduced to zero length (evanescent), to prevent overlay
17096         leakage.
17098 2011-06-30  Glenn Morris  <rgm@gnu.org>
17100         * w32-fns.el (w32-charset-info-alist): Declare.
17102         * find-dired.el (find-grep-options): Simplify.
17104         * term/ns-win.el (ns-set-resource): Declare.
17106         * ses.el (row, col): Declare dynamic variables honestly.
17108         * textmodes/reftex-parse.el (index-tags): Declare.
17110 2011-06-30  Chong Yidong  <cyd@stupidchicken.com>
17112         * cus-edit.el (customize-push-and-save): New function.
17114         * files.el (hack-local-variables-confirm): Use it.
17116         * custom.el (load-theme): New arg NO-CONFIRM.
17117         Use customize-push-and-save (Bug#8720).
17118         (custom-enabled-themes): Doc fix.
17120         * cus-theme.el (customize-create-theme)
17121         (custom-theme-merge-theme): Callers to load-theme changed.
17123 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17125         * thingatpt.el (thing-at-point-short-url-regexp): Require that
17126         short URLs have at least one dot in them (bug #7614).
17128         * progmodes/grep.el (rgrep): Bind `process-connection-type' to
17129         nil, because using a pty is apparently too slow (bug #895).
17131 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17133         * mail/sendmail.el (sendmail-query-once): New function.
17134         (sendmail-query-once-function): New variable.
17136 2011-06-29  Glenn Morris  <rgm@gnu.org>
17138         * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
17140         * ses.el (top-level): Require cl when compiling.
17141         (ses-set-localvars): Fix error statement.
17142         Call it at compile time to silence a storm of warnings.
17144 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
17146         * window.el (normalize-live-buffer): Rename to
17147         window-normalize-buffer.
17148         (normalize-live-frame): Rename to window-normalize-frame.
17149         (normalize-any-window): Rename to window-normalize-any-window.
17150         (normalize-live-window): Rename to window-normalize-live-window.
17151         (make-window-atom): Rename to window-make-atom.
17152         (window-resize-reset): Rename to window--resize-reset.
17153         (window-resize-reset-1): Rename to window--resize-reset-1.
17154         (resize-mini-window): Rename to window--resize-mini-window.
17155         (resize-subwindows-skip-p): Rename to
17156         window--resize-subwindows-skip-p.
17157         (resize-subwindows-normal): Rename to
17158         window--resize-subwindows-normal.
17159         (resize-subwindows): Rename to window--resize-subwindows.
17160         (resize-other-windows): Rename to window--resize-siblings.
17161         (resize-this-window): Rename to window--resize-this-window.
17162         (resize-root-window): Rename to window--resize-root-window.
17163         (resize-root-window-vertically): Rename to
17164         window--resize-root-window-vertically.
17165         (normalize-buffer-to-display): Rename to
17166         window-normalize-buffer-to-display.
17167         (normalize-buffer-to-switch-to): Rename to
17168         window-normalize-buffer-to-switch-to.
17169         Correspondingly update all callers of the functions listed
17170         above.
17171         (display-buffer-alist, display-buffer-normalize-arguments)
17172         (display-buffer-normalize-options, display-buffer)
17173         (display-buffer-alist-set): Use "function" instead of
17174         "fun-with-args".
17176 2011-06-28  Chong Yidong  <cyd@stupidchicken.com>
17178         * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
17179         addresses more clearly.  Add hyperlinks for bug-gnu-emacs and
17180         debbugs.gnu.org.  Mention acknowledgment email.
17182 2011-06-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17184         * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
17185         buffer multibyteness, since it shouldn't matter.
17187 2011-06-28  Martin Rudalics  <rudalics@gmx.at>
17189         * window.el (display-buffer-in-side-window): Handle dedicated
17190         windows as in display-buffer-reuse-window.
17191         (display-buffer-normalize-alist): Use value of override
17192         specifier.
17193         (display-buffer-normalize-specifiers): Use value of
17194         other-window-means-other-frame specifier.
17195         (display-buffer-alist): Rewrite some texts in widgets.
17196         (display-buffer): Spread arguments when calling function
17197         specified by fun-with-args.
17199 2011-06-28  Deniz Dogan  <deniz@dogan.se>
17201         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17202         Unnest `let'.
17204         * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
17205         selectors (Bug#5732).
17206         (css-proprietary-nmstart-re): Use `regexp-opt'.
17208 2011-06-27  Jari Aalto  <jari.aalto@cante.net>
17210         * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
17211         (eshell-ls-date-format): New defcustom.
17212         (eshell-ls-file): Use it.
17214 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
17216         * help-fns.el (describe-variable): Fix message for terminal-local vars.
17218 2011-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17220         * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
17221         (ange-ftp-make-tmp-name): New arg.
17222         (ange-ftp-file-local-copy): Use it.
17224 2011-06-27  Jambunathan K  <kjambunathan@gmail.com>
17226         * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
17227         no-conversion (Bug#8870).
17229 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
17231         * window.el (window-right, window-left, window-child)
17232         (window-child-count, window-last-child)
17233         (window-iso-combination-p, walk-window-tree-1)
17234         (window-atom-check-1, window-tree-1, delete-window)
17235         (window-state-get-1, display-buffer-even-window-sizes): Adapt to
17236         new naming conventions - window-vchild, window-hchild,
17237         window-next and window-prev are now called window-top-child,
17238         window-left-child, window-next-sibling and window-prev-sibling
17239         respectively.
17240         (resize-window-reset): Rename to window-resize-reset.
17241         (resize-window-reset-1): Rename to window-resize-reset-1.
17242         (resize-window): Rename to window-resize.
17243         (window-min-height, window-min-width)
17244         (resize-mini-window, resize-this-window, resize-root-window)
17245         (resize-root-window-vertically, adjust-window-trailing-edge)
17246         (enlarge-window, shrink-window, maximize-window)
17247         (minimize-window, delete-window, quit-restore-window)
17248         (split-window, balance-windows, balance-windows-area-adjust)
17249         (balance-windows-area, window-state-put-2)
17250         (display-buffer-even-window-sizes, display-buffer-set-height)
17251         (display-buffer-set-width, set-window-text-height)
17252         (fit-window-to-buffer): Rename all "resize-window" prefixed
17253         calls to use the "window-resize" prefix convention.
17254         (display-buffer-alist): Fix symbol for label specifier.
17255         (display-buffer-reuse-window): Set reuse-dedicated to cdr of
17256         corresponding specifier.
17257         Reported by Juanma Barranquero <lekktu@gmail.com>.
17259 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
17261         * ses.el (ses-destroy-cell-variable-range): Fix heading comment
17262         convention.
17263         (ses-call-printer): Does not pass an empty string to formatter when the
17264         cell is empty to keep from barking printer Calc math-format-value.
17266 2011-06-27  Richard Stallman  <rms@gnu.org>
17268         * battery.el (battery-mode-line-limit): New variable.
17269         (battery-update): Handle it.
17271         * mail/rmailmm.el (rmail-mime-process-multipart):
17272         Handle truncated messages.
17274 2011-06-27  Glenn Morris  <rgm@gnu.org>
17276         * progmodes/flymake.el (flymake-err-line-patterns):
17277         Allow for column numbers in the ant/javac pattern.  (Bug#8866)
17279 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
17281         * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
17282         (ses--clean-!, ses--clean-_): New functions.
17283         (ses-range): Add configurability of readout order, and conversion
17284         to Calc vector.
17286         * ses.el (ses-repair-cell-reference-all): New function.
17287         (ses-cell-symbol): Set macro as safe, so that it can be used in
17288         formulas.
17290         * ses.el: Update cycle detection algorithm.
17291         (ses-localvars): Add ses--Dijkstra-attempt-nb and
17292         ses--Dijkstra-weight-bound, and initial values thereof when applicable.
17293         (ses-set-localvars): New function.
17294         (ses-make-cell): Add property-list as a cell element.
17295         (ses-cell-property-get-fun, ses-cell-property-get)
17296         (ses-cell-property-delq-fun, ses-cell-property-set-fun)
17297         (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
17298         New functions.
17299         (ses-cell-property-set, ses-cell-property-pop)
17300         (ses-cell-property-get-handle): New macro.
17301         (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
17302         New aliases, used for code readability.
17303         (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
17304         cycle detection.
17305         (ses-self-reference-early-detection): New defcustom.
17306         (ses-formula-references): Robustify against self-referring cells.
17307         (ses-mode): Use ses-set-localvars.
17308         (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
17309         before lauching the update processing.
17310         (ses-initialize-Dijkstra-attempt): New function.
17311         (ses-recalculate-cell): Update for cycle detection based on
17312         Dijkstra algorithm.
17314         * ses.el: Fix commenting and indenting convention.
17316 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
17318         * bs.el (bs-cycle-next): Complete last change.
17320 2011-06-27  Drew Adams  <drew.adams@oracle.com>
17322         * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
17324 2011-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17326         * net/network-stream.el (network-stream-open-starttls):
17327         Don't re-get capabilities unless we've reestablished connection.
17328         (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
17330         * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
17331         to binary to possibly avoid line encoding issues on Windows (among
17332         other things).
17334 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17336         * net/network-stream.el (open-network-stream): Return an :error
17337         saying what the problem was, if possible.
17339         * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
17340         server.
17342         * net/network-stream.el (network-stream-open-starttls): If we
17343         wanted to use STARTTLS, and the server offered it, but we weren't
17344         able to because we had no STARTTLS support, then close the connection.
17345         (open-network-stream): Return an :error element, if present.
17347 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
17349         * hl-line.el (hl-line-sticky-flag): Doc fix.
17350         (global-hl-line-sticky-flag): New option (Bug#8323).
17351         (global-hl-line-highlight): Obey it.
17353         * vc/vc.el (vc-revert-show-diff): Default to t.
17355 2011-06-26  Ken Manheimer  <ken.manheimer@gmail.com>
17357         * allout-widgets.el (allout-widgets-post-command-business):
17358         Stop decorating intermediate isearch matches.  They're not being
17359         undecorated when an isearch is continued past, and isearch
17360         automatically collapses them.  This leads to "widget leaks", where
17361         decorated items accumulate in collapsed areas.  Lines with lots of
17362         hidden widgets can slow down cursor travel, substantially.
17363         Too much complicated machinery would be needed to ensure undecoration,
17364         so we're doing without this nicety.
17366         (allout-widgets-tally-string): Don't try to do a hash-table-count
17367         of allout-widgets-tally when it's nil.  This eliminates spurious "Error
17368         during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
17369         *Messages* when allout-widgets-maintain-tally is t.
17371 2011-06-26  Martin Rudalics  <rudalics@gmx.at>
17373         * window.el (display-buffer-normalize-argument): Rename to
17374         display-buffer-normalize-arguments.  Handle special meaning of
17375         LABEL argument.  Respect special-display-function when popping up
17376         a new frame.  Fix code searching for a window showing the buffer
17377         on another frame.
17378         (display-buffer-normalize-specifiers):
17379         Call display-buffer-normalize-arguments.
17380         (display-buffer-in-window): Don't undedicate the window if its
17381         buffer remains the same.
17382         Reported by Drew Adams <drew.adams@oracle.com>.
17383         (display-buffer-alist): Add choice for same-window macro
17384         specfier.
17385         (display-buffer): Mention special meaning of LABEL argument in
17386         doc-string.  Fix quoting.  Don't pop up a new frame even as
17387         fallback.
17389 2011-06-26  Juanma Barranquero  <lekktu@gmail.com>
17391         * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
17392         avoid deleting the current window in some cases (bug#8911).
17394 2011-06-26  Andreas Schwab  <schwab@linux-m68k.org>
17396         * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
17397         (Bug#8934)
17399 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17401         * net/network-stream.el (network-stream-open-starttls):
17402         Use built-in TLS support if `gnutls-available-p' is true.
17403         (network-stream-open-tls): Ditto.
17405 2011-06-26  Leo Liu  <sdl.web@gmail.com>
17407         * register.el (registerv): New struct.
17408         (registerv-make): New function.
17409         (jump-to-register, describe-register-1, insert-register):
17410         Support the jump-func, print-func and insert-func slot of a registerv
17411         struct.  (Bug#8415)
17413 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
17415         * vc/vc.el (vc-revert-show-diff): New defcustom.
17416         (vc-diff-internal): New arg specifying diff buffer.
17417         (vc-revert): Obey vc-revert-show-diff.  If we show a diff, don't
17418         reuse an existing *vc-diff* buffer (Bug#8927).
17420         * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
17422 2011-06-26  Glenn Morris  <rgm@gnu.org>
17424         * progmodes/f90.el (f90-critical-indent): New option.
17425         (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
17426         (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
17427         (f90-mode): Doc fix.
17428         (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
17429         (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
17430         (f90-beginning-of-block, f90-next-block, f90-indent-region)
17431         (f90-match-end): Handle block, critical.
17433 2011-06-25  Glenn Morris  <rgm@gnu.org>
17435         * calendar/diary-lib.el (diary-included-files): Doc fix.
17436         (diary-include-files): New function, extracted from
17437         diary-include-other-diary-files and diary-mark-included-diary-files.
17438         (diary-include-other-diary-files, diary-mark-included-diary-files):
17439         Just call diary-include-files.
17440         (diary-mark-entries): Reset diary-included-files on first call.
17442         * calendar/diary-lib.el (diary-mark-entries)
17443         (diary-mark-included-diary-files):
17444         Visit included diary-files in temp buffers.
17446         * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
17447         (f90-blocks-re, f90-program-block-re, f90-end-block-re)
17448         (f90-start-block-re, f90-imenu-generic-expression)
17449         (f90-looking-at-program-block-start, f90-no-block-limit):
17450         Add support for submodules.
17452         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
17453         (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
17455 2011-06-25  Eli Zaretskii  <eliz@gnu.org>
17457         * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
17458         buffer-file-type before setting its value, to avoid disastrous
17459         global effects on decoding files for DOS/Windows systems.  (Bug#8780)
17461 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
17463         * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
17465         * ses.el (ses-unload-function):
17466         * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
17468         * proced.el (proced-unload-function):
17469         * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
17471 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
17473         * server.el (server-create-window-system-frame): Add parameters arg.
17474         (server-process-filter): Doc fix.  Handle frame-parameters.
17476 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
17478         Fix bug#8730, bug#8781.
17480         * loadhist.el (unload--set-major-mode): New function.
17481         (unload-feature): Use it.
17483         * progmodes/python.el (python-after-info-look): Add autoload cookie.
17484         (python-unload-function): New function.
17486 2011-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
17488         * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
17490 2011-06-25  Giuseppe Scrivano  <gscrivano@gnu.org>
17492         * net/browse-url.el (browse-url-firefox-program): Add icecat to
17493         the candidates list.
17495 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
17497         * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
17499 2011-06-23  Richard Stallman  <rms@gnu.org>
17501         * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
17502         (rmail-variables): Set next-error-move-function.
17503         (rmail-what-message): Take argument POS.
17504         (rmail-next-error-move): New function.
17506 2011-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
17508         * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
17509         messages for adjacent non-terminals.
17511 2011-06-23  Richard Stallman  <rms@gnu.org>
17513         * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
17514         (rmail-show-message-1): Preserve buffer modified flag.
17515         (rmail-start-mail): Don't specify use of rmail-mail-return;
17516         that's done by mail-bury now.
17517         (rmail-mail-return): Handle arg NEWBUF.
17519 2011-06-23  Michael Albinus  <michael.albinus@gmx.de>
17521         * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
17522         SIZE is a number.
17524 2011-06-23  Martin Rudalics  <rudalics@gmx.at>
17526         * window.el (get-lru-window, get-mru-window)
17527         (get-largest-window): Never return a minibuffer window.
17528         (display-buffer-pop-up-window): Fix a bug that could lead to
17529         reusing the minibuffer window.
17530         (display-buffer): Pass original specifier argument to
17531         display-buffer-function instead of the normalized one.
17532         Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17534 2011-06-22  Leo Liu  <sdl.web@gmail.com>
17536         * minibuffer.el (completing-read-function)
17537         (completing-read-default): Move from minibuf.c.
17539 2011-06-22  Richard Stallman  <rms@gnu.org>
17541         * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
17542         to Rmail even if not started by a special Rmail command.
17544         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
17545         Copy the buffer currently showing just one message.
17547 2011-06-22  Roland Winkler  <winkler@gnu.org>
17549         * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
17550         (bibtex-clean-entry): First delete the old key so that a
17551         customized algorithm for generating the new key does not get
17552         confused by the old key.
17553         (bibtex-url): Obey regexp of first step.
17554         (bibtex-search-entries): Do not use add-to-list with local
17555         list-var.
17557 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17559         * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
17560         stored a user name, then query for the password first, instead of
17561         waiting for SMTP to give an error message and the trying again.
17563 2011-06-22  Lawrence Mitchell  <wence@gmx.li>
17565         * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
17566         BUFFER in call-process.
17568 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17570         * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
17571         QUIT twice.
17572         (smtpmail-try-auth-methods): Require user name and password from
17573         auth-source.
17575 2011-06-22  Martin Rudalics  <rudalics@gmx.at>
17577         * window.el (display-buffer-default-specifiers)
17578         (display-buffer-alist): Remove entries for pop-up-frame-alist.
17579         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
17580         (split-window): Normalize SIDE argument (Bug#8916).
17582         * frame.el (pop-up-frame-alist, pop-up-frame-function)
17583         (special-display-frame-alist, special-display-popup-frame):
17584         Remove duplicate declarations.  These are now in window.el.
17586 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17588         * mail/smtpmail.el (smtpmail-via-smtp):
17589         Set :use-starttls-if-possible so that we always use STARTTLS if the
17590         server supports it.  SMTP servers that support STARTTLS commonly
17591         require it.
17593         * net/network-stream.el (network-stream-open-starttls): Support
17594         upgrading to STARTTLS always, even if we don't have built-in support.
17595         (open-network-stream): Add the :always-query-capabilities keyword.
17597         * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
17598         upgrades with `open-network-stream', and rely solely on
17599         auth-source for all credentials.  Big changes throughout the file,
17600         but in particular:
17601         (smtpmail-auth-credentials): Remove.
17602         (smtpmail-starttls-credentials): Remove.
17603         (smtpmail-via-smtp): Check for servers saying they want AUTH after
17604         MAIL FROM, too.
17606         * net/network-stream.el (network-stream-open-starttls):
17607         Provide support for client certificates both for external and built-in
17608         STARTTLS.
17609         (auth-source): Require.
17610         (open-network-stream): Document the :client-certificate keyword.
17611         (network-stream-certificate): Change cert-cert to cert and
17612         cert-key to key.
17614 2011-06-21  Michael Albinus  <michael.albinus@gmx.de>
17616         * net/tramp-cache.el (top): Don't load the persistency file when
17617         "emacs -Q" has been called.
17619 2011-06-21  Tim Harper  <timcharper@gmail.com>
17621         * term/ns-win.el (ns-initialize-window-system):
17622         Set application-specific `ApplePressAndHoldEnabled' system
17623         resource to NO as it is not yet supported by the NS port.
17625 2011-06-21  Juanma Barranquero  <lekktu@gmail.com>
17627         * misc.el (list-dynamic-libraries--refresh): Compute header here...
17628         (list-dynamic-libraries): ...not here.
17630 2011-06-21  Leo Liu  <sdl.web@gmail.com>
17632         * subr.el (sha1): Implement sha1 using secure-hash.
17634 2011-06-21  Martin Rudalics  <rudalics@gmx.at>
17636         * window.el (display-buffer-alist): In default value do not
17637         enforce searching a window on any but the selected frame.
17638         Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17639         (display-buffer-select-window): Remove function.
17640         (display-buffer-in-window): When a window on another frame gets
17641         reused, do not select it any more but just raise its frame if
17642         necessary (Bug#8851) and (Bug#8856).
17643         (display-buffer-normalize-options): Handle pop-up-frames related
17644         options more faithfully.
17645         (pop-to-buffer): Don't rely on `display-buffer' selecting the
17646         window if it is on another frame.
17647         (display-buffer-alist, display-buffer-default-specifiers):
17648         Don't make new frame unsplittable by default.
17649         (display-buffer-normalize-argument): Fix doc-string typo and use
17650         'same-frame-other-window instead of 'other-window when associating
17651         with display-buffer-macro-specifiers.
17653 2011-06-21  Vincent Belaïche  <vincent.b.1@hotmail.fr>
17655         * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17656         New functions.
17657         (5x5-mode-map, 5x5-mode-menu): Bind them.
17658         (5x5-draw-grid): Tweak the solver's rendering.
17660 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
17662         * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17663         `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17665 2011-06-21  Drew Adams  <drew.adams@oracle.com>
17667         * menu-bar.el: Use function variable instead of switch-to-buffer.
17668         (menu-bar-select-buffer-function): New variable.
17669         (menu-bar-update-buffers): Use it (bug#8876).
17671 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
17673         * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17674         variable's status.
17676 2011-06-20  Jan Djärv  <jan.h.d@swipnet.se>
17678         * x-dnd.el (x-dnd-version-from-flags)
17679         (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17680         and long as number (Bug#8899).
17681         (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17683 2011-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17685         * minibuffer.el (completion-metadata): Add `metadata' to the alist.
17686         (completion-try-completion, completion-all-completions): Compute the
17687         metadata argument if it's missing; make it optional (bug#8795).
17689         * wid-edit.el: Use lex-bind and move towards completion-at-point.
17690         (widget-complete): Use new :completion-function property.
17691         (widget-completions-at-point): New function.
17692         (default): Use :completion-function instead of :complete.
17693         (widget-default-completions): Rename from widget-default-complete;
17694         Rewrite.
17695         (widget-string-complete, widget-file-complete, widget-color-complete):
17696         Remove functions.
17697         (file, symbol, function, variable, coding-system, color):
17698         * international/mule-cmds.el (default-input-method, charset)
17699         (language-info-custom-alist):
17700         * cus-edit.el (face): Use new property :completions.
17702         * progmodes/pascal.el (pascal-completions-at-point): New function.
17703         (pascal-mode): Use it.
17704         (pascal-mode-map): Use completion-at-point.
17705         (pascal-toggle-completions): Make obsolete.
17706         (pascal-complete-word, pascal-show-completions):
17707         * progmodes/octave-mod.el (octave-complete-symbol):
17708         Redefine as obsolete alias.
17709         * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17710         Signal absence of completion info for old Octave,
17711         (inferior-octave-complete): Redefine as obsolete alias.
17712         * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17713         (meta-completions-at-point): Rename from meta-complete-symbol and
17714         adapt it for use on completion-at-point-functions.
17715         (meta-common-mode): Use it.
17716         (meta-looking-at-backward, meta-match-buffer): Remove.
17717         (meta-complete-symbol): Redefine as obsolete alias.
17718         (meta-common-mode-map): Use completion-at-point.
17719         * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17720         (makefile-mode-map): Use completion-at-point.
17721         (makefile-completions-at-point): Rename from makefile-complete and
17722         adapt it for use on completion-at-point-functions.
17723         (makefile-mode): Use it.
17724         (makefile-complete): Redefine as obsolete alias.
17726 2011-06-20  Deniz Dogan  <deniz@dogan.se>
17728         * net/rcirc.el: Delete trailing whitespaces once and for all.
17730 2011-06-20  Daniel Colascione  <dan.colascione@gmail.com>
17732         * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17734 2011-06-19  Chong Yidong  <cyd@stupidchicken.com>
17736         * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17738         * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17740 2011-06-19  Martin Rudalics  <rudalics@gmx.at>
17742         * window.el (display-buffer-other-window-means-other-frame):
17743         Call display-buffer-normalize-alist.
17744         (display-buffer-normalize-specifiers-1): Rename to
17745         display-buffer-normalize-argument.  New argument other-frame.
17746         Rewrite.
17747         (display-buffer-normalize-specifiers-2): Rename to
17748         display-buffer-normalize-options.
17749         (display-buffer-normalize-alist-1): New function.
17750         (display-buffer-normalize-specifiers-3): Rename to
17751         display-buffer-normalize-alist.
17752         Call display-buffer-normalize-alist-1.
17753         (display-buffer-normalize-options-inhibit): New variable.
17754         (display-buffer-normalize-specifiers): Rewrite calling
17755         display-buffer-normalize-alist,
17756         display-buffer-normalize-argument, and
17757         display-buffer-normalize-options.  Don't call the latter if
17758         display-buffer-normalize-options-inhibit is non-nil.
17759         (frame-auto-delete): New option.
17760         (window-deletable-p): Use frame-auto-delete.
17761         (window-list-no-nils, window-state-ignored-parameters)
17762         (window-state-get-1, window-state-get, window-state-put-list)
17763         (window-state-put-1, window-state-put-2, window-state-put):
17764         New functions.
17765         (display-buffer-normalize-options): Move special-display-p group
17766         after pop-up-frame group (Bug#8851) and (Bug#8856).
17768 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
17770         * emacs-lisp/rx.el (rx-constituents): Add support for numbered
17771         groups (Bug#8776).
17772         (rx-submatch-n): New function.
17773         (rx): Document it.
17775         * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
17776         (Bug#8768).
17778         * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
17780         * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
17782         * cus-face.el (custom-declare-face): Call custom-theme-recalc face
17783         anytime existing face settings are present (Bug#8889).
17785         * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
17786         (delphi-mode): Use define-derived-mode to inherit from prog-mode.
17787         Remove unused argument.
17789 2011-06-18  Martin Rudalics  <rudalics@gmx.at>
17791         * window.el (display-buffer-default-specifiers):
17792         Remove pop-up-frame.  Add pop-up-window-min-height,
17793         pop-up-window-min-width, and another reuse-window specifier
17794         (Bug#8882).  Reported by Dan Nicolaescu <dann@gnu.org>.
17795         (display-buffer-normalize-specifiers-2):
17796         Handle split-height-threshold and split-width-threshold also when
17797         pop-up-windows is unset.  Add a reuse-window specifier for the
17798         case popping up a new window fails.
17799         (special-display-popup-frame): Remove double quoting.
17800         (display-buffer-normalize-specifiers-1): Fix thinko.
17802 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17804         * shell.el (shell-completion-vars): Set pcomplete-termination-string
17805         according to comint-completion-addsuffix.
17807         * pcomplete.el: Convert to lexical binding and fix bug#8819.
17808         (pcomplete-suffix-list): Mark as obsolete.
17809         (pcomplete-completions-at-point): Capture pcomplete-norm-func and
17810         pcomplete-seen in the closure.
17811         (pcomplete-comint-setup): Setup completion-at-point as well.
17812         (pcomplete--entries): New function.
17813         (pcomplete--env-regexp): New var.
17814         (pcomplete-entries): Rewrite to work with partial-completion and
17815         without relying on pcomplete-suffix-list.
17816         (pcomplete-pare-list): Remove, unused.
17818 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
17820         * window.el (display-buffer-alist): Set pop-up-window-min-height
17821         and pop-up-window-min-width in default value.  Reported by
17822         Thierry Volpiatto <thierry.volpiatto@gmail.com>.  New specifier
17823         other-window-means-other-frame.
17824         (display-buffer-macro-specifiers): Comment out entry for
17825         other-window specifier.
17826         (display-buffer-other-window-means-other-frame): New function.
17827         (display-buffer-normalize-specifiers-1): New arguments
17828         buffer-name and label.  Treat other-window case specially.
17829         (display-buffer-normalize-specifiers-2): Treat other-window case
17830         specially.
17831         (display-buffer-normalize-specifiers-3): New function.
17832         (display-buffer-normalize-specifiers):
17833         Call display-buffer-normalize-specifiers-3.
17835 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
17837         * window.el (same-window-p): Fix two typos introduced when
17838         adding with-no-warnings.
17839         (display-buffer-normalize-specifiers-1): Don't check
17840         pop-up-frames for 'unset initialization.
17841         (display-buffer-normalize-specifiers-2): Major rewrite using
17842         special-display-p and same-window-p (Bug#8851) and (Bug#8856).
17843         (pop-up-frames, display-buffer-reuse-frames)
17844         (display-buffer-mark-dedicated): Don't initialize to 'unset.
17845         Suggested by David Engster <deng@randomsample.de>.
17846         (even-window-heights): Initialize to 'unset.
17847         (display-buffer-alist-set): Handle new 'unset initializations.
17848         (display-buffer-macro-specifiers): Don't pop up a new frame in the
17849         other window case.
17851 2011-06-16  Martin Rudalics  <rudalics@gmx.at>
17853         * window.el (display-buffer-normalize-specifiers-1):
17854         Respect current value of pop-up-frames for most reasonable values of
17855         second argument of display-buffer (Bug#8865).
17856         (switch-to-buffer-same-frame, switch-to-buffer-other-window)
17857         (switch-to-buffer-other-window-same-frame)
17858         (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
17859         Adams (Bug#8875).
17860         (display-buffer): Don't check noninteractive when calling
17861         display-buffer-pop-up-frame.
17862         (display-buffer-pop-up-frame): Never pop up a frame in
17863         noninteractive mode (Bug#8857).
17864         (enlarge-window, shrink-window): Don't report an error when the
17865         window can't be resized as requested (Bug#8862).
17867 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
17869         * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
17871         * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
17873         * abbrev.el (define-abbrev-table): Don't add a table multiple times.
17875 2011-06-15  Alan Mackenzie  <acm@muc.de>
17877         * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
17878         for declarators, disable knr checking to speed up for normal files.
17879         2: Refactor, replacing a sequence of nested if forms by a cond form.
17881 2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17883         * net/network-stream.el (open-network-stream): Add the keyword
17884         :always-query-capabilities for the case where you want to force a
17885         `plain' network connection, but the protocol still requires the
17886         capabilitiy command (i.e., SMTP and EHLO).
17888         * subr.el (process-live-p): Rename from `process-alive-p' for
17889         consistency with other `-live-p' functions.
17891 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
17893         * window.el (same-window-buffer-names, same-window-regexps)
17894         (special-display-frame-alist, special-display-popup-frame)
17895         (special-display-function, special-display-buffer-names)
17896         (special-display-regexps, pop-up-frame-alist)
17897         (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
17898         (pop-up-windows, split-window-preferred-function)
17899         (split-height-threshold, split-width-threshold, even-window-heights)
17900         (display-buffer-mark-dedicated): Don't encourage the use of
17901         display-buffer-alist from Elisp code.
17903 2011-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
17905         * progmodes/python.el (python-mode): Derive from prog-mode.
17906         * progmodes/ps-mode.el (ps-mode):
17907         * progmodes/mixal-mode.el (mixal-mode):
17908         * progmodes/cfengine.el (cfengine-mode):
17909         * progmodes/ld-script.el (ld-script-mode): Likewise.
17911 2011-06-15  Martin Rudalics  <rudalics@gmx.at>
17913         * window.el (display-buffer-alist): Trim default value to avoid
17914         popping up a new frame (Bug#8857) or reusing an arbitrary window
17915         on another frame.
17916         (display-buffer): Do not fall back on popping up a new frame in
17917         batch mode (Bug#8857).
17919 2011-06-14  Chong Yidong  <cyd@stupidchicken.com>
17921         * cus-theme.el (describe-theme-1): Use custom-theme-p.
17922         (custom-theme-summary): New function.
17923         (customize-themes): Use it.
17925 2011-06-13  Glenn Morris  <rgm@gnu.org>
17927         * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
17929 2011-06-13  Martin Rudalics  <rudalics@gmx.at>
17931         * help.el (help-window): Remove variable.
17932         (help-window-point-marker, temp-buffer-max-height)
17933         (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
17934         (help-print-return-message): Don't set help-window.
17935         (resize-temp-buffer-window): Rewrite cod eand doc-string.
17936         (help-window-setup-finish): Remove.
17937         (help-window-display-message, help-window-setup)
17938         (with-help-window): Major rewrite based on new
17939         display-buffer-window variable.
17941         * help-mode.el (help-mode-finish): Remove help-window related
17942         code.
17944         * view.el (view-exits-all-viewing-windows): Remove reference to
17945         view-return-to-alist in doc-string.
17946         (view-return-to-alist): Make obsolete.
17947         (view-buffer): Call pop-to-buffer-same-window and remove
17948         undo-window code.
17949         (view-buffer-other-window): Call pop-to-buffer-other-window and
17950         simplify code.  Ignore second argument.
17951         (view-buffer-other-frame): Call pop-to-buffer-other-frame and
17952         simplify code.  Ignore second argument.
17953         (view-return-to-alist-update): Make obsolete.
17954         (view-mode-enter): Rename second argument to QUIT-RESTORE.
17955         Rewrite using quit-restore window parameters.
17956         (view-mode-exit): Rename second argument to EXIT-ONLY.
17957         Rewrite using quit-restore-window.
17958         (View-exit, View-exit-and-edit, View-leave, View-quit)
17959         (View-quit-all, View-kill-and-leave): Call view-mode-exit with
17960         appropriate arguments.
17961         (view-end-message): Use quit-restore window parameter.
17963         * window.el (display-buffer-function): Rewrite doc-string.
17964         (display-buffer-window, display-buffer-alist): New variables.
17965         (display-buffer-split-specifiers)
17966         (display-buffer-side-specifiers)
17967         (display-buffer-macro-specifiers): New constants.
17968         (display-buffer-even-window-sizes, display-buffer-set-height)
17969         (display-buffer-set-width, display-buffer-select-window)
17970         (display-buffer-in-window, display-buffer-reuse-window)
17971         (display-buffer-split-window-1, display-buffer-split-window)
17972         (display-buffer-split-atom-window, display-buffer-pop-up-window)
17973         (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
17974         (display-buffer-in-side-window, normalize-buffer-to-display)
17975         (display-buffer-normalize-specifiers-1)
17976         (display-buffer-normalize-specifiers-2)
17977         (display-buffer-normalize-specifiers, display-buffer-frame):
17978         New functions.
17979         (display-buffer): Major rewrite.
17980         (display-buffer-other-window, display-buffer-other-frame)
17981         (pop-to-buffer, switch-to-buffer-other-window)
17982         (switch-to-buffer-other-frame): Rewrite.
17983         (display-buffer-same-window, display-buffer-same-frame)
17984         (display-buffer-same-frame-other-window)
17985         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
17986         (pop-to-buffer-other-window)
17987         (pop-to-buffer-same-frame-other-window)
17988         (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
17989         (switch-to-buffer-other-window-same-frame): New functions.
17990         (same-window-p, special-display-p): Rewrite disabling warnings.
17991         Make obsolete.
17992         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17993         (display-buffer-mark-dedicated): Initialize to symbol 'unset.
17994         Make obsolete
17995         (same-window-buffer-names, same-window-regexps)
17996         (special-display-frame-alist, special-display-popup-frame)
17997         (special-display-function, special-display-buffer-names)
17998         (special-display-regexps, pop-up-frame-alist)
17999         (pop-up-frame-function, split-window-preferred-function)
18000         (split-height-threshold, split-width-threshold)
18001         (even-window-heights): Make obsolete.
18003 2011-06-12  Glenn Morris  <rgm@gnu.org>
18005         * term/xterm.el (terminal-init-xterm): `version' may be nil.  (Bug#8838)
18006         Misc simplifications.
18008 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
18010         * window.el (window-safely-shrinkable-p): Restore function which
18011         was inadvertently removed in change from 2011-06-11.  Declare as
18012         obsolete.
18014         * calendar/calendar.el (calendar-generate-window):
18015         Use window-iso-combined-p instead of combination of one-window-p and
18016         window-safely-shrinkable-p.
18018 2011-06-12  Glenn Morris  <rgm@gnu.org>
18020         * progmodes/fortran.el (fortran-mode-syntax-table):
18021         * progmodes/f90.el (f90-mode-syntax-table):
18022         Set % to punctuation.  (Bug#8820)
18023         (f90-find-tag-default): Remove, no longer needed.
18025 2011-06-12  Daniel Colascione  <dan.colascione@gmail.com>
18027         * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
18029 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
18031         * image.el (image-animated-p): Return animation delay in seconds.
18032         Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
18033         (image-animate-timeout): Remove DELAY argument.  Don't assume
18034         every subimage has the same delay; get it from image-animated-p.
18035         (image-animate): Caller changed.
18037 2011-06-11  Michael Albinus  <michael.albinus@gmx.de>
18039         * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
18040         to ignored backtrace functions.
18042 2011-06-11  Glenn Morris  <rgm@gnu.org>
18044         * calendar/appt.el (appt-disp-window-function): Doc fix.
18045         (appt-check): Handle overlapping appointments.  (Bug#8337)
18047 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
18049         * window.el (window-tree-1, window-tree): New functions, moving
18050         the latter to window.el.
18051         (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
18052         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
18053         (bw-refresh-edges): Remove.
18054         (balance-windows-1, balance-windows-2): New functions.
18055         (balance-windows): Rewrite in terms of window tree functions,
18056         balance-windows-1 and balance-windows-2.
18057         (bw-adjust-window): Remove.
18058         (balance-windows-area-adjust): New function with functionality of
18059         bw-adjust-window but using resize-window.
18060         (set-window-text-height): Rewrite doc-string.
18061         Use normalize-live-window and resize-window.
18062         (enlarge-window-horizontally, shrink-window-horizontally):
18063         Rename argument to DELTA.
18064         (window-buffer-height): New function.
18065         (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
18066         Rewrite using new window resize routines.
18067         (kill-buffer-and-window, mouse-autoselect-window-select):
18068         Use ignore-errors instead of condition-case.
18069         (quit-window): Call delete-frame instead of delete-windows-on
18070         for the only buffer on frame.
18072 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
18074         * loadup.el (top-level): Load window before files for the sake
18075         of replace-buffer-in-windows.
18077         * files.el (read-buffer-to-switch)
18078         (switch-to-buffer-other-window)
18079         (switch-to-buffer-other-frame, display-buffer-other-frame):
18080         Move to window.el.
18082         * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
18083         (previous-buffer): Move to window.el.
18085         * bindings.el (unbury-buffer): Move to window.el.
18087         * window.el (delete-other-windows-vertically): Move after
18088         definition of delete-other-windows.
18089         (other-window, delete-windows-on, replace-buffer-in-windows):
18090         Move here from window.c.
18091         (record-window-buffer, unrecord-window-buffer)
18092         (set-window-buffer-start-and-point, switch-to-prev-buffer)
18093         (switch-to-next-buffer): New functions.
18094         (get-next-valid-buffer, last-buffer, next-buffer): Move here
18095         from simple.el.  Call switch-to-next-buffer.
18096         (previous-buffer): Move here from simple.el.
18097         Call switch-to-prev-buffer.
18098         (bury-buffer): Move here from buffer.c.  Switch to previous
18099         buffer when window cannot be deleted.
18100         (unbury-buffer): Move here from bindings.el.
18101         (ctl-x-map): Move binding for other-window from window.c to
18102         here.
18103         (read-buffer-to-switch, switch-to-buffer-other-window)
18104         (switch-to-buffer-other-frame): Move here from files.el.
18105         (normalize-buffer-to-switch-to): New functions.
18106         (switch-to-buffer): Move here from buffer.c.
18107         Use read-buffer-to-switch and normalize-buffer-to-switch-to.
18109 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
18111         * window.el (window-min-height, window-min-width): Move here
18112         from window.c.  Add defcustoms and rewrite doc-strings.
18113         (resize-mini-window, resize-window): New functions.
18114         (adjust-window-trailing-edge, enlarge-window, shrink-window):
18115         Move here from window.c.
18116         (maximize-window, minimize-window): New functions.
18117         (delete-window, delete-other-windows, split-window): Move here
18118         from window.c.
18119         (window-split-min-size): New function.
18120         (split-window-keep-point): Mention split-window-above-each-other
18121         instead of split-window-vertically.
18122         (split-window-above-each-other, split-window-vertically):
18123         Rename split-window-vertically to split-window-above-each-other
18124         and provide defalias for old definition.
18125         (split-window-side-by-side, split-window-horizontally):
18126         Rename split-window-horizontally to split-window-side-by-side
18127         and provide defalias for the old definition.
18128         (ctl-x-map): Move bindings for delete-window,
18129         delete-other-windows and enlarge-window here from window.c.
18130         Replace bindings for split-window-vertically and
18131         split-window-horizontally by bindings for
18132         split-window-above-each-other and split-window-side-by-side.
18134         * cus-start.el (all): Remove entries for window-min-height and
18135         window-min-width.  Add entries for window-splits and
18136         window-nest.
18138 2011-06-09  Glenn Morris  <rgm@gnu.org>
18140         * calendar/appt.el (appt-mode-line): New function.
18141         (appt-check, appt-disp-window): Use it.
18143         * files.el (hack-one-local-variable-eval-safep):
18144         Allow minor-modes with explicit +/-1 arguments.
18146 2011-06-09  Teodor Zlatanov  <tzz@lifelogs.com>
18148         * term/xterm.el (xterm): Add defgroup.
18149         (xterm-extra-capabilities): Add defcustom to supply known xterm
18150         capabilities, skip querying them, or query them (default).
18151         (terminal-init-xterm): Use it.
18152         (terminal-init-xterm-modify-other-keys): New function to set up
18153         modifyOtherKeys support to simplify `terminal-init-xterm'.
18155 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
18157         * window.el (resize-window-reset, resize-window-reset-1)
18158         (resize-subwindows-skip-p, resize-subwindows-normal)
18159         (resize-subwindows, resize-other-windows, resize-this-window)
18160         (resize-root-window, resize-root-window-vertically)
18161         (window-deletable-p, window-or-subwindow-p)
18162         (frame-root-window-p): New functions.
18164 2011-06-09  Glenn Morris  <rgm@gnu.org>
18166         * net/ange-ftp.el (ange-ftp-switches-ok): New function.
18167         (ange-ftp-get-files): Use it.
18169 2011-06-09  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
18171         * mail/sendmail.el (mail-recover-1, mail-recover):
18172         * files.el (recover-file, recover-session):
18173         Handle dired-listing-switches not being just a single short option.
18175 2011-06-09  Glenn Morris  <rgm@gnu.org>
18177         * calendar/appt.el (appt-display-message, appt-disp-window):
18178         Handle lists of appointments.
18180 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
18182         * window.el (one-window-p): Move down in code.
18183         Rewrite doc-string.
18184         (window-current-scroll-bars): Rewrite doc-string.
18185         Normalize live window argument.
18186         (walk-windows, get-window-with-predicate, count-windows):
18187         Rewrite doc-string.  Use window-list-1.
18188         (window-in-direction-2, window-in-direction, get-mru-window):
18189         New functions.
18191 2011-06-08  Reuben Thomas  <rrt@sc3d.org>
18193         * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
18194         Doc fix (Bug#8713).
18196 2011-06-08  Chong Yidong  <cyd@stupidchicken.com>
18198         * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
18200 2011-06-08  Juanma Barranquero  <lekktu@gmail.com>
18202         * loadhist.el (unload-feature-special-hooks):
18203         Add `comint-output-filter-functions'.
18205 2011-06-08  Ivan Kanis  <gnu@kanis.fr>
18207         * calendar/appt.el (appt-check): Move some initializations into the let.
18209 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
18211         * window.el (window-height): Defalias to window-total-height.
18212         (window-width): Defalias to window-body-width.
18214 2011-06-07  Chong Yidong  <cyd@stupidchicken.com>
18216         * image-mode.el (image-toggle-animation): New command.
18217         (image-mode-map): Bind it to RET.
18218         (image-mode): Update message.
18219         (image-toggle-display-image): Avoid a spurious cache flush.
18220         (image-transform-rotation): Doc fix.
18221         (image-transform-properties): Return quickly in the normal case.
18222         (image-animate-loop): Rename from image-animate-max-time.
18224         * image.el (image-animate-max-time): Move to image-mode.el.
18225         (create-animated-image): Remove unnecessary function.
18226         (image-animate): Rename from image-animate-start.  New arg.
18227         (image-animate-stop): Remove; just use image-animate-timer.
18228         (image-animate-timer): Use car-safe.
18229         (image-animate-timeout): Rename argument.
18231 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
18233         * window.el (get-lru-window, get-largest-window): Move here from
18234         window.c.  Rename first argument to ALL-FRAMES.
18235         Rephrase doc-strings.
18236         (get-buffer-window-list): Rewrite using window-list-1.
18237         Rephrase doc-string.
18238         (window-safe-min-height, window-safe-min-width): New constants.
18239         (window-size-ignore, window-min-size, window-min-size-1)
18240         (window-sizable, window-sizable-p, window-size-fixed-1)
18241         (window-size-fixed-p, window-min-delta-1, window-min-delta)
18242         (window-max-delta-1, window-max-delta, window-resizable)
18243         (window-resizable-p, window-total-height, window-total-width)
18244         (window-body-width): New functions.
18245         (window-full-height-p, window-full-width-p): Rewrite using
18246         window-total-size.
18247         (window-body-height): Rewrite using window-body-size.
18249 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
18251         * window.el (window-right, window-left, window-child)
18252         (window-child-count, window-last-child, window-any-p)
18253         (normalize-live-buffer, normalize-live-frame)
18254         (normalize-any-window, normalize-live-window)
18255         (window-iso-combination-p, window-iso-combined-p)
18256         (window-iso-combinations)
18257         (walk-window-tree-1, walk-window-tree, walk-window-subtree)
18258         (windows-with-parameter, window-with-parameter)
18259         (window-atom-root, make-window-atom, window-atom-check-1)
18260         (window-atom-check, window-side-check, window-check):
18261         New functions.
18262         (ignore-window-parameters, window-sides, window-sides-vertical)
18263         (window-sides-slots): New variables.
18264         (window-size-fixed): Move down in code.  Minor doc-string fix.
18266 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
18268         * comint.el (comint-dynamic-complete-as-filename)
18269         (comint-dynamic-complete-filename): Correctly call
18270         completion-in-region.
18272 2011-06-05  Deniz Dogan  <deniz@dogan.se>
18274         * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
18275         in last change.
18277 2011-06-05  Deniz Dogan  <deniz@dogan.se>
18279         * net/rcirc.el (rcirc-prompt-for-encryption): New function.
18280         (rcirc): Use it to prompt for encryption.
18282 2011-06-05  Roland Winkler  <winkler@gnu.org>
18284         * textmodes/bibtex.el (bibtex-search-buffer): New variable.
18285         (bibtex-search-entries): New command bound to C-c C-a.
18286         (bibtex-display-entries): New function.
18288 2011-06-05  Roland Winkler  <winkler@gnu.org>
18290         * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
18291         (bibtex-insert-kill): After yanking insert newline if necessary.
18292         (bibtex-initialize): Call bibtex-string-files-init only once.
18293         (bibtex-mode): Do not call easy-menu-add.
18294         (bibtex-validate-globally): Use save-excursion in bibtex buffers.
18295         (bibtex-yank): Set arg properly if nil.
18297 2011-06-05  Roland Winkler  <winkler@gnu.org>
18299         * textmodes/bibtex.el (bibtex-search-entry-globally):
18300         New variable.
18301         (bibtex-search-entry): Use it.
18303 2011-06-05  Roland Winkler  <winkler@gnu.org>
18305         * textmodes/bibtex.el (bibtex-entry-format): New option
18306         sort-fields.
18307         (bibtex-format-entry, bibtex-reformat): Honor this option.
18308         (bibtex-parse-entry): Return fields in proper order.
18310 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
18312         * doc-view.el (doc-view-remove-if): Move computation of result out
18313         of `dolist' to silence misleading lexical-binding warning.
18315 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
18317         * emacs-lisp/timer.el (timer-activate): Remove unused arg.
18318         (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
18320 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
18322         * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
18323         "SunOS 5.10".
18325 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
18327         * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
18328         (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
18329         (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
18330         (tramp-parse-putty):
18331         * net/tramp-sh.el (tramp-completion-function-alist-rsh)
18332         (tramp-completion-function-alist-ssh)
18333         (tramp-completion-function-alist-telnet)
18334         (tramp-completion-function-alist-su)
18335         (tramp-completion-function-alist-putty): Set `tramp-autoload'
18336         cookie.
18338         * net/tramp-ftp.el:
18339         * net/tramp-sh.el:
18340         * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
18341         load "tramp.el" `tramp-set-completion-function'.
18343 2011-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
18345         * shell.el: Require and use pcomplete.
18346         (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
18347         (shell-completion-vars): Set pcomplete-default-completion-function.
18349 2011-06-04  Deniz Dogan  <deniz@dogan.se>
18351         * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
18352         `memq' (Bug#8799).
18354 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18356         * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
18358 2011-06-02  Juanma Barranquero  <lekktu@gmail.com>
18360         * bs.el (bs--mark-unmark, bs--nth-wrapper):
18361         * mpc.el (mpc-select-extend, mpc-songpointer-context):
18362         * vc/log-view.el (log-view-beginning-of-defun):
18363         * vc/smerge-mode.el (smerge-apply-resolution-patch)
18364         (smerge-refine-forward, smerge-refine-chopup-region):
18365         Silence warning for unused `dotimes' counter variables.
18367 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18369         * net/tramp.el (tramp-with-progress-reporter): Rename from
18370         with-progress-reporter.  Use `declare'.
18371         * net/tramp-smb.el:
18372         * net/tramp-sh.el:
18373         * net/tramp-gvfs.el: Update all uses.
18375 2011-06-02  Jay Belanger  <jay.p.belanger@gmail.com>
18377         * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
18378         buffer isn't killed before making it current.
18380 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18382         Silence various byte-compiler warnings.
18383         * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
18384         `access-type' and new obsolescence format.
18385         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
18386         new format.
18387         (byte-compile-check-variable): New `access-type' argument.
18388         Only warn if the access-type is obsolete.
18389         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
18390         (byte-compile-variable-set): Adjust callers.
18391         * help-fns.el (describe-variable): Adjust to new obsolescence format.
18392         * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
18393         setting it as obsolete.
18394         * simple.el (minibuffer-completing-symbol):
18395         * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
18396         access as obsolete.
18397         * minibuffer.el (minibuffer-completing-file-name): Don't make it
18398         obsolete yet.
18399         * international/quail.el (quail-mouse-choose-completion): Remove unused
18400         code referring to obsolete var.
18401         (quail-choose-completion-string): Remove.
18402         * server.el (server-clients-with, server-kill-buffer-query-function)
18403         (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
18404         * proced.el (proced-send-signal):
18405         * emacs-lisp/lisp.el (lisp-complete-symbol):
18406         Replace completion-annotate-function with completion-extra-properties.
18408 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18410         * simple.el (goto-line): Use read-number.
18411         (overriding-map-is-bound): Remove.
18412         (saved-overriding-map): Change default.
18413         (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
18414         Take the map as argument.
18415         (universal-argument, negative-argument, digit-argument): Use it.
18416         (restore-overriding-map): Adjust.
18417         (do-auto-fill): Use fill-forward-paragraph.
18418         (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
18420         * minibuffer.el (minibuffer-inactive-mode-map): New var.
18421         (minibuffer-inactive-mode): New major mode.
18422         * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
18423         the *Messages* buffer" hack.
18424         (mouse-popup-menubar): Don't burp if the event is a normal key.
18426         Miscellaneous tweaks.
18427         * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
18428         lexical scoping as in subr.el's dolist and dotimes.
18429         * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
18430         Silence compiler warning.
18431         * thingatpt.el (forward-whitespace): Trivial coding style fix.
18432         * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
18433         * international/ccl.el (ccl-compile): Trivial simplification.
18434         * help-fns.el (help-do-arg-highlight): Silence compiler warning.
18435         * emacs-lisp/testcover.el (testcover-end): Remove spurious
18436         `printflag' argument.
18437         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18438         Purecopy the whole obsolescence data.
18440 2011-06-01  Leo Liu  <sdl.web@gmail.com>
18442         * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
18443         improve doc-string as suggested by Marco Pessotto
18444         <melmothx@gmail.com>.
18445         (rcirc-print): Fix last change.
18447 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
18449         * minibuffer.el (complete-with-action): Return nil for the metadata and
18450         boundaries of non-functional tables.
18451         (completion-table-dynamic): Return nil for the metadata.
18452         (completion-table-with-terminator): Add default case, using
18453         complete-with-action.
18454         (completion--metadata): New function.
18455         (completion-all-sorted-completions, minibuffer-completion-help): Use it
18456         to try and avoid pathological performance problems.
18457         (completion--embedded-envvar-table): Return `category' metadata.
18459 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18461         * subr.el (process-alive-p): New tiny convenience function.
18463 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
18465         * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
18466         content but also its previous major mode.
18468 2011-05-31  Helmut Eller  <eller.helmut@gmail.com>
18470         * emacs-lisp/debug.el (debug): Restore the previous content of the
18471         *Backtrace* buffer when we exit with C-M-c.
18473 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
18475         * minibuffer.el: Add metadata method to completion tables.
18476         (completion-category-overrides): New defcustom.
18477         (completion-metadata, completion--field-metadata)
18478         (completion-metadata-get, completion--styles)
18479         (completion--cycle-threshold): New functions.
18480         (completion-try-completion, completion-all-completions):
18481         Add `metadata' argument to choose completion-styles.
18482         (completion--do-completion): Use metadata to choose cycling.
18483         (completion-all-sorted-completions): Use metadata for sorting.
18484         Remove :completion-cycle-penalty which is not needed any more.
18485         (completion--try-word-completion): Add `metadata' argument.
18486         (minibuffer-completion-help): Check metadata for annotation function
18487         and sorting.
18488         (completion-file-name-table): Return `category' metadata.
18489         (minibuffer-completing-file-name): Make obsolete.
18490         * simple.el (minibuffer-completing-symbol): Make obsolete.
18491         * icomplete.el (icomplete-completions): Pass new `metadata' param to
18492         completion-try-completion.
18494 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
18496         * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
18498 2011-05-30  Leo Liu  <sdl.web@gmail.com>
18500         * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
18501         (rcirc-print): Decode all incoming messages (bug#8744).
18502         (rcirc-decode-coding-system): Allow value nil for automatic coding
18503         system detection.
18505 2011-06-01  Glenn Morris  <rgm@gnu.org>
18507         * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
18509 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
18511         * image.el (image-animate-max-time): Allow nil and t values.
18512         Default to nil.
18513         (create-animated-image): Doc fix.
18514         (image-animate-start): Remove second arg; just use
18515         image-animate-max-time.
18516         (image-animate-timeout): Doc fix.  Args changed.
18518         * image-mode.el (image-toggle-display-image): Ensure that the
18519         image spec passed to the animate timer is the same object as in
18520         the buffer's display property (Bug#6981).
18521         (image-transform-properties): Doc fix.
18523         * image.el (image-animate-max-time): Default to nil.
18525 2011-05-29  Martin Rudalics  <rudalics@gmx.at>
18527         * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
18528         entire buffer list (Bug#8184).
18530 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
18532         * image.el (imagemagick-types-inhibit)
18533         (imagemagick-register-types): Doc fix.
18535 2011-05-29  Deniz Dogan  <deniz@dogan.se>
18537         * net/rcirc.el (rcirc): Use the user's stored encryption method by
18538         default.
18540 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
18542         * select.el: Don't perform clipboard-manager saving in hooks;
18543         leave the hooks empty.
18545 2011-05-28  Leo Liu  <sdl.web@gmail.com>
18547         * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
18548         (occur-mode-map): Bind occur-edit-mode.  Use occur-menu-map.
18549         (occur-edit-mode): New major mode (Bug#8463).
18550         (occur-after-change-function): New function.
18551         (occur-engine): Give Occur tags a read-only property.
18553 2011-05-28  Kevin Ryde  <user42@zip.com.au>
18555         * subr.el (def-edebug-spec): Doc fix (Bug#8430).
18557 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
18559         * bindings.el (help-echo): Make the initial non-indicator dash
18560         empty on graphical terminals (Bug#7295).
18562         * files.el (auto-mode-alist): Move config rule after the
18563         in-stripping one (Bug#8547).
18565         * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
18567         * startup.el (normal-splash-screen): Remove gratuitous mode-line
18568         setting (Bug#8740).
18570 2011-05-28  Alp Aker  <aker@pitt.edu>  (tiny change)
18572         * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
18573         (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
18574         (Bug#8539).
18576 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
18578         * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
18580 2011-05-28  Dima Kogan  <dkogan@cds.caltech.edu>  (tiny change)
18582         * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
18583         (hs-hide-block-at-point, hs-find-block-beginning)
18584         (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
18585         (Bug#8279).
18587 2011-05-28  Glenn Morris  <rgm@gnu.org>
18589         * startup.el (fancy-about-screen): Use standard mode line.  (Bug#8740)
18591 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
18593         * help-fns.el (describe-function-1): If the function is a derived
18594         major mode, print the parent mode.
18596         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
18597         (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
18599 2011-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
18601         * minibuffer.el (completion--capf-wrapper): Check applicability before
18602         returning non-nil for non-exclusive completion data.
18603         * progmodes/etags.el (tags-completion-at-point-function):
18604         * info-look.el (info-lookup-completions-at-point): Mark as
18605         non-exclusive.
18606         (info-complete): Adjust accordingly.
18608         * info-look.el: Convert to lexical-binding and completion-at-point.
18609         (info-lookup-completions-at-point): New function.
18610         (info-complete): Use it and completion-in-region.
18612 2011-05-28  Drew Adams  <drew.adams@oracle.com>
18614         * isearch.el: Let M-e start with point at the first mismatched char.
18615         (isearch-fail-pos): New function.
18616         (isearch-edit-string): Use it.
18618 2011-05-28  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
18620         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18622 2011-05-27  Toby Cubitt  <toby-predictive@dr-qubit.org>
18624         * emacs-lisp/avl-tree.el: New avl-tree-stack datatype.  Add new
18625         traversal functions for avl-trees.
18626         (avl-tree--stack): New struct.
18627         (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18628         (avl-tree-enter): Add optional `updatefun' arg.
18629         (avl-tree--do-enter): Add optional `updatefun' arg.
18630         Change return value.
18631         (avl-tree-delete): Add optional `test' and `nilflag' args.
18632         (avl-tree--do-delete): Add `test' and `nilflag' args.
18633         Change return value.
18634         (avl-tree-member): Add optional `nilflag'
18635         (avl-tree-member-p): New function.
18636         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18637         (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18638         (avl-tree-stack-empty-p): New functions.
18640         * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18641         avl-tree--del-balance1 and make it work both ways.
18642         (avl-tree--del-balance2): Remove.
18643         (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18644         make it work both ways.
18645         (avl-tree--enter-balance2): Remove.
18646         (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18647         New macros.
18648         (avl-tree--mapc, avl-tree-map): Add direction argument.
18650 2011-05-27  David Michael  <fedora.dm0@gmail.com>  (tiny change)
18652         * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18654 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
18656         * select.el: Support clipboard managers with built-in function
18657         x-clipboard-manager-save, via delete-frame-functions and
18658         kill-emacs-hook.
18659         (xselect-convert-to-targets): Add MULTIPLE target to list.
18660         (xselect-convert-to-save-targets): New function.
18662 2011-05-27  Kenichi Handa  <handa@m17n.org>
18664         * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18665         let-binding rfc2047-encode-encoded-words to nil.
18667 2011-05-27  Glenn Morris  <rgm@gnu.org>
18669         * mail/emacsbug.el: Don't require url-util.
18671         * shell.el (shell-directory-tracker): Case matters.  (Bug#8735)
18673         * files.el (set-auto-mode):
18674         Also respect mode: entries at the end of the file.  (Bug#8586)
18676 2011-05-26  Glenn Morris  <rgm@gnu.org>
18678         * files.el (hack-local-variables-prop-line, hack-local-variables):
18679         Downcase mode names, as seems to be traditional.
18680         (hack-local-variables, hack-local-variables-apply): Doc fixes.
18682         * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18683         (report-emacs-bug-hook): Try to validate the From address.  (Bug#8038)
18685 2011-05-25  Julien Danjou  <julien@danjou.info>
18687         * textmodes/rst.el (rst-define-level-faces): Do not define face
18688         symbol if it is already defined.
18690 2011-05-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
18692         * play/5x5.el (5x5-new-game, 5x5-randomize):
18693         Reset 5x5-solver-output to nil when a new grid is cast.
18694         (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18695         these debugging traces, as defmacro breaks the compiled code.
18697 2011-05-24  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
18699         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18701 2011-05-24  Leo Liu  <sdl.web@gmail.com>
18703         * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18704         (vc-bzr-sha1): Adapt.
18706         * sha1.el: Remove.  Function `sha1' is now builtin.
18708         * bindings.el: Provide sha1 feature.
18710 2011-05-24  Kenichi Handa  <handa@m17n.org>
18712         * mail/sendmail.el: Require `rfc2047'.
18713         (mail-insert-from-field): Do not perform RFC2047 encoding.
18714         (mail-encode-header): New function.
18715         (sendmail-send-it): Set buffer-file-coding-system of the work
18716         buffer to the return value of select-message-coding-system.
18717         Call mail-encode-header.
18719         * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18721 2011-05-24  Sean Neakums  <sneakums@zork.net>  (tiny change)
18723         * mail/supercite.el (sc-default-cite-frame):
18724         Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
18726 2011-05-24  Glenn Morris  <rgm@gnu.org>
18728         * progmodes/python.el (brm-menu): Declare.
18730         * emulation/viper.el (viper-set-hooks): Declare.
18732         * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18733         (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18734         (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18735         (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18736         (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18737         (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18739 2011-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
18741         Add an :exit-function for completion-at-point.
18743         * minibuffer.el (completion--done): New fun.
18744         (completion--do-completion): Use it.  New arg `expect-exact'.
18745         (minibuffer-complete, minibuffer-complete-word): Don't output message,
18746         since completion--do-completion does it for us now.
18747         (minibuffer-force-complete): Use completion--done and
18748         completion--replace.  Handle sole-completion case with more care.
18749         (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18750         (completion-extra-properties): New var.
18751         (completion-annotate-function): Make obsolete.
18752         (minibuffer-completion-help): Adjust accordingly.
18753         Use completion-list-insert-choice-function.
18754         (completion-at-point, completion-help-at-point):
18755         Bind completion-extra-properties.
18756         (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18757         * simple.el (completion-list-insert-choice-function): New var.
18758         (completion-setup-function): Preserve it.
18759         (choose-completion): Pay attention to it, shuffle the code a bit.
18760         (choose-completion-string): New arg `insert-function'.
18762         * textmodes/bibtex.el: Convert to lexical binding.
18763         (bibtex-mode-map): Use completion-at-point.
18764         (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
18765         (bibtex-completion-at-point-function): New fun, from bibtex-complete.
18766         (bibtex-complete): Define as obsolete alias.
18767         (bibtex-complete-internal): Remove.
18768         (bibtex-format-entry): Remove unused sub-group in regexp.
18769         * shell.el (shell--command-completion-data)
18770         (shell-environment-variable-completion):
18771         * pcomplete.el (pcomplete-completions-at-point):
18772         * comint.el (comint--complete-file-name-data): Use :exit-function
18773         instead of completion-table-with-terminator so it also works for
18774         choose-completion.
18776 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
18778         * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
18780         * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
18781         (bug#8710).
18783         * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
18785 2011-05-23  Ken Manheimer  <ken.manheimer@gmail.com>
18787         * allout.el (allout-inhibit-auto-fill-on-headline): Create new
18788         customization variable and implement: If non-nil, auto-fill will
18789         be inhibited while on topic's header line.
18791 2011-05-23  Vincent Belaïche  <vincentb1@users.sourceforge.net>
18793         * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
18794         click on.  II/ Make 5x5 multisession.  III/ Ensure that random grids
18795         always have a solution in grid size = 5 cases.
18796         (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
18797         (5x5-solver-output, 5x5-log-buffer): New vars.
18798         (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
18799         Make these variables buffer local to achieve 5x5 multi-session-ness.
18800         (5x5): Set 5x5-grid-size only if SIZE is non-negative.
18801         (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
18802         (5x5-solve-suggest): New funs.
18803         (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
18804         randomize a grid so that we ensure that there is always a solution.
18805         (5x5-make-random-grid): Allow other movement than flipping.
18807 2011-05-23  Kevin Ryde  <user42@zip.com.au>
18809         * emacs-lisp/advice.el (ad-read-advised-function):
18810         Use `function-called-at-point' as the default, if it has
18811         advice and passes PREDICATE.
18813 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
18815         * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
18816         byte-compile-lambda if it's actually a lambda.
18818         * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
18819         Fix function quoting.  Use backquote better.
18821 2011-05-22  Yuanle Song  <sylecn@gmail.com>
18823         * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
18824         matching (Bug#8516).
18826 2011-05-22  Jari Aalto  <jari.aalto@cante.net>
18828         * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
18829         different face (Bug#8178).
18831 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
18833         * vc/diff-mode.el (diff-changed): Don't use terminal specs for
18834         defface (Bug#8144).
18836 2011-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
18838         * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
18839         funcall as well (bug#8712).  Warn when performing those conversions.
18840         * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
18842         * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
18844 2011-05-22  Glenn Morris  <rgm@gnu.org>
18846         * files.el (hack-local-variables-prop-line): Small simplifications.
18847         (hack-local-variables, hack-local-variables-prop-line):
18848         If MODE-ONLY, return the mode, rather than just `t'.
18850 2011-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
18852         * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
18854 2011-05-21  Glenn Morris  <rgm@gnu.org>
18856         * files.el (hack-local-variables-prop-line, hack-local-variables):
18857         If only interested in the mode, don't bother doing the other stuff.
18859         * image-mode.el (image-after-revert-hook):
18860         Redraw all frames on which the image is visible.  (Bug#8567)
18862         * dired-aux.el (dired-touch-initial): Just use current-time.  (Bug#6887)
18864         * wid-edit.el (widget-checklist-match-inline):
18865         Fix 2011-04-19 change.  (Bug#8649)
18867 2011-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
18869         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
18870         Also allow singlespace after single-letter capitals followed by a dot.
18872         * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
18873         enabled.  Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
18875 2011-05-20  Nix  <nix@esperi.org.uk>
18877         * files.el (basic-save-buffer-2):
18878         Fix handling of break-hardlink-on-save with non-existent files.
18880 2011-05-19  Deniz Dogan  <deniz@dogan.se>
18882         * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
18883         (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
18885 2011-05-19  Glenn Morris  <rgm@gnu.org>
18887         * progmodes/f90.el (f90-type-def-re):
18888         Handle "type, bind(c)".  (Bug#8691)
18890         * emacs-lisp/autoload.el (batch-update-autoloads):
18891         Set autoload-excludes by parsing loadup.el rather than Makefiles.
18893 2011-05-18  Michael Albinus  <michael.albinus@gmx.de>
18895         * net/tramp.el (tramp-process-actions): Set "first-password-request"
18896         property for the correct connection in case of multihops.
18898 2011-05-18  Glenn Morris  <rgm@gnu.org>
18900         * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
18901         * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
18903         Rationalize calendar handling of day and month abbrev-arrays.
18904         * calendar/calendar.el (calendar-customized-p): New function.
18905         (calendar-abbrev-construct, calendar-make-alist): Change what it does.
18906         (calendar-day-name-array, calendar-month-name-array): Doc fix.
18907         Add :set function.
18908         (calendar-abbrev-length, calendar-day-abbrev-array)
18909         (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
18910         (calendar-day-abbrev-array, calendar-month-abbrev-array):
18911         Elements may no longer be nil.
18912         (calendar-day-name, calendar-month-name):
18913         Update for changed nature of abbrev arrays.
18914         * calendar/diary-lib.el (diary-name-pattern):
18915         Update for changed nature of abbrev arrays.
18916         (diary-mark-entries-1): Update calendar-make-alist calls.
18917         (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
18918         * calendar/cal-html.el (cal-html-day-abbrev-array):
18919         Simply inherit from calendar-day-abbrev-array.
18921 2011-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
18923         * progmodes/grep.el (grep-mode): Disable default
18924         compilation-directory-matcher setting (bug#8684).
18926 2011-05-17  Michael Albinus  <michael.albinus@gmx.de>
18928         * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
18929         instead of "head" and "tail".  There were problems with SunOS 5.9,
18930         and it performs better.
18932 2011-05-17  Glenn Morris  <rgm@gnu.org>
18934         * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
18936         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
18937         Replace obsolete function.
18939         * shell.el (pcomplete-parse-arguments-function): Declare.
18941         * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
18942         (appt-display-diary, appt-display-interval, appt-prev-comp-time)
18943         (appt-check): Doc fixes.
18944         (appt-disp-window-function, appt-delete-window-function):
18945         Remove needless special case in custom :type.
18946         (appt-display-count): Default to 0, not nil.
18947         (appt-check): Reset appt-display-count to 0, not nil.
18949 2011-05-17  Juanma Barranquero  <lekktu@gmail.com>
18951         * progmodes/python.el (python-font-lock-keywords):
18952         Add the Python 3.X keyword "nonlocal" (bug#8639).
18954 2011-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
18956         * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
18958 2011-05-16  Kevin Ryde  <user42@zip.com.au>
18960         * info-look.el (makefile-automake-mode): New setups, looking in
18961         automake manual, then makefile-mode.
18962         (makefile-mode): Remove automake manual, have it just in
18963         makefile-automake-mode since there's various things different or
18964         not relevant to plain make.
18965         (makefile-mode): Remove "other-modes" non-existent automake-mode,
18966         believe a hypothetical automake-mode would go to makefile-mode,
18967         not the other way around.
18969 2011-05-15  Chong Yidong  <cyd@stupidchicken.com>
18971         * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
18972         hunk-end tags (Bug#8672).
18974         * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
18975         vc-annotate-show-diff-revision-at-line (Bug#8671).
18977 2011-05-14  Glenn Morris  <rgm@gnu.org>
18979         * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
18980         in the middle of an existing one with multiple authors.  (Bug#8645)
18981         (change-log-font-lock-keywords): Also handle multiple author lines
18982         with leading tabs.  (Bug#8644)
18984         * calendar/appt.el (appt-check): Rename some local variables.
18985         Some simplification/reordering.
18987         * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
18988         (feedmail-sendmail-f-doesnt-sell-me-out)
18989         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
18990         (feedmail-debug-sit-for, feedmail-queue-express-hook)
18991         (feedmail-queue-runner-message-sender): Set :version.
18992         (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
18993         (bbdb-dwim-net-address, vm-mail): Declare.
18994         (feedmail-binmail-gnulinuxish-template):
18995         Rename from feedmail-binmail-linuxish-template.
18996         (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
18997         Use insert-buffer-substring.
18999 2011-05-14  Bill Carpenter  <bill@carpenter.org>
19001         * mail/feedmail.el (feedmail-patch-level): Increase.
19002         (feedmail-debug): New custom group.
19003         (feedmail-confirm-outgoing-timeout)
19004         (feedmail-sendmail-f-doesnt-sell-me-out)
19005         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19006         (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
19007         (feedmail-sender-line, feedmail-from-line)
19008         (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
19009         (feedmail-spray-this-address)
19010         (feedmail-spray-address-fiddle-plex-list)
19011         (feedmail-queue-use-send-time-for-date)
19012         (feedmail-queue-use-send-time-for-message-id)
19013         (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
19014         (feedmail-buffer-eating-function):
19015         Doc fixes.
19016         (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
19017         (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
19018         (feedmail-message-action-scroll-down): New functions.
19019         (feedmail-queue-directory, feedmail-queue-draft-directory):
19020         Use expand-file-name.
19021         (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
19022         Remove C-v help entry.
19023         (feedmail-queue-buffer-file-name): New variable.
19024         (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
19025         (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
19026         (feedmail-message-action-send-strong, feedmail-message-action-edit)
19027         (feedmail-message-action-draft, feedmail-message-action-draft-strong)
19028         (feedmail-message-action-queue, feedmail-message-action-queue-strong)
19029         (feedmail-message-action-toggle-spray)
19030         (feedmail-run-the-queue-no-prompts)
19031         (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
19032         (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
19033         (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
19034         (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
19035         (feedmail-envelope-deducer, feedmail-fiddle-from)
19036         (feedmail-fiddle-sender, feedmail-default-date-generator)
19037         (feedmail-fiddle-date, feedmail-fiddle-message-id)
19038         (feedmail-fiddle-spray-address)
19039         (feedmail-fiddle-list-of-spray-fiddle-plexes)
19040         (feedmail-fiddle-list-of-fiddle-plexes)
19041         (feedmail-fill-to-cc-function, feedmail-fill-this-one)
19042         (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
19043         (feedmail-queue-runner-message-sender, feedmail-binmail-template):
19044         Change default.  Doc fix.
19045         (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
19046         (feedmail-binmail-linuxish-template): New constant.
19047         (feedmail-buffer-to-sendmail): Doc fix.  Add debug call.
19048         Respect feedmail-sendmail-f-doesnt-sell-me-out.
19049         (feedmail-send-it): Add debug call.
19050         Use feedmail-queue-buffer-file-name, and
19051         feedmail-send-it-immediately-wrapper.
19052         (feedmail-message-action-send): Add debug call.
19053         Use feedmail-send-it-immediately-wrapper.
19054         (feedmail-queue-express-to-queue): Add debug call.
19055         Run feedmail-queue-express-hook.
19056         (feedmail-message-action-help): Add debug call.  Use feedmail-p-h-b-n.
19057         (feedmail-message-action-help-blat):
19058         Rename from feedmail-queue-send-edit-prompt-help-first.
19059         (feedmail-run-the-queue): Add debug call.  Set buffer-file-type.
19060         Check line-endings.  Handle errors better.
19061         (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
19062         Doc fix.  Add debug call.
19063         (feedmail-queue-send-edit-prompt): Doc fix.  Add debug call.
19064         Use feedmail-queue-send-edit-prompt-inner.
19065         (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
19066         (feedmail-queue-send-edit-prompt-inner): New function, extracted
19067         from feedmail-queue-send-edit-prompt.
19068         (feedmail-queue-send-edit-prompt-help)
19069         (feedmail-queue-send-edit-prompt-help-later): Remove functions.
19070         (feedmail-tidy-up-slug): Add debug call.
19071         Respect feedmail-queue-slug-suspect-regexp.
19072         (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
19073         (feedmail-dump-message-to-queue): Add debug call.
19074         Expand queue-directory.
19075         (feedmail-dump-message-to-queue): Change message slightly.
19076         Use feedmail-say-chatter.
19077         (feedmail-rfc822-date): Add debug call.  Bind system-time-locale.
19078         (feedmail-send-it-immediately-wrapper): New function.
19079         (feedmail-send-it-immediately): Add debug calls.  Use let not let*.
19080         Insert empty string rather than newline.  Handle full-frame case.
19081         Use catch/throw.  Use feedmail-say-chatter.
19082         (feedmail-fiddle-from): Try mail-host-address.
19083         (feedmail-default-message-id-generator): Doc fix.
19084         Bind system-time-locale.  Handle missing end.
19085         (feedmail-fiddle-x-mailer): Add debug call.
19086         Handle feedmail-x-mailer-line being nil.
19087         (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
19088         Add debug call.  Use buffer-substring-no-properties.
19089         (feedmail-say-debug, feedmail-say-chatter): New functions.
19090         (feedmail-find-eoh): Give an explicit error.
19092 2011-05-13  Ulf Jasper  <ulf.jasper@web.de>
19094         * net/newst-treeview.el (newsticker-treeview-face): Change default
19095         family from helvetica to sans.
19096         (newsticker-treeview-tool-bar-map): Move tool-bar icons to
19097         etc/images/newsticker.
19099         * net/newst-reader.el (newsticker-feed-face): Change default
19100         family from helvetica to sans.
19102         * net/newst-plainview.el (newsticker-new-item-face)
19103         (newsticker-old-item-face, newsticker-immortal-item-face)
19104         (newsticker-obsolete-item-face, newsticker-date-face)
19105         (newsticker-statistics-face): Change default family from
19106         helvetica to sans.
19107         (newsticker--plainview-tool-bar-map): Move tool-bar icons to
19108         etc/images/newsticker.
19110         * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
19111         (newsticker--process-auto-mark-filter-match): Tell user about
19112         auto-marking.
19114 2011-05-13  Didier Verna  <didier@xemacs.org>
19116         Common Lisp indentation improvements on defmethod and lambda-lists.
19117         * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
19118         TODO entries.
19119         (lisp-lambda-list-keyword-parameter-indentation)
19120         (lisp-lambda-list-keyword-parameter-alignment)
19121         (lisp-lambda-list-keyword-alignment): New customizable user options.
19122         (lisp-indent-defun-method): Improve docstring.
19123         (extended-loop-p): Fix comment.
19124         (lisp-indent-lambda-list-keywords-regexp): New variable.
19125         (lisp-indent-lambda-list): New function.
19126         (lisp-indent-259): Use it.
19127         (lisp-indent-defmethod): Support for more than one
19128         method qualifier and properly indent methods lambda-lists.
19129         (defgeneric): Provide a missing common-lisp-indent-function property.
19131 2011-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
19133         * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
19134         bounds for the empty string (bug#8667).
19136 2011-05-13  Glenn Morris  <rgm@gnu.org>
19138         * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
19140         * mail/sendmail.el (sendmail-program): Try executable-find first.
19141         (sendmail-send-it): `sendmail-program' cannot be unbound.
19143         * calendar/appt.el (appt-make-list): Simplify.
19144         (appt-time-msg-list): Doc fix.
19145         (appt-check): Change mode-line message at the time of the appointment.
19147 2011-05-12  Andreas Schwab  <schwab@linux-m68k.org>
19149         * progmodes/ld-script.el (ld-script-keywords)
19150         (ld-script-builtins): Update keywords list.
19152 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19154         * progmodes/grep.el (grep-filter): Don't trip on partial lines.
19156         * shell.el (shell-completion-vars): New function.
19157         (shell-mode):
19158         * simple.el (read-shell-command): Use it.
19159         (blink-matching-open): No need for " [...]" in minibuffer-message.
19161 2011-05-12  Glenn Morris  <rgm@gnu.org>
19163         * calendar/appt.el (appt-now-displayed): Remove pointless variable.
19164         (appt-check): Simplify.
19166 2011-05-12  Eli Zaretskii  <eliz@gnu.org>
19168         * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
19169         literal "/dev/null".
19171 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19173         * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
19174         Fix typo.
19176 2011-05-12  Ralph Schleicher  <rs@ralph-schleicher.de>
19178         * progmodes/which-func.el (which-function):
19179         Use add-log-current-defun instead of add-log-current-defun-function,
19180         which might not be defined (Bug#8260).
19182 2011-05-12  Glenn Morris  <rgm@gnu.org>
19184         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
19185         Let byte-compile-initial-macro-environment always take precedence.
19187 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19189         * net/rcirc.el: Add support for SSL/TLS connections.
19190         (rcirc-server-alist): New field `encryption'.
19191         (rcirc): Check `encryption' settings.
19192         (rcirc-connect): New arg `encryption'.  Use open-network-stream.
19193         Merge make-local-variable into `set'.
19194         (rcirc--connection-open-p): New function.
19195         (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
19196         the process is not a network process (e.g. running gnutls-cli).
19197         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
19198         Make rcirc-(en|de)code-coding-system local here.
19199         (rcirc-mode): Merge make-local-variable into `set'.
19200         (rcirc-parent-buffer): Make permanent buffer-local.
19201         (rcirc-multiline-minor-mode): Don't do it here.
19202         (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
19203         there's no server buffer.
19205 2011-05-11  Glenn Morris  <rgm@gnu.org>
19207         * newcomment.el (comment-kill): Prefix "unused" local.
19209         * term/w32console.el (get-screen-color): Declare.
19211         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
19212         Handle symbol elements of byte-compile-initial-macro-environment.
19214 2011-05-10  Leo Liu  <sdl.web@gmail.com>
19216         * bookmark.el (bookmark-bmenu-mode-map):
19217         Bind bookmark-bmenu-search to `/'.
19219         * mail/footnote.el: Convert to utf-8 encoding.
19220         (footnote-unicode-string, footnote-unicode-regexp): New variable.
19221         (Footnote-unicode): New function.
19222         (footnote-style-alist): Add unicode style to the list.
19223         (footnote-style): Doc fix.
19225 2011-05-10  Jim Meyering  <meyering@redhat.com>
19227         Fix doubled-word typos.
19228         * international/quail.el (quail-insert-kbd-layout): and and -> and
19229         * kermit.el: and and -> and
19230         * net/ldap.el (ldap-search-internal): to to -> to
19231         * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
19232         * progmodes/js.el (js-mode): and and -> and
19233         * textmodes/artist.el (artist-move-to-xy): at at -> at
19234         (artist-draw-region-trim-line-endings): if if -> if
19235         And Safetyc -> Safety.
19236         * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
19238 2011-05-10  Glenn Morris  <rgm@gnu.org>
19239             Stefan Monnier  <monnier@iro.umontreal.ca>
19241         * files.el (hack-one-local-variable-eval-safep):
19242         Consider "eval: (foo-mode)" to be safe.  (Bug#8613)
19244 2011-05-10  Glenn Morris  <rgm@gnu.org>
19246         * calendar/diary-lib.el (diary-list-entries-hook)
19247         (diary-mark-entries-hook, diary-nongregorian-listing-hook)
19248         (diary-nongregorian-marking-hook, diary-list-entries)
19249         (diary-include-other-diary-files, diary-mark-entries)
19250         (diary-mark-included-diary-files): Doc fixes.
19252 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
19254         * misc.el: Require tabulated-list.el during compilation.
19256 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
19258         * progmodes/compile.el (compilation-start):
19259         Run compilation-filter-hook for the async case too.
19260         (compilation-filter-hook): Doc fix.
19262 2011-05-09  Deniz Dogan  <deniz@dogan.se>
19264         * wdired.el: Remove outdated installation comment.  Fix usage
19265         comment.
19267 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
19269         * misc.el: Implement new command `list-dynamic-libraries'.
19270         (list-dynamic-libraries--loaded-only-p): New variable.
19271         (list-dynamic-libraries--refresh): New function.
19272         (list-dynamic-libraries): New command.
19274 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
19276         * progmodes/compile.el (compilation-error-regexp-alist-alist):
19277         Fix the ant regexp to handle end-line and end-column info from jikes.
19278         Re-introduce maven regexp.  Give the ruby-Test::Unit regexp a
19279         higher priority to avoid clobbering by gnu.
19281 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
19283         * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
19284         if the face has existing theme settings (Bug#8454).
19286 2011-05-08  Ralph Schleicher  <rs@ralph-schleicher.de>
19288         * progmodes/perl-mode.el (perl-imenu-generic-expression):
19289         Only match variables declared via `my' or `our' (Bug#8261).
19291         * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
19292         special file names `.' and `..' (Bug#8259).
19294 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
19296         * progmodes/grep.el (grep-mode-font-lock-keywords):
19297         Remove buffer-changing entries.
19298         (grep-filter): New function.
19299         (grep-mode): Add it to compilation-filter-hook.
19301         * progmodes/compile.el (compilation-filter-hook)
19302         (compilation-filter-start): New defvars.
19303         (compilation-filter): Call compilation-filter-hook prior to
19304         updating the process mark.
19306 2011-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
19308         * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
19310 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
19312         * mail/sendmail.el (send-mail-function): On MS-Windows, default to
19313         mailclient-send-it even if window-system is nil.  (Bug#8595)
19315         * term/w32console.el (terminal-init-w32console):
19316         Call get-screen-color and use its output to set the frame
19317         background-mode.  (Bug#8597)
19319 2011-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19321         Make bytecomp.el understand that defmethod defines funs (bug#8631).
19322         * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
19323         New functions.
19324         (defgeneric, eieio--defmethod): Use them.
19325         (eieio-defgeneric): Remove.
19326         (defmethod): Call defgeneric in a way visible to the byte-compiler.
19328 2011-05-07  Glenn Morris  <rgm@gnu.org>
19330         * calendar/timeclock.el (timeclock-log-data): Remove unused local.
19331         Use let rather than let*.
19332         (timeclock-find-discrep): Remove unused local.
19334         * calendar/diary-lib.el (diary-comment-start): Doc fix.
19336         * calendar/appt.el (appt-time-msg-list): Doc fix.
19338 2011-05-06  Noah Friedman  <friedman@splode.com>
19340         * apropos.el (apropos-print-doc): Only use
19341         emacs-lisp-docstring-fill-column when it is bound to an integer,
19342         per that variable's documentation.
19344 2011-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
19346         * lpr.el (print-region-1): Echo lpr-program's output, so error messages
19347         and warnings are not silently discarded (e.g. use -d instead of -P).
19349 2011-05-06  Glenn Morris  <rgm@gnu.org>
19351         * calendar/appt.el (appt-message-warning-time): Doc fix.
19352         (appt-warning-time-regexp): New option.
19353         (appt-make-list): Respect appt-message-warning-time.
19355         * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
19356         New options.
19357         (diary-add-to-list): Strip comments from the displayed string.
19358         (diary-mode): Set comment-start and comment-end.
19360         * vc/diff-mode.el (smerge-refine-subst): Declare.
19361         (diff-refine-hunk): Don't require smerge-mode when compiling.
19363 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
19365         * simple.el (list-processes): Return nil as the docstring says.
19367 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
19369         * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
19370         to "".
19371         (ange-ftp-write-region, ange-ftp-insert-file-contents)
19372         (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
19373         determining of binary transfer.  (Bug#7383)
19375 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
19377         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19378         Fix port computation bug.  (Bug#8618)
19380 2011-05-05  Glenn Morris  <rgm@gnu.org>
19382         * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
19384         * simple.el (shell-dynamic-complete-functions)
19385         (comint-dynamic-complete-functions): Declare.
19387         * net/network-stream.el (gnutls-negotiate):
19388         * simple.el (tabulated-list-print): Fix declarations.
19390         * progmodes/gud.el (syntax-symbol, syntax-point):
19391         Remove unnecessary and incorrect declarations.
19393         * emacs-lisp/check-declare.el (check-declare-scan):
19394         Handle byte-compile-initial-macro-environment in bytecomp.el.
19396 2011-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
19398         Fix earlier half-done eieio-defmethod change (bug#8338).
19399         * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
19400         Streamline and change calling convention.
19401         (defmethod): Adjust accordingly and simplify.
19402         (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
19403         new eieio--defmethod.
19404         (slot-boundp): Minor CSE simplification.
19406 2011-05-05  Milan Zamazal  <pdm@zamazal.org>
19408         * progmodes/glasses.el (glasses-separate-capital-groups): New option.
19409         (glasses-make-readable): Use glasses-separate-capital-groups.
19411 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
19413         * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
19414         (warning-series): Doc fix.
19415         (display-warning): Don't try to create the buffer if we just found it.
19417 2011-05-04  Chong Yidong  <cyd@stupidchicken.com>
19419         * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
19420         (autoload-find-generated-file): New function.
19421         (generate-file-autoloads): Bind generated-autoload-file to
19422         buffer-file-name.
19423         (update-file-autoloads, update-directory-autoloads):
19424         Use autoload-find-generated-file.  If called interactively, prompt for
19425         output file (Bug#7989).
19426         (batch-update-autoloads): Doc fix.
19428 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
19430         * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
19432 2011-05-04  Glenn Morris  <rgm@gnu.org>
19434         * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
19435         function, so it follows changes in calendar-date-style.
19436         (diary-fancy-date-matcher): New function.
19437         (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
19438         (diary-fancy-font-lock-fontify-region-function):
19439         Use diary-fancy-date-pattern as a function.
19441         * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
19442         non-numbers for `year' etc pseudo-variables.  (Bug#8583)
19444 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
19446         * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
19447         instead of positional arguments.  Allow :keylist and :crlfiles
19448         arguments.
19449         (open-gnutls-stream): Call it.
19451         * net/network-stream.el (network-stream-open-starttls): Adjust to
19452         call `gnutls-negotiate' with :process and :hostname arguments.
19454 2011-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
19456         * minibuffer.el (completion--message): New function.
19457         (completion--do-completion, minibuffer-complete)
19458         (minibuffer-force-complete, minibuffer-complete-word): Use it.
19459         (completion--do-completion): Don't ignore completion-auto-help when in
19460         icomplete-mode.
19462         * whitespace.el (whitespace-trailing-regexp): Don't rely on the
19463         internal encoding (e.g. tibetan zero is not whitespace).
19464         (global-whitespace-mode): Prefer save-current-buffer.
19465         (whitespace-trailing-regexp): Remove useless save-match-data.
19466         (whitespace-empty-at-bob-regexp): Minor simplification.
19468 2011-05-03  Chong Yidong  <cyd@stupidchicken.com>
19470         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
19472 2011-05-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
19474         * textmodes/ispell.el (ispell-add-per-file-word-list):
19475         Use `concat' to create string for insertion.
19477 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19479         * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
19480         Avoid open-line which runs post-self-insert-hook.
19481         (bibtex-fill-entry): Remove unused `end' var.
19483 2011-05-03  Dirk Ullrich  <dirk.ullrich@googlemail.com>  (tiny change)
19485         * textmodes/ispell.el (ispell-add-per-file-word-list):
19486         Protect against `nil' value of `comment-start' (Bug#8579).
19488 2011-05-03  Leo Liu  <sdl.web@gmail.com>
19490         * isearch.el (isearch-yank-pop): New command.
19491         (isearch-mode-map): Bind it to `M-y'.
19492         (isearch-forward): Mention it.
19494 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19496         * simple.el (minibuffer-complete-shell-command): Remove.
19497         (minibuffer-local-shell-command-map): Use completion-at-point.
19498         (read-shell-command): Setup completion vars here instead.
19499         (read-expression-map): Bind TAB to symbol completion.
19501         * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
19502         error directly rather via storing it into `results'.
19504 2011-05-02  Leo Liu  <sdl.web@gmail.com>
19506         * vc/diff.el: Fix description.
19508 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19510         * server.el (server-eval-at): New function.
19512 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19514         * net/network-stream.el (open-network-stream): Take a :nowait
19515         parameter and pass it on to `make-network-process'.
19516         (network-stream-open-plain): Ditto.
19518 2011-04-30  Andreas Schwab  <schwab@linux-m68k.org>
19520         * faces.el (face-spec-set-match-display): Don't match toolkit
19521         options on terminal frames.
19523 2011-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
19525         * progmodes/pascal.el: Use lexical binding.
19526         (pascal-mode-map): Remove author preferences.
19528         * pcomplete.el (pcomplete-std-complete): Don't abuse
19529         completion-at-point.
19531 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
19533         * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
19534         removing code that has been dead since 1991 or so.
19536         * startup.el (command-line): When warning about "_emacs", use a
19537         delayed warning to allow the user to filter it out.
19539 2011-04-28  Deniz Dogan  <deniz@dogan.se>
19541         * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
19542         user has not joined.
19544 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
19546         * pcomplete.el (pcomplete-completions-at-point): Return nil if there
19547         aren't any completions at point.
19549 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
19551         * subr.el (display-delayed-warnings): New function.
19552         (delayed-warnings-hook): New variable.
19554 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
19556         * minibuffer.el (completion-at-point, completion-help-at-point):
19557         Don't presume that a given completion-at-point-function will always
19558         use the same calling convention.
19560         * pcomplete.el (pcomplete-completions-at-point):
19561         Obey pcomplete-ignore-case.  Don't call pcomplete-norm-func unless
19562         pcomplete-seen is non-nil.
19563         (pcomplete-comint-setup): Also recognize the new comint/shell
19564         completion functions.
19565         (pcomplete-do-complete): Don't call pcomplete-norm-func unless
19566         pcomplete-seen is non-nil.
19568 2011-04-27  Niels Giesen  <niels.giesen@gmail.com>
19570         * calendar/icalendar.el (diary-lib): Add require statement.
19571         (icalendar--create-uid): Read out a uid from a text-property on
19572         the first character in the entry.  This allows for code to add its
19573         own uid to the entry.
19574         (icalendar--convert-float-to-ical): Add export of
19575         `diary-float'-entries save for those with the optional DAY
19576         argument.
19578 2011-04-27  Daniel Colascione  <dan.colascione@gmail.com>
19580         * subr.el (shell-quote-argument): Use alternate escaping strategy
19581         when we spot a variable reference in a string.
19583 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
19585         * cus-start.el (all): Define customization for debug-on-event.
19587 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
19589         * subr.el (shell-quote-argument): Escape correctly under Windows.
19591 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
19593         * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
19595 2011-04-25  Michael Albinus  <michael.albinus@gmx.de>
19597         * net/tramp.el (tramp-process-actions): Add POS argument.
19598         Delete region between POS and (pos).
19600         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19601         Use `nil' position in `tramp-process-actions' call.
19602         (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
19604         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
19605         position in `tramp-process-actions' call.
19607         * net/trampver.el: Update release number.
19609 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
19611         * custom.el (defcustom): Obey lexical-binding.
19613         Fix octave-inf completion problems reported by Alexander Klimov.
19614         * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
19615         Inherit from octave-mode-syntax-table.
19616         (inferior-octave-mode): Set info-lookup-mode.
19617         (inferior-octave-completion-at-point): New function.
19618         (inferior-octave-complete): Use it and completion-in-region.
19619         (inferior-octave-dynamic-complete-functions): Use it as well, and use
19620         comint-filename-completion.
19621         * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
19622         symbol elements which shouldn't be word elements.
19623         (octave-font-lock-keywords, octave-beginning-of-defun)
19624         (octave-function-header-regexp): Adjust regexps accordingly.
19625         (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
19627 2011-04-25  Juanma Barranquero  <lekktu@gmail.com>
19629         * net/gnutls.el (gnutls-errorp): Declare before first use.
19631 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
19633         * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19634         verify-error, and verify-hostname-error parameters.  Check whether
19635         default trustfile exists before going to use it.  Add missing
19636         argument to gnutls-message-maybe call.  Return value.
19637         Reported by Claudio Bley <claudio.bley@gmail.com>.
19638         (open-gnutls-stream): Add usage example.
19640         * net/network-stream.el (network-stream-open-starttls): Give host
19641         parameter to `gnutls-negotiate'.
19642         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
19643         * subr.el (shell-quote-argument): Escape correctly under Windows.
19645 2011-04-24  Daniel Colascione  <dan.colascione@gmail.com>
19647         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19648         Use correct match group (bug#8438).
19650 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
19652         * emacs-lisp/package.el (package-built-in-p): Fix typo.
19653         (package-menu--generate): New arg specifying packages to show.
19654         (package-menu-refresh, package-menu-execute, list-packages):
19655         Callers changed.
19656         (package-show-package-list): New function, replacing deleted
19657         package--list-packages (renamed because it is non-internal).
19659         * finder.el (finder-list-matches): Use package-show-package-list
19660         instead of deleted package--list-packages.
19662         * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19663         Based on a previous implementation by Juanma Barranquero (Bug#8366).
19664         (vc-annotate-mode-map): Bind it to RET.
19666 2011-04-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
19668         * progmodes/etags.el (next-file): Don't use set-buffer to change
19669         buffers (Bug#8478).
19671 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
19673         * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19675         * apropos.el (apropos-label-face): Avoid variable-pitch face.
19676         (apropos-accumulator): Doc fix.
19677         (apropos-function, apropos-macro, apropos-command)
19678         (apropos-variable, apropos-face, apropos-group, apropos-widget)
19679         (apropos-plist): Add face property.
19680         (apropos-symbols-internal): Fix indentation.
19681         (apropos-print): Simplify help, and recognize apropos-multi-type.
19682         (apropos-print-doc): Use button-type-get to extract the button's
19683         face property.  Fill docstring (Bug#8352).
19685 2011-04-23  Juanma Barranquero  <lekktu@gmail.com>
19687         * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19689         * play/mpuz.el (mpuz-silent): Doc fix.
19690         (mpuz-mode-map): Use mapc.
19691         (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19692         (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19693         Fix typos in docstrings.
19695         * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19696         (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19698         * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19700 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
19702         * minibuffer.el (completion--do-completion): Avoid the "Next char
19703         not unique" prompt if icomplete-mode is enabled (Bug#5849).
19705         * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19706         mouse-2 into unread-command-events, it is interpreted correctly.
19708         * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
19709         (image-toggle-display): Doc fix.
19711 2011-04-23  Stephen Berman  <stephen.berman@gmx.net>
19713         * textmodes/page.el (what-page): Use line-number-at-pos to
19714         calculate line number (Bug#6825).
19716 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
19718         * eshell/esh-mode.el (find-tag-interactive): Declare function.
19719         (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19720         Pass argument NO-DEFAULT to `find-tag-interactive'.
19722 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
19724         Lexical-binding cleanup.
19726         * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19727         (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19728         * progmodes/ada-prj.el (ada-prj-initialize-values)
19729         (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19730         (ada-prj-show-value):
19731         * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19732         * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19733         (antlr-invalidate-context-cache, antlr-options-menu-filter)
19734         (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19735         * progmodes/bug-reference.el (bug-reference-push-button):
19736         * progmodes/fortran.el (fortran-line-length):
19737         * progmodes/glasses.el (glasses-change):
19738         * progmodes/octave-mod.el (octave-fill-paragraph):
19739         * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19740         (python-pdbtrack-grub-for-buffer, python-sentinel):
19741         * progmodes/sql.el (sql-save-connection):
19742         * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19743         * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19744         Mark unused parameters.
19746         * progmodes/compile.el (compilation--flush-directory-cache)
19747         (compilation--flush-parse, compile-internal): Mark unused parameters.
19748         (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19749         (compilation-next-error-function): Remove unused variable `timestamp'.
19751         * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19752         (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19754         * progmodes/dcl-mode.el (dcl-end-of-command):
19755         Remove unused variable `start'.
19756         (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19757         (dcl-option-value-basic, dcl-option-value-offset)
19758         (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19759         Mark unused parameters.
19760         (dcl-save-local-variable): Remove unused variable `val'.
19761         (mode): Declare.
19763         * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19764         Mark unused parameters.
19765         (delphi-ignore-changes): Move before first use.
19766         (delphi-charset-token-at): Remove unused variable `start'.
19767         (delphi-else-start): Remove unused variable `if-count'.
19768         (delphi-comment-block-start, delphi-comment-block-end):
19769         Remove unused variable `kind'.
19770         (delphi-indent-line): Remove unused variable `new-point'.
19772         * progmodes/ebrowse.el (ebrowse-files-list)
19773         (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
19774         Mark unused parameters.  Don't quote `lambda'.
19775         (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
19776         Don't quote `lambda'.
19777         (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
19778         (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
19779         (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
19780         (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
19781         Use `ignore-errors'.
19782         (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
19783         (ebrowse-view/find-file-and-search-pattern)
19784         (ebrowse-view/find-member-declaration/definition):
19785         Rename parameter TAGS-FILE-NAME to TAGS-FILE.
19786         (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
19787         Rename parameter PREFIX-ARG to PREFIX.
19788         (ebrowse-tags-read-name): Remove unused variables `start' and
19789         `member-info'.
19790         (ebrowse-display-member-buffer): Rename variable `tags-file-name'
19791         to `tags-file'.
19793         * progmodes/etags.el (local-find-tag-hook): Declare.
19794         (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
19795         Mark unused parameters.
19797         * progmodes/executable.el (compilation-error-regexp-alist): Declare.
19798         (executable-interpret): Mark unused parameter.
19800         * progmodes/flymake.el (flymake-process-sentinel)
19801         (flymake-after-change-function)
19802         (flymake-create-temp-with-folder-structure)
19803         (flymake-get-include-dirs-dot): Mark unused parameters.
19804         (flymake-safe-delete-directory): Remove unused variable `err'.
19806         * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
19807         (speedbar-timer-fn, speedbar-line-text)
19808         (speedbar-change-expand-button-char, speedbar-delete-subblock)
19809         (speedbar-center-buffer-smartly): Declare functions.
19810         (gdb-find-watch-expression): Remove unused variable `array'.
19811         (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
19812         (gdb-starting): Mark unused parameters.
19813         (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
19814         (gdb-table-string): Remove unused variable `res'.
19815         (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
19816         (gdb-disassembly-handler-custom): Remove unused variable `pos'.
19817         (gdb-display-buffer): Remove unused variable `cur-size'.
19819         * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
19820         allow lexical-binding compilation.
19821         (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
19822         (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
19823         (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
19824         Mark unused parameters.
19825         (gud-gdb-marker-filter): Remove unused variable `match'.
19826         (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
19827         lambda expressions and funcall them, instead of using `fset'.
19829         * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
19830         HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
19832         * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
19833         variable `header-beg'; use `let'.
19835         * progmodes/icon.el (indent-icon-exp): Remove unused variables
19836         `restart', `last-sexp' and `at-do'.
19838         * progmodes/js.el (js--debug): Mark unused parameter.
19839         (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
19840         (js--splice-into-items): Remove unused variable `item'.
19841         (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
19843         * progmodes/make-mode.el (makefile-make-font-lock-keywords):
19844         Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
19845         (makefile-complete): Remove unused variable `try'.
19846         (makefile-fill-paragraph, makefile-match-function-end):
19847         Mark unused parameters.
19849         * progmodes/octave-inf.el (inferior-octave-complete):
19850         Remove unused variable `proc'.
19851         (inferior-octave-output-digest): Mark unused parameter.
19853         * progmodes/perl-mode.el (perl-calculate-indent):
19854         Remove unused variable `err'.
19856         * progmodes/prolog.el (prolog-mode-keybindings-inferior)
19857         (prolog-indent-line): Mark unused parameters.
19858         (prolog-indent-line): Remove unused variable `beg'.
19860         * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
19861         (reporter-dont-compact-list): Declare.
19863         * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
19864         Remove unused variable `char'.
19865         (sh-debug): Mark unused parameter.
19866         (sh-get-indent-info): Remove unused variable `start'.
19867         (sh-calculate-indent): Remove unused variable `var'.
19869         * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
19870         (simula-electric-keyword): Remove unused variable `null'.
19871         (simula-search-backward, simula-search-forward): Remove unused
19872         variables `begin' and `end'.
19874         * progmodes/vera-mode.el (vera-guess-basic-syntax):
19875         Remove unused variable `pos'.
19876         (vera-electric-tab, vera-comment-uncomment-region):
19877         Mark unused parameters.
19878         (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
19880 2011-04-22  Chong Yidong  <cyd@stupidchicken.com>
19882         * emacs-lisp/package.el (package--builtins, package-alist)
19883         (package-load-descriptor, package-built-in-p, package-activate)
19884         (define-package, package-installed-p)
19885         (package-compute-transaction, package-buffer-info)
19886         (package--push): Doc fix.  Distinguish more clearly between
19887         version strings and version lists.
19889 2011-04-21  Juanma Barranquero  <lekktu@gmail.com>
19891         Lexical-binding cleanup.
19893         * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
19894         (5x5-make-mutate-best):
19895         * play/fortune.el (fortune-in-buffer):
19896         * play/gomoku.el (gomoku-init-display):
19897         * play/solitaire.el (solitaire, solitaire-do-check):
19898         * play/tetris.el (tetris-default-update-speed-function):
19899         Mark unused parameters.
19901         * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
19902         (bubbles--shift): Remove unused variable `char-org'.
19903         (bubbles--set-faces): Remove unused variable `fg-col'.  Simplify.
19904         (bubbles--show-images): Remove unused variable `char'.
19906         * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
19907         (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
19908         (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
19909         (decipher-analyze-buffer): Use ?\s.
19910         (decipher-make-checkpoint): Remove unused variable `mapping'.
19912         * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
19914         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
19915         Remove unused variable `result'; use `let'.
19917         * play/gametree.el (gametree-current-layout, gametree-apply-layout):
19918         Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
19919         (gametree-children-shown-p, gametree-compute-reduced-score):
19920         Use `ignore-errors'.
19922         * play/handwrite.el (ps-lpr-switches): Declare.
19923         (handwrite): Remove unused variables `pmin' and `lastp'.
19925         * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
19927         * play/landmark.el (landmark-init-display)
19928         (landmark-update-naught-weights): Mark unused parameters.
19929         (landmark-y): Remove unused variable `noise'.  Simplify.
19930         (landmark-human-plays): Remove unused variable `score'.
19932         * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
19933         (mpuz-try-proposal): Remove unused variable `game'.
19935         * play/zone.el (life-patterns): Declare.
19937 2011-04-20  Juanma Barranquero  <lekktu@gmail.com>
19939         * vc/vc.el (ediff-vc-internal): Declare function.
19941 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19943         * shell.el: Use lexical-binding and std completion UI.
19944         (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
19945         (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
19946         comint-preoutput-filter-functions rather than on
19947         comint-output-filter-functions.
19948         (shell-command-completion, shell--command-completion-data)
19949         (shell-filename-completion, shell-environment-variable-completion)
19950         (shell-c-a-p-replace-by-expanded-directory): New functions.
19951         (shell-dynamic-complete-functions, shell-dynamic-complete-command)
19952         (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
19953         (shell-dynamic-complete-environment-variable): Use them.
19954         (shell-dynamic-complete-as-environment-variable)
19955         (shell-dynamic-complete-as-command): Remove.
19956         (shell-match-partial-variable): Match past point.
19957         * comint.el: Clean up use of completion-at-point-functions.
19958         (comint-completion-at-point): New function.
19959         (comint-mode): Use it completion-at-point-functions.
19960         (comint-dynamic-complete): Make it obsolete.
19961         (comint-replace-by-expanded-history-before-point): Add dry-run arg.
19962         (comint-c-a-p-replace-by-expanded-history): New function.
19963         (comint-dynamic-complete-functions)
19964         (comint-replace-by-expanded-history): Use it.
19965         * minibuffer.el (completion-table-with-terminator): Allow dynamic
19966         termination strings.  Try harder to avoid second try-completion.
19967         (completion-in-region-mode-map): Disable bindings that don't work yet.
19969         * comint.el: Use lexical-binding.  Require CL.
19970         (comint-dynamic-complete-functions): Use comint-filename-completion.
19971         (comint-completion-addsuffix): Tweak custom type.
19972         (comint-filename-completion, comint--common-suffix)
19973         (comint--common-quoted-suffix, comint--table-subvert)
19974         (comint--complete-file-name-data): New functions.
19975         (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
19976         (comint-dynamic-list-filename-completions): Use them.
19977         (comint-dynamic-simple-complete): Make obsolete.
19979         * minibuffer.el (completion-in-region-mode):
19980         Keep completion-in-region-mode--predicate global.
19981         (completion-in-region--postch):
19982         Assume completion-in-region-mode--predicate is not null.
19984         * progmodes/flymake.el (flymake-start-syntax-check-process):
19985         Obey `dir'.  Simplify.
19987         * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
19988         we're in VC after all.
19990 2011-04-20  Christoph Scholtes  <cschol2112@googlemail.com>
19992         * vc/vc.el (vc-diff-build-argument-list-internal)
19993         (vc-version-ediff, vc-ediff): New commands.
19994         (vc-version-diff): Use vc-diff-build-argument-list-internal.
19996 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19998         * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
19999         add sanity check.
20001         * obsolete/erc-hecomplete.el: Make obsolete.
20002         * obsolete/: Standardize obsolescence info in the header.
20004 2011-04-20  Glenn Morris  <rgm@gnu.org>
20006         * calendar/solar.el (solar-horizontal-coordinates):
20007         Use the longitude argument rather than `calendar-longitude'.
20008         (solar-date-next-longitude): Remove unused locals.
20010 2011-04-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20012         * whitespace.el: New version 13.2.1.
20014 2011-04-20  felix  <EmacsWiki>  (tiny change)
20016         * whitespace.el (global-whitespace-mode): Keep highlight when
20017         switching between major modes on a file.
20019 2011-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
20021         * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
20022         (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
20023         multi-line comments as well.
20025 2011-04-19  Juanma Barranquero  <lekktu@gmail.com>
20027         Lexical-binding cleanup.
20029         * arc-mode.el (archive-mode-revert):
20030         * cmuscheme.el (scheme-interactively-start-process):
20031         * custom.el (custom-initialize-delay):
20032         * dnd.el (dnd-open-local-file, dnd-open-remote-url):
20033         * dos-w32.el (direct-print-region-helper, direct-print-region-function):
20034         * emacs-lock.el (emacs-lock-clear-sentinel):
20035         * ezimage.el (defezimage):
20036         * follow.el (follow-avoid-tail-recenter):
20037         * fringe.el (set-fringe-mode-1):
20038         * generic-x.el (bat-generic-mode-compile):
20039         * help-mode.el (help-info-variable, help-do-xref)
20040         (help-mode-revert-buffer):
20041         * help.el (view-emacs-todo):
20042         * iswitchb.el (iswitchb-completion-help):
20043         * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
20044         * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
20045         (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
20046         * locate.el (locate-update):
20047         * longlines.el (longlines-encode-region)
20048         (longlines-after-change-function):
20049         * outline.el (outline-isearch-open-invisible):
20050         * ps-def.el (declare-function, charset-dimension, char-width)
20051         (encode-char):
20052         * ps-mule.el (ps-mule-plot-string):
20053         * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
20054         (recentf-edit-list-select, recentf-edit-list-validate)
20055         (recentf-open-files-action):
20056         * rect.el (delete-whitespace-rectangle-line)
20057         (rectangle-number-line-callback):
20058         * register.el (window-configuration-to-register)
20059         (frame-configuration-to-register):
20060         * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
20061         * select.el (xselect-convert-to-string, xselect-convert-to-length)
20062         (xselect-convert-to-targets, xselect-convert-to-delete)
20063         (xselect-convert-to-filename, xselect-convert-to-charpos)
20064         (xselect-convert-to-lineno, xselect-convert-to-colno)
20065         (xselect-convert-to-os, xselect-convert-to-host)
20066         (xselect-convert-to-user, xselect-convert-to-class)
20067         (xselect-convert-to-name, xselect-convert-to-integer)
20068         (xselect-convert-to-atom, xselect-convert-to-identity):
20069         * subr.el (declare, ignore, process-kill-without-query)
20070         (text-clone-maintain):
20071         * terminal.el (te-get-char, te-tic-sentinel):
20072         * tool-bar.el (tool-bar-make-keymap):
20073         * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
20074         * type-break.el (type-break-mode, type-break-noninteractive-query):
20075         * view.el (View-back-to-mark):
20076         * wid-browse.el (widget-browse-action, widget-browse-widget)
20077         (widget-browse-widgets, widget-browse-sexp):
20078         * widget.el (define-widget-keywords):
20079         * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
20080         Mark unused parameters.
20082         * align.el (align-adjust-col-for-rule): Mark unused parameter.
20083         (align-areas): Remove unused variable `look'.
20084         (align-region): Remove unused variables `real-end' and `pos-list'.
20086         * apropos.el (apropos-score-doc): Remove unused variable `i'.
20088         * bindings.el (mode-line-modified, mode-line-remote):
20089         Mark unused parameters.
20090         (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
20092         * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
20093         (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
20095         * comint.el (comint-history-isearch-pop-state)
20096         (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
20097         (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
20098         (comint-substitute-in-file-name): Doc fix.
20100         * completion.el (cmpl-statistics-block): Mark unused parameter.
20101         (add-completions-from-tags-table, add-completions-from-lisp-buffer)
20102         (save-completions-to-file, load-completions-from-file):
20103         Remove unused local variable `e'.
20105         * composite.el (compose-chars): Remove unused variable `len'.
20106         (lgstring-insert-glyph): Remove unused variable `g'.
20107         (compose-glyph-string): Remove unused variables `ascent',
20108         `descent', `lbearing' and `rbearing'.
20109         (compose-glyph-string-relative): Remove unused variables
20110         `lbearing', `rbearing' and `wadjust'.
20111         (compose-gstring-for-graphic): Remove unused variables `header',
20112         `wadjust', `xoff' and `yoff'.  Use `let', not `let*'.
20113         (compose-gstring-for-terminal): Remove unused variables `header'
20114         and `nchars'.  Use `let', not `let*'.
20116         * cus-edit.el (Custom-set, Custom-save, custom-reset)
20117         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
20118         (Custom-buffer-done, custom-buffer-create-internal)
20119         (custom-browse-visibility-action, custom-browse-group-tag-action)
20120         (custom-browse-variable-tag-action, custom-browse-face-tag-action)
20121         (widget-magic-mouse-down-action, custom-toggle-parent)
20122         (custom-add-parent-links, custom-toggle-hide-variable)
20123         (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
20124         (custom-toggle-hide-face, face, hook, custom-group-link-action)
20125         (custom-face-menu-create, custom-variable-menu-create, get)
20126         (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
20127         (custom-reset-standard-save-and-update): Remove unused variable `value'.
20128         (customize-apropos): Remove unused variable `tests'.
20129         (custom-group-value-create): Remove unused variable `hidden-p'.
20130         (sort-fold-case): Declare.
20132         * cus-theme.el (custom-reset-standard-faces-list)
20133         (custom-reset-standard-variables-list): Declare.
20134         (customize-create-theme, custom-theme-revert, custom-theme-write)
20135         (custom-theme-choose-mode, customize-themes, custom-theme-save):
20136         Mark unused parameters.
20138         * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
20140         * delim-col.el (delimit-columns-max): Move defvar before first use.
20142         * descr-text.el (describe-char-categories): Don't quote `lambda'.
20143         (describe-char): Don't quote `lambda'.  Mark unused parameter.
20145         * desktop.el (desktop-save-buffer-p): Mark unused parameter.
20146         (auto-insert): Declare.
20147         (desktop-restore-file-buffer): Rename desktop-* parameters;
20148         mark unused ones.
20149         (desktop-create-buffer): Rename desktop-* parameters and bind them.
20150         (desktop-buffer): Rename desktop-* parameters.
20152         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
20153         (dframe-reposition-frame-xemacs, dframe-help-echo)
20154         (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
20155         Mark unused parameters.
20157         * dired-aux.el (backup-extract-version-start, overwrite-query)
20158         (overwrite-backup-query, rename-regexp-query)
20159         (rename-non-directory-query): Declare.
20160         (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
20161         (dired-add-entry): Remove unused variable `orig-file-name'.
20162         (dired-copy-file-recursive): Remove unused variable `dirfailed'.
20163         Use parameter PRESERVE-TIME instead of accessing dynamic variable
20164         `dired-copy-preserve-time' directly.
20165         (dired-do-create-files-regexp): Remove unused variable `fn-count'.
20166         (dired-insert-subdir-newpos): Rename unused variable `pos'.
20168         * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
20169         (dired-virtual-revert, dired-make-relative-symlink):
20170         Mark unused parameters.
20171         (manual-program): Declare.
20172         (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
20173         (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
20174         wrapped in `with-no-warnings' to avoid replacing one warning by another.
20176         * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
20178         * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
20180         * echistory.el (electric-history-in-progress, Helper-return-blurb):
20181         Declare.
20183         * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
20185         * electric.el (Electric-command-loop): Rename parameter
20186         INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
20188         * expand.el (expand-in-literal): Remove unused variable `here'.
20190         * facemenu.el (facemenu-add-new-color):
20191         Remove unused variable `docstring'.
20193         * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
20194         (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
20195         (face-attr-construct): Mark unused parameter.  Doc fix.
20196         (read-color): Remove unused variable `hex-string'.
20198         * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
20199         (locate-dominating-file): Remove unused vars `prev-file' and `user'.
20200         (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
20201         (display-buffer-other-frame): Remove unused variable `old-window'.
20202         (kill-buffer-hook): Declare.
20203         (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
20204         Mark unused parameters.
20205         (after-find-file): Pass 1 to `auto-save-mode', not t.
20207         * files-x.el (auto-insert): Declare.
20208         (modify-file-local-variable-prop-line): Remove unused variable `val'.
20210         * find-lisp.el (find-lisp-find-dired-internal): Remove unused
20211         variable `buf'.  Mark unused parameter.
20212         (find-lisp-insert-directory): Mark unused parameter.
20214         * format.el (format-decode-run-method): Mark unused parameter; doc fix.
20215         (format-encode-region): Remove unused variables `cur-buf' and `result'.
20216         (format-common-tail): Remove, unused.
20217         (format-deannotate-region): Remove unused variable `loc'.
20218         (format-annotate-region): Remove unused variable `p'.
20219         (format-annotate-single-property-change): Remove unused variables
20220         `default' and `tail'.
20222         * forms.el (read-file-filter): Declare.
20223         (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
20225         * frame.el (frame-creation-function-alist): Mark unused parameter.
20226         (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
20228         * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
20229         Remove unused parameters.
20230         (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
20231         (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
20233         * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
20234         (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
20235         (hfy-prepare-tag-map): Mark unused parameters.
20236         (htmlfontify-buffer): Use `called-interactively-p'.
20238         * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
20239         (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
20240         (ibuffer-do-occur): Mark unused parameters.
20241         (ibuffer-forward-next-marked): Remove unused variable `curmark'.
20242         (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
20244         * ibuffer.el: Don't quote `lambda'.
20245         (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
20246         (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
20247         Mark unused parameters.
20249         * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
20250         (ido-completing-read): Mark unused parameters.
20251         (ido-copy-current-word): Mark unused parameters;
20252         remove unused variable `name'.
20253         (ido-sort-merged-list): Remove unused parameter `dirs'.
20255         * ielm.el (ielm-input-sender): Mark unused parameter.
20256         (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
20257         (ielm-output, ielm-wbuf, ielm-pmark): Declare.
20258         (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
20259         `ielm-string' as a dynamic variable accessible from the IELM prompt.
20260         Bind `ielm-string' to INPUT-STRING.  Remove unused variable `err'.
20262         * image-dired.el (image-dired-display-thumbs): Remove unused
20263         variables `curr-file' and `count'.
20264         (image-dired-remove-tag): Remove unused variable `start'.
20265         (image-dired-tag-files, image-dired-create-thumbs): Remove unused
20266         variable `curr-file'
20267         (image-dired-rotate-original): Remove unused variable `temp-file'.
20268         (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
20269         Remove unused variable `file'.
20270         (image-dired-gallery-generate): Remove unused variable `curr'.
20271         (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
20273         * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
20275         * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
20277         * informat.el (texinfo-command-start, texinfo-command-end): Declare.
20279         * isearch.el (minibuffer-history-symbol): Declare.
20280         (isearch-edit-string): Remove unused variable `err'.
20281         (isearch-message-prefix, isearch-message-suffix):
20282         Mark unused parameters.
20284         * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
20286         * macros.el (insert-kbd-macro): Remove unused variable `mods'.
20288         * makesum.el (double-column): Remove unused variable `cnt'.
20290         * misearch.el (multi-isearch-pop-state): Mark unused parameter.
20291         (ido-ignore-item-temp-list): Declare.
20293         * mouse-drag.el (mouse-drag-throw): Remove unused variables
20294         `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
20295         `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
20296         (mouse-drag-drag): Remove unused variables `mouse-delta' and
20297         `mouse-col-delta'.
20299         * mouse-sel.el (mouse-extend-internal):
20300         Remove unused variable `orig-window-frame'.
20302         * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
20303         (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
20304         Move declarations before first use.
20305         (pcomplete-opt): Mark unused parameters; doc fix.
20307         * proced.el (proced-revert): Mark unused parameter.
20308         (proced-send-signal): Remove unused variable `err'.
20310         * ps-print.el (ps-print-preprint-region, ps-print-preprint):
20311         Rename parameter PREFIX-ARG to ARG.
20312         (ps-basic-plot-string, ps-basic-plot-whitespace):
20313         Mark unused parameters.
20315         * replace.el (replace-count): Define.
20316         (occur-revert-function): Mark unused parameters.
20317         (ido-ignore-item-temp-list, isearch-error, isearch-forward)
20318         (isearch-case-fold-search, isearch-string): Declare.
20319         (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
20320         bind `case-fold-search'.  Remove unused variables `beg' and `end',
20321         and simplify.
20322         (replace-eval-replacement): Rename parameter REPLACE-COUNT to
20323         COUNT and bind `replace-count'.
20324         (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
20325         to COUNT.
20327         * savehist.el (print-readably, print-string-length): Declare.
20329         * shadowfile.el (shadow-expand-cluster-in-file-name):
20330         Remove unused variable `cluster'.
20331         (shadow-copy-file): Remove unused variable `i'.
20332         (shadow-noquery, shadow-clusters, shadow-site-cluster)
20333         (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
20334         (shadow-define-literal-group, shadow-define-regexp-group)
20335         (shadow-make-group, shadow-shadows-of): Clean up docstrings.
20337         * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
20338         (shell): Use `called-interactively-p'.
20339         (shell-directory-tracker): Remove unused variable `chdir-failure'.
20341         * simple.el (compilation-context-lines, comint-file-name-quote-list)
20342         (comint-file-name-chars, comint-delimiter-argument-list): Declare.
20343         (delete-backward-char): Remove unused variable `ocol'.
20344         (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
20345         (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
20346         (event-apply-hyper-modifier, event-apply-shift-modifier)
20347         (event-apply-control-modifier, event-apply-meta-modifier):
20348         Mark unused parameters.
20349         (undo-make-selective-list): Remove duplicate variable `undo-elt'.
20350         (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
20352         * speedbar.el (speedbar-ignored-directory-expressions)
20353         (speedbar-supported-extension-expressions, speedbar-directory-buttons)
20354         (speedbar-find-file, speedbar-dir-follow)
20355         (speedbar-directory-buttons-follow, speedbar-tag-find)
20356         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
20357         (speedbar-buffers-line-directory, speedbar-buffer-click):
20358         Mark unused parameters.
20359         (speedbar-tag-file): Remove unused variable `mode'.
20360         (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
20362         * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
20364         * talk.el (talk): Remove unused variable `display'.
20366         * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
20367         (tar-write-region-annotate): Mark unused parameter.
20369         * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
20370         (minutes, seconds, time-zone, day, year, monthname, month, dayname):
20371         Declare them, wrapped in `with-no-warnings' to avoid replacing one
20372         warning by another.
20374         * time-stamp.el (time-stamp-string-preprocess):
20375         Remove unused variable `require-padding'.
20377         * tree-widget.el (widget-glyph-enable): Declare.
20378         (tree-widget-action): Mark unused parameter.
20380         * w32-fns.el (x-get-selection): Mark unused parameter.
20381         (autoload-make-program, generated-autoload-file): Declare.
20383         * wdired.el (wdired-revert): Mark unused parameters.
20384         (wdired-xcase-word): Remove unused variable `err'.
20386         * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
20387         (whitespace-help-scroll): Remove unused variable `data-help'.
20389         * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
20390         (widget-image-insert, widget-after-change, default)
20391         (widget-default-format-handler, widget-default-notify)
20392         (widget-default-prompt-value, widget-info-link-action)
20393         (widget-url-link-action, widget-function-link-action)
20394         (widget-variable-link-action, widget-file-link-action)
20395         (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
20396         (widget-field-prompt-internal, widget-field-action, widget-field-match)
20397         (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
20398         (widget-insert-button-action, widget-delete-button-action, visibility)
20399         (widget-documentation-link-action, widget-documentation-string-action)
20400         (widget-const-prompt-value, widget-regexp-match, symbol)
20401         (widget-coding-system-prompt-value)
20402         (widget-key-sequence-value-to-external, sexp)
20403         (widget-sexp-value-to-internal, character, vector, cons)
20404         (widget-choice-prompt-value, widget-boolean-prompt-value)
20405         (widget-color--choose-action): Mark unused parameters.
20406         (widget-item-match-inline, widget-choice-match-inline)
20407         (widget-checklist-match, widget-checklist-match-inline)
20408         (widget-group-match): Rename parameter VALUES to VALS.
20409         (widget-field-value-set): Remove unused variable `size'.
20410         (widget-color-action): Remove unused variables `value' and `start'.
20412         * windmove.el (windmove-wrap-loc-for-movement): Remove unused
20413         variable `dir'.  Doc fix.
20414         (windmove-find-other-window): Don't pass it.
20416         * window.el (count-windows): Mark unused parameter.
20417         (bw-adjust-window): Remove unused variable `err'.
20419         * woman.el (woman-file-name): Remove unused variable `default'.
20420         (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
20421         WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
20422         (global-font-lock-mode): Declare.
20423         (woman-decode-region): Mark unused parameter.
20424         (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
20426         * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
20427         (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
20428         (x-dnd-handle-moz-url): Remove unused variable `title'.
20429         (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
20431         * xml.el (xml-parse-tag, xml-parse-attlist):
20432         Remove unused variable `pos'.
20434 2011-04-19  Glenn Morris  <rgm@gnu.org>
20436         * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
20437         (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
20438         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20439         (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
20440         * calendar/cal-html.el (cal-html-insert-minical):
20441         * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
20442         (calendar-mark-date-pattern):
20443         Prefix "unused" locals.
20445         * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
20446         optional argument `style'.
20448         * calendar/appt.el (appt-make-list):
20449         * calendar/cal-china.el (calendar-chinese-date-string):
20450         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
20451         (diary-hebrew-yahrzeit):
20452         * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
20453         * calendar/calendar.el (calendar-generate-window):
20454         * calendar/time-date.el (time-to-days):
20455         Remove unused local variables.
20457 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
20459         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
20460         glyphless-char-display table.
20461         (tabulated-list-glyphless-char-display): New var.
20463 2011-04-18  Sam Steingold  <sds@gnu.org>
20465         * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
20466         to acknowledgments.
20468 2011-04-17  Glenn Morris  <rgm@gnu.org>
20470         * calendar/diary-lib.el (diary-sexp-entry):
20471         * calendar/holidays.el (holiday-sexp):
20472         Set debug-on-error rather than the removed stack-trace-on-error.
20474 2011-04-16  Glenn Morris  <rgm@gnu.org>
20476         * progmodes/f90.el: Use lexical-binding.
20477         (f90-get-correct-indent): Remove unnecessary local variable `cont'.
20479 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
20481         * mail/sendmail.el (mail-mode-map): Use completion-at-point.
20482         (mail-mode): Setup mailalias completion here instead.
20483         * mail/mailalias.el: Use lexical-binding.
20484         (pattern, mailalias-done): Declare dynamic.
20485         (mail-completion-at-point-function): New function, from mail-complete.
20486         (mail-complete): Use it.
20487         (mail-completion-expand): New function.
20488         (mail-get-names): Use it.
20489         (mail-directory, mail-directory-process, mail-directory-stream):
20490         Don't use `pattern' for lexically bound arg.
20492         * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
20494         * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
20495         (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
20496         (hfy-etags-cmd-alist): Don't eval-and-compile any more.
20498         * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
20499         (byte-save-window-excursion, byte-temp-output-buffer-setup)
20500         (byte-interactive-p): Define them again, for use when inlining
20501         old code.
20503 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
20505         * loadup.el: Use `string-to-number', not `string-to-int'.
20507 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
20509         * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
20510         gud-gdb-complete-command.
20511         (gud-gdb-completions): New function, from gud-gdb-complete-command.
20512         (gud-gdb-completion-at-point): New function.
20513         (gud-gdb-completions): Remove.
20515 2011-04-14  Michael Albinus  <michael.albinus@gmx.de>
20517         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
20518         when the scripts fail.  Use `tramp-do-file-attributes-with-ls' then.
20519         (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
20520         whether `executable-find' is bound.
20522         * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
20524 2011-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
20526         * minibuffer.el (completion-in-region-mode-predicate)
20527         (completion-in-region-mode--predicate): New vars.
20528         (completion-in-region, completion-in-region--postch)
20529         (completion-in-region-mode): Use them.
20530         (completion--capf-wrapper): Also return the hook function.
20531         (completion-at-point, completion-help-at-point):
20532         Adjust and provide a predicate.
20534         Preserve arg names for advice of subr and lexical functions (bug#8457).
20535         * help-fns.el (help-function-arglist): Consolidate the subr and
20536         new-byte-code cases.  Add argument `preserve-names' to extract names
20537         from the docstring when needed.
20538         * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
20539         (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
20540         (ad-arglist): Use help-function-arglist's new arg.
20541         (ad-definition-type): Use cond.
20543 2011-04-13  Juanma Barranquero  <lekktu@gmail.com>
20545         * autorevert.el (auto-revert-handler):
20546         Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
20547         which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
20548         Don't quote lambda.
20550         * image-mode.el (image-transform-set-scale):
20551         Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
20553 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20555         * net/network-stream.el (network-stream-open-starttls): Only do
20556         opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
20557         Upgrades via gnutls-cli are too slow to be done opportunistically.
20559 2011-04-12  Juanma Barranquero  <lekktu@gmail.com>
20561         * dframe.el (dframe-current-frame): Remove spurious quote.
20563 2011-04-12  Glenn Morris  <rgm@gnu.org>
20565         * calendar/cal-tex.el (cal-tex-end-document):
20566         Try to automatically use latin1 input if needed.
20568         * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
20569         Don't try to cons a mark onto an empty element.
20571 2011-04-11  Leo Liu  <sdl.web@gmail.com>
20573         * ido.el (ido-buffer-internal): Allow method 'kill for virtual
20574         buffers.
20575         (ido-kill-buffer-at-head): Support killing virtual buffers.
20577 2011-04-10  Chong Yidong  <cyd@stupidchicken.com>
20579         * minibuffer.el (completion-show-inline-help): New var.
20580         (completion--do-completion, minibuffer-complete)
20581         (minibuffer-force-complete, minibuffer-complete-word):
20582         Inhibit minibuffer messages if completion-show-inline-help is nil.
20584         * icomplete.el (icomplete-mode): Bind completion-show-inline-help
20585         to avoid interference from inline help (Bug#5849).
20587 2011-04-10  Leo Liu  <sdl.web@gmail.com>
20589         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20590         Fix typo.
20592 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
20594         * image-mode.el (image-toggle-display-image): Signal an error if
20595         not in Image mode.
20596         (image-transform-mode, image-transform-resize)
20597         (image-transform-set-rotation): Doc fix.
20598         (image-transform-set-resize): Delete.
20599         (image-transform-set-scale, image-transform-fit-to-height)
20600         (image-transform-fit-to-width): Handle image-toggle-display-image
20601         and image-transform-resize directly.
20603 2011-04-08  Sho Nakatani  <lay.sakura@gmail.com>
20605         * doc-view.el (doc-view-fit-width-to-window)
20606         (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
20607         New functions for fitting the shown image to the Emacs window size.
20608         (doc-view-mode-map): Add bindings for the new functions.
20610 2011-04-08  Juanma Barranquero  <lekktu@gmail.com>
20612         * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
20613         Fix typo in docstring.
20615 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
20617         * files.el (file-size-human-readable): Produce one digit after
20618         decimal, like "ls -lh" does.
20620         * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
20621         the file size representation.
20623         * simple.el (list-processes): If async subprocesses are not
20624         available, error out with a clear error message.
20626 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
20628         * help.el (help-form-show): New function, to be called from C.
20629         Put help-form output in a buffer named differently than *Help*.
20631 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
20633         * files.el (file-size-human-readable): New function.
20635         * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20636         computing the representation inline.  Don't require `cl'.
20638 2011-04-08  Glenn Morris  <rgm@gnu.org>
20640         * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20642         * net/browse-url.el (browse-url-firefox):
20643         Test system-type, not system-configuration.
20645         * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20646         (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20647         Use log-edit-empty-buffer-p.  (Bug#7598)
20649         * net/rlogin.el (rlogin-process-connection-type): Simplify.
20650         (rlogin-mode-map): Initialize in the defvar.
20651         (rlogin): Use ignore-errors.
20653         * replace.el (occur-mode-map): Some fixes for menu items.
20655 2011-04-07  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
20657         * play/morse.el (denato-region): Handle varying case.  (Bug#8386)
20659 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
20661         * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20662         issuing unused warnings.
20664         * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20665         macro directly.
20667         * simple.el: Lisp reimplement of list-processes.  Based on an
20668         earlier reimplementation by Leo Liu, but using tabulated-list.el.
20669         (process-menu-mode): New major mode.
20670         (list-processes--refresh, list-processes):
20671         (process-menu-visit-buffer): New functions.
20673         * files.el (save-buffers-kill-emacs): Don't assume any return
20674         value of list-processes, which is undocumented anyway.
20676 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
20678         * emacs-lisp/tabulated-list.el: New file.
20680         * emacs-lisp/package.el: Use Tabulated List mode.
20681         (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20682         (package-menu-mode): Derive from tabulated-list-mode.  Set up the
20683         table format using Tabulated List mode variables.
20684         (package--push): New macro, replacing package-list-maybe-add.
20685         (package-menu--generate): Use package--push.  Renamed from
20686         package--generate-package-list.
20687         (package-menu-refresh, list-packages): Use it.
20688         (package-menu--print-info): Rename from package-print-package.
20689         Return insertion data instead of inserting it directly.
20690         (package-menu-describe-package, package-menu-execute):
20691         Use tabulated-list-get-id.
20692         (package-menu-mark-delete, package-menu-mark-install)
20693         (package-menu-mark-unmark, package-menu-backup-unmark)
20694         (package-menu-mark-obsolete-for-deletion):
20695         Use tabulated-list-put-tag.
20696         (package--list-packages, package-menu-revert)
20697         (package-menu-get-package, package-menu-get-version)
20698         (package-menu-sort-by-column): Functions deleted.
20699         (package-menu-package-list, package-menu-sort-key): Vars deleted.
20700         (package-menu--status-predicate, package-menu--version-predicate)
20701         (package-menu--name-predicate)
20702         (package-menu--description-predicate): Handle arguments in the
20703         Tabulated List format.
20704         (package-list-packages-no-fetch): Call list-packages.
20706 2011-04-06  Juanma Barranquero  <lekktu@gmail.com>
20708         * files.el (after-find-file-from-revert-buffer): Remove variable.
20709         (after-find-file): Don't bind it.
20710         (revert-buffer-in-progress-p): New variable.
20711         (revert-buffer): Bind it.
20712         Pass nil for `after-find-file-from-revert-buffer'.
20714         * saveplace.el (save-place-find-file-hook): Use new variable
20715         `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20717 2011-04-06  Glenn Morris  <rgm@gnu.org>
20719         * Makefile.in (AUTOGEN_VCS): New variable.
20720         (autoloads): Use $AUTOGEN_VCS.
20722         * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20723         * calendar/calendar.el (calendar-mode-map):
20724         Check for toolkit scroll bars.  (Bug#8305)
20726 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
20728         * minibuffer.el (completion-in-region--postch)
20729         (completion-in-region-mode): Remove unnecessary messages.
20731 2011-04-05  Juanma Barranquero  <lekktu@gmail.com>
20733         * font-lock.el (font-lock-refresh-defaults):
20734         Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20735         2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20737         * info.el (Info-directory-list, Info-read-node-name-2)
20738         (Info-split-parameter-string): Doc fixes.
20739         (Info-virtual-nodes): Reflow docstring.
20740         (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20741         (Info-apropos-toc-nodes, info-finder, Info-get-token)
20742         (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20743         Fix typos in docstrings.
20744         (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20745         (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20746         (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20747         (Info-restore-desktop-buffer): Mark unused parameters.
20748         (Info-directory-find-file, Info-directory-find-node)
20749         (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20750         (Info-virtual-index-find-node, Info-apropos-find-file)
20751         (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
20752         Mark unused parameters; fix typos in docstrings.
20753         (Info-virtual-index): Remove unused local variable `nodename'.
20755 2011-04-05  Deniz Dogan  <deniz@dogan.se>
20757         * net/rcirc.el: Update my e-mail address.
20758         (rcirc-mode-map): Remove M-o binding.
20760 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
20762         * startup.el (command-line): Save the cursor's theme-face
20763         directly, instead of using face-override-spec.
20765         * custom.el (load-theme): Minor optimization in assigning faces.
20767 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
20769         * help-fns.el (describe-variable): Complete all variables having
20770         documentation, including keywords.
20771         http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
20773 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
20775         Convert to lexical-binding.
20777         * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
20778         (bs--get-marked-string, bs--get-modified-string)
20779         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
20780         (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
20781         (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
20783         * ehelp.el (electric-help-execute-extended)
20784         (electric-help-ctrl-x-prefix):
20785         * hexl.el (hexl-revert-buffer-function):
20786         * linum.el (linum-after-change, linum-after-scroll):
20787         * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
20789         * help-fns.el (help-describe-category-set): Remove unused ERR variable.
20791 2011-04-04  Daiki Ueno  <ueno@unixuser.org>
20793         * epa-dired.el:
20794         * epa-mail.el:
20795         * epa-hook.el:
20796         * epa-file.el:
20797         * epa.el:
20798         * epg.el: Use lexical binding.
20800 2011-04-03  Chong Yidong  <cyd@stupidchicken.com>
20802         * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
20804         * textmodes/flyspell.el (flyspell-word): Recognize default
20805         dictionary case for flyspell-mark-duplications-exceptions.
20806         Use regexp matching for languages.
20807         (flyspell-mark-duplications-exceptions): Add "that" and "had" for
20808         default dictionary (Bug#7926).
20810 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
20812         * emacs-lisp/package.el (package--with-work-buffer):
20813         Recognize https URLs.
20815         * net/network-stream.el: Move from gnus/proto-stream.el.
20816         Change prefix to network-stream throughout.
20817         (open-protocol-stream): Merge into open-network-stream, leaving
20818         open-protocol-stream as an alias.  Handle nil BUFFER args.
20820         * subr.el (open-network-stream): Move to net/network-stream.el.
20822 2011-04-02  Glenn Morris  <rgm@gnu.org>
20824         * find-dired.el (find-exec-terminator): New option.
20825         (find-ls-option): Test for -ls support.
20826         (find-ls-subdir-switches): Test for -b in find-ls-option.
20827         (find-dired, find-grep-dired): Doc fixes.
20828         (find-dired): Use find-exec-terminator.
20830         * find-dired.el (find-ls-option, find-ls-subdir-switches)
20831         (find-grep-options): Do not autoload these defcustoms, remove purecopy.
20832         (find-name-arg): Remove purecopy.
20834         * progmodes/grep.el (grep-find-use-xargs): Doc fix.
20835         (grep-compute-defaults): Check for `-exec COMMAND +' support.
20836         Set grep-find-use-xargs, grep-find-command, and grep-find-template
20837         accordingly.  Don't add the null-device if not needed.
20839         * files.el (save-some-buffers): Doc fix.
20841 2011-04-02  Eli Zaretskii  <eliz@gnu.org>
20843         * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
20845 2011-04-01  Juanma Barranquero  <lekktu@gmail.com>
20847         * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
20848         Use `dolist' rather than `mapcar'.
20850 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
20852         Add lexical binding.
20854         * subr.el (apply-partially): Use new closures rather than CL.
20855         (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
20856         (dolist, dotimes): Use slightly different expansion for lexical code.
20857         (functionp): Move to C.
20858         (letrec): New macro.
20859         (with-wrapper-hook): Use it and apply-partially instead of CL.
20860         (eval-after-load): Preserve lexical-binding.
20861         (save-window-excursion, with-output-to-temp-buffer): Turn them
20862         into macros.
20864         * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
20866         * help-fns.el (help-split-fundoc): Return nil if there's nothing else
20867         than the arglist.
20868         (help-add-fundoc-usage): Don't add `Not documented'.
20869         (help-function-arglist): Handle closures, subroutines, and new
20870         byte-code-functions.
20871         (help-make-usage): Remove leading underscores.
20872         (describe-function-1): Handle closures.
20873         (describe-variable): Use special-variable-p for completion.
20875         * files.el (lexical-binding): Declare safe.
20877         * emacs-lisp/pcase.el: Don't use destructuring-bind.
20878         (pcase--memoize): Rename from pcase-memoize.  Change weakness.
20879         (pcase): Add `let' pattern.
20880         Change memoization so it actually works.
20881         (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
20882         (pcase--u1) <guard, pred>: Fix possible shadowing problem.
20883         <let>: New case.
20885         * emacs-lisp/macroexp.el: Use lexical binding.
20886         (macroexpand-all-1): Check obsolete macros.  Expand compiler-macros.
20887         Don't convert ' to #' without checking that it's indeed quoting
20888         a lambda.
20890         * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
20891         Use eval-sexp-add-defvars.
20892         (eval-sexp-add-defvars): New fun.
20894         * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
20896         * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
20897         Don't autoload.
20898         (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
20899         than the internal `byte-compile-lambda'.
20900         (defmethod): Don't hide code under quotes.
20901         (eieio-defmethod): New `code' argument.
20903         * emacs-lisp/eieio-comp.el: Remove.
20905         * emacs-lisp/edebug.el (edebug-eval-defun)
20906         (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
20907         (edebug-toggle): Avoid `eval'.
20909         * emacs-lisp/disass.el (disassemble-internal): Handle new
20910         `closure' objects.
20911         (disassemble-1): Handle new byte codes.
20913         * emacs-lisp/cl.el (pushnew): Silence warning.
20915         * emacs-lisp/cl-macs.el (cl-byte-compile-block)
20916         (cl-byte-compile-throw): Remove.
20917         (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
20919         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
20920         closures.
20922         * emacs-lisp/cconv.el: New file.
20924         * emacs-lisp/bytecomp.el: Use lexical binding instead of
20925         a "bytecomp-" prefix.  Macroexpand everything as a separate phase.
20926         (byte-compile-initial-macro-environment):
20927         Handle declare-function here.
20928         (byte-compile--lexical-environment): New var.
20929         (byte-stack-ref, byte-stack-set, byte-discardN)
20930         (byte-discardN-preserve-tos): New lap codes.
20931         (byte-interactive-p): Don't use any more.
20932         (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
20933         New macros.
20934         (byte-compile-lapcode): Use them and handle new lap codes.
20935         (byte-compile-obsolete): Remove.
20936         (byte-compile-arglist-signature): Handle new byte-code arg"lists".
20937         (byte-compile-arglist-warn): Check late def of inlinable funs.
20938         (byte-compile-cl-warn): Don't silence warnings for compiler-macros
20939         since they should have been expanded by now.
20940         (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
20941         (byte-compile-from-buffer): Remove unused second arg.
20942         (byte-compile-preprocess): New function.
20943         (byte-compile-toplevel-file-form): New function to distinguish
20944         file-form calls from outside from file-form calls from hunk-handlers.
20945         (byte-compile-file-form): Simplify.
20946         (byte-compile-file-form-defsubst): Remove.
20947         (byte-compile-file-form-defmumble): Simplify now that
20948         byte-compile-lambda always returns a byte-code-function.
20949         (byte-compile): Preprocess.
20950         (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
20951         Remove, not used any more.
20952         (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
20953         (byte-compile-make-args-desc): New funs.
20954         (byte-compile-lambda): Handle lexical functions.  Always return
20955         a byte-code-function.
20956         (byte-compile-reserved-constants): New var, to make up room for
20957         closed-over variables.
20958         (byte-compile-constants-vector): Obey it.
20959         (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
20960         (byte-compile-macroexpand-declare-function): New function.
20961         (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
20962         byte-code-functions.
20963         (byte-compile-form): Check obsolescence here.
20964         (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
20965         (byte-compile-variable-ref): Remove.
20966         (byte-compile-dynamic-variable-op): New fun.
20967         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
20968         (byte-compile-variable-set): New funs.
20969         (byte-compile-discard): Add 2 args.
20970         (byte-compile-stack-ref, byte-compile-stack-set)
20971         (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
20972         (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
20973         macroexpand-all instead.
20974         (byte-compile-quote-form): Remove.
20975         (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
20976         (byte-compile-bind, byte-compile-unbind): New funs.
20977         (byte-compile-let): Handle let* and lexical binding.
20978         (byte-compile-let*): Remove.
20979         (byte-compile-catch, byte-compile-unwind-protect)
20980         (byte-compile-track-mouse, byte-compile-condition-case):
20981         Handle a new :fun-body form, used for lexical scoping.
20982         (byte-compile-save-window-excursion)
20983         (byte-compile-with-output-to-temp-buffer): Remove.
20984         (byte-compile-defun): Simplify.
20985         (byte-compile-stack-adjustment): New fun.
20986         (byte-compile-out): Use it.
20987         (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
20989         * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
20990         handler any more.
20992         * emacs-lisp/byte-opt.el: Use lexical binding.
20993         (byte-inline-lapcode): Remove (to bytecomp).
20994         (byte-compile-inline-expand): Pay attention to inlining to/from
20995         lexically bound code.
20996         (byte-compile-unfold-lambda): Don't handle byte-code-functions
20997         any more.
20998         (byte-optimize-form-code-walker): Don't handle save-window-excursion
20999         any more and don't call compiler-macros.
21000         (byte-compile-splice-in-already-compiled-code): Remove.
21001         (byte-code): Don't inline any more.
21002         (disassemble-offset): Receive `bytes' as argument rather than via
21003         dynamic scoping.
21004         (byte-compile-tag-number): Declare before first use.
21005         (byte-decompile-bytecode-1): Handle new byte-codes, don't change
21006         `return' even if make-spliceable.
21007         (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
21008         obsolete interactive-p.
21009         (byte-optimize-lapcode): Optimize new lap-codes.
21010         Don't trip up on new form of `byte-constant' lap code.
21012         * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
21014         * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
21016         * custom.el (custom-initialize-default, custom-declare-variable):
21017         Use `defvar'.
21019         * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
21020         New variables.
21021         (compile-onefile, .el.elc, compile-calc, recompile): Use them.
21022         (COMPILE_FIRST): Add macroexp and cconv.
21023         * makefile.w32-in: Mirror changes in Makefile.in.
21025         * vc/cvs-status.el:
21026         * vc/diff-mode.el:
21027         * vc/log-edit.el:
21028         * vc/log-view.el:
21029         * vc/smerge-mode.el:
21030         * textmodes/bibtex-style.el:
21031         * textmodes/css-mode.el:
21032         * startup.el:
21033         * uniquify.el:
21034         * minibuffer.el:
21035         * newcomment.el:
21036         * reveal.el:
21037         * server.el:
21038         * mpc.el:
21039         * emacs-lisp/smie.el:
21040         * doc-view.el:
21041         * dired.el:
21042         * abbrev.el: Use lexical binding.
21044 2011-04-01  Eli Zaretskii  <eliz@gnu.org>
21046         * info.el (info-display-manual): New function.
21048 2011-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
21050         * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
21052 2011-03-31  Tassilo Horn  <tassilo@member.fsf.org>
21054         * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
21055         an entry for that server in rcirc-authinfo.  (Bug#8385)
21057 2011-03-31  Glenn Morris  <rgm@gnu.org>
21059         * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
21061         * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
21063 2011-03-30  Christoph Scholtes  <cschol2112@googlemail.com>
21065         * progmodes/python.el (python-default-interpreter)
21066         (python-python-command-args, python-jython-command-args)
21067         (python-which-shell, python-which-args, python-which-bufname)
21068         (python-file-queue, python-comint-output-filter-function)
21069         (python-toggle-shells, python-shell): Remove obsolete defcustoms,
21070         variables and functions.
21072 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21074         * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
21075         (completion-in-region-mode): New minor mode.
21076         (completion-in-region): Use it.
21077         (completion-in-region--data, completion-in-region-mode-map): New vars.
21078         (completion-in-region--postch): New function.
21079         (completion--capf-misbehave-funs, completion--capf-safe-funs):
21080         New vars.
21081         (completion--capf-wrapper): New function.
21082         (completion-at-point): Use it to track well-behavedness of
21083         hook functions.
21084         (completion-help-at-point): New command.
21086 2011-03-30  Jason Merrill  <jason@redhat.com>  (tiny change)
21088         * vc/add-log.el (add-change-log-entry): Don't use whitespace
21089         syntax class to search for whitespace on a single line
21090         (Message-ID: <4D938140.4030905@redhat.com>).
21092 2011-03-30  Leo Liu  <sdl.web@gmail.com>
21094         * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
21095         New commands.
21096         (edit-abbrevs-map): Bind them here.
21097         (write-abbrev-file): New optinal arg VERBOSE.  (Bug#5937)
21099 2011-03-29  Ken Manheimer  <ken.manheimer@gmail.com>
21101         * allout.el (allout-hide-by-annotation, allout-flag-region):
21102         Reduce possibility of overlay leakage by making them volatile.
21104         * allout-widgets.el (allout-widgets-tally): Define as nil so the
21105         hash is not shared between buffers.  Mode initialization is
21106         responsible for giving it a useful starting value.
21107         (allout-item-span): Reduce possibility of overlay leakage by
21108         making them volatile.
21109         (allout-widgets-count-buttons-in-region): Add diagnostic function
21110         for tracking down button overlay leaks.
21112 2011-03-29  Leo Liu  <sdl.web@gmail.com>
21114         * ido.el (ido-read-internal): Use the default history var
21115         minibuffer-history if no HISTORY is specified.
21117 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
21119         * net/imap.el (imap-shell-open, imap-process-connection-type):
21120         Use imap-process-connection-type for 'shell' streams as well as
21121         Kerberos, SSL, other subprocesses.
21123 2011-03-28  Leo Liu  <sdl.web@gmail.com>
21125         * abbrev.el (abbrev-table-empty-p): New function.
21126         (prepare-abbrev-list-buffer): Place empty abbrev tables after
21127         nonempty ones.  (Bug#5937)
21129 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
21131         * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
21133 2011-03-27  Leo Liu  <sdl.web@gmail.com>
21135         * ansi-color.el (ansi-color-names-vector): Allow cons cell value
21136         for foreground and background colors.
21137         (ansi-color-make-color-map): Adapt.
21139 2011-03-25  Leo Liu  <sdl.web@gmail.com>
21141         * midnight.el (midnight-time-float): Remove.  Note it calculates
21142         the microsecond component incorrectly and seconds-to-time does the
21143         same job.
21144         Remove redundant (require 'timer).
21146         * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
21147         (ido-completions): Remove unused arguments.  (Bug#8329)
21149 2011-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
21151         * minibuffer.el (completion--flush-all-sorted-completions):
21152         Remove itself from hook.
21153         (completion-at-point): Let the functions perform the completion
21154         immediately and return nil or t.
21155         * comint.el (comint-dynamic-complete-functions): Now identical to
21156         completion-at-point-functions.
21157         (comint-dynamic-list-input-ring): Remove unused var `index'.
21158         (comint--match-partial-filename, comint--unquote&expand-filename):
21159         New funs, split from comint-match-partial-filename.
21160         (comint-dynamic-complete): Use completion-at-point.
21161         (comint-dynamic-complete-filename): Use comint--match-partial-filename.
21163 2011-03-24  Drew Adams  <drew.adams@oracle.com>
21165         * thingatpt.el: Support `defun'.
21167 2011-03-23  Leo Liu  <sdl.web@gmail.com>
21169         * abbrevlist.el: Move to obsolete/abbrevlist.el.
21171         * help-mode.el (help-mode-finish): Tweak regexp.
21173 2011-03-23  Glenn Morris  <rgm@gnu.org>
21175         * eshell/esh-opt.el (eshell-eval-using-options):
21176         Do not bind unused local variable `eshell-option-stub'.
21178         * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
21180 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
21182         * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
21183         keymap variable in `with-no-warnings' to avoid a warning when the
21184         keymap has been already `defconst'ed.
21186 2011-03-22  Leo Liu  <sdl.web@gmail.com>
21188         * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
21189         encode all chars in abbrevs; otherwise use emacs-mule or
21190         utf-8-emacs.  (Bug#8308)
21192 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
21194         * simple.el (backward-delete-char-untabify):
21195         Avoid warning about using `delete-backward-char'.
21197         * image.el (image-type-file-name-regexps): Make it variable.
21198         `imagemagick-register-types' modifies it, and the user may want
21199         to add new extensions for known image types.
21200         (imagemagick-register-types): Throw error if not using ImageMagick.
21202 2011-03-22  Leo Liu  <sdl.web@gmail.com>
21204         * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
21205         located before rcirc-prompt-end-marker.
21206         (rcirc-complete): Error if point is not after rcirc prompt.
21207         Handle the case when table is nil.
21208         (rcirc-user-authenticated): Define to fix compiler warning.
21210 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
21212         * custom.el (custom--inhibit-theme-enable): Make it affect only
21213         custom-theme-set-variables and custom-theme-set-faces.
21214         (provide-theme): Ignore custom--inhibit-theme-enable.
21215         (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
21216         (custom-enabling-themes): Delete variable.
21217         (enable-theme): Accept only loaded themes as arguments.
21218         Ignore the special custom-enabled-themes variable.
21219         (custom-enabled-themes): Forbid themes from setting this.
21220         Eliminate use of custom-enabling-themes.
21221         (custom-push-theme): Quote "changed" custom var entry.
21223 2011-03-21  Leo Liu  <sdl.web@gmail.com>
21225         * ido.el (ido-read-internal): Add ido-selected to history instead
21226         of user input.
21228 2011-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21230         * subr.el (deferred-action-list, deferred-action-function):
21231         Mark obsolete.
21233 2011-03-21  Leo Liu  <sdl.web@gmail.com>
21235         * vc/log-view.el: Remove (require 'wid-edit), not needed after the
21236         change on 2011-02-13 (bug#8309).
21238         * minibuffer.el (read-file-name-function): Change default value.
21239         (read-file-name--defaults): Rename from read-file-name-defaults.
21240         (read-file-name-default): Rename from read-file-name.
21241         (read-file-name): Call read-file-name-function.
21243 2011-03-21  Glenn Morris  <rgm@gnu.org>
21245         * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
21246         Doc fixes.
21248 2011-03-21  Chong Yidong  <cyd@stupidchicken.com>
21250         * cus-theme.el: Add missing provide statement.
21251         (customize-create-theme): Extract theme value correctly.
21252         (custom-theme-visit-theme): Autoload.
21253         (customize-create-theme): Prompt before inserting default faces.
21255 2011-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
21257         * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
21258         units and musical notes.
21260 2011-03-20  Leo Liu  <sdl.web@gmail.com>
21262         * ido.el (ido-read-internal): Use completing-read-default.
21263         (ido-completing-read): Fix compatibility with completing-read.
21265 2011-03-20  Christian Ohler  <ohler@gnu.org>
21267         * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
21268         (ert-delete-all-tests): Use `called-interactively-p' rather than
21269         `interactive-p'.
21270         (ert--make-xrefs-region): Respect END.
21272 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
21274         * dired-aux.el (dired-create-directory): Signal an error if the
21275         directory already exists (Bug#8246).
21277         * facemenu.el (list-colors-display): Call list-faces-display
21278         inside with-help-window.
21279         (list-colors-print): Use display property to align the final
21280         column, instead of checking window-width.
21282 2011-03-19  Eli Zaretskii  <eliz@gnu.org>
21284         * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
21285         windows-nt systems.
21286         (emerge-protect-metachars): Quote correctly for ms-dos and
21287         windows-nt systems.
21289 2011-03-19  Ralph Schleicher  <rs@ralph-schleicher.de>
21291         * info.el (info-initialize): Replace all uses of `:' with
21292         path-separator for compatibility with non-Unix systems.
21293         Cache quoting of path-separator.  (Bug#8258)
21295 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
21297         * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
21298         (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
21299         (mouse-avoidance-mode): Fix typos in docstrings.
21301 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
21303         * startup.el (package-subdirectory-regexp): Move from package.el.
21304         Omit \\` and \\', and let callers add them.
21306         * emacs-lisp/package.el (package-strip-version)
21307         (package-load-all-descriptors): Add \\` and \\' to
21308         package-subdirectory-regexp before using it.
21309         (package-untar-buffer): New arg DIR; ensure that file untars only
21310         into this expected directory.  Remove superfluous delete-region.
21311         (package-unpack): Caller changed.
21312         (package-tar-file-info): Use package-subdirectory-regexp.
21314 2011-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
21316         * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
21317         diff-mode-shared-map (bug#8284).
21318         (diff-mode-shared-map): Re-introduce some bindings that were problematic.
21320 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21322         * calendar/time-date.el (format-seconds): Use assoc instead of
21323         assoc-string, since assoc-string doesn't exist in XEmacs.
21325 2011-03-17  Juanma Barranquero  <lekktu@gmail.com>
21327         * custom.el (custom-known-themes): Reflow docstring.
21328         (custom-theme-load-path): Fix typo in docstring.
21329         (load-theme): Fix typo in error message.
21330         (custom-available-themes, custom-variable-theme-value):
21331         Use `let', not `let*'.
21333 2011-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
21335         * calc/README: Mention inclusion of musical notes.
21337         * calc/calc-units.el (calc-lu-quant): Rename from
21338         `calc-logunits-quantity'.
21339         (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
21340         (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
21341         (calc-db): Rename from `calc-dblevel'.
21342         (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
21343         (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
21344         (calc-np): Rename from `calc-nplevel'.
21345         (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
21346         (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
21347         (calc-lu-plus): Rename from `calc-logunits-add'.
21348         (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
21349         (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
21350         (calc-lu-minus): Rename from `calc-logunits-sub'.
21351         (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
21352         (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
21353         (calc-lu-times): Rename from `calc-logunits-mul'.
21354         (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
21355         (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
21356         (calc-lu-divide): Rename from `calc-logunits-div'.
21357         (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
21358         (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
21360         * calc/calc-ext.el (calc-init-extensions): Update the names of the
21361         functions being autoloaded.
21363         * calc/calc.el (calc-lu-power-reference): Rename from
21364         `calc-logunits-power-reference'.
21365         (calc-lu-field-reference): Rename from
21366         `calc-logunits-field-reference'.
21368         * calc/calc-help.el (calc-l-prefix-help):
21369         Mention musical note functions.
21371 2011-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
21373         * minibuffer.el (completion-all-sorted-completions):
21374         Use :completion-cycle-penalty text property if present.
21376 2011-03-16  Ken Manheimer  <ken.manheimer@gmail.com>
21378         * allout.el (allout-yank-processing): Adjust for new rebulleting
21379         regime so bullet being yanked is used without prompting the user
21380         for a choice.
21382 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
21384         * startup.el (command-line): Warn the user that _emacs is deprecated.
21386 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
21388         * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
21389         (delphi-verbose, delphi-comment-face, delphi-string-face)
21390         (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
21391         (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
21392         (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
21393         (delphi-new-comment-line, delphi-font-lock-defaults)
21394         (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
21395         Fix typos in docstrings.
21397 2011-03-15  Ken Manheimer  <ken.manheimer@gmail.com>
21399         * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
21400         Invert the roles of character and string values for INSTEAD, so a
21401         string is used for the more common case of a defaulting prompt.
21403 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21405         * progmodes/ruby-mode.el (ruby-backward-sexp):
21406         * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
21407         * play/gamegrid.el (gamegrid-make-face):
21408         * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
21409         (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
21410         * notifications.el (notifications-notify):
21411         * net/xesam.el (xesam-search-engines):
21412         * net/quickurl.el (quickurl-list-insert):
21413         * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
21415 2011-03-15  Chong Yidong  <cyd@stupidchicken.com>
21417         * startup.el (command-line): Update package subdirectory regexp.
21419 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21421         * allout.el (allout-abbreviate-flattened-numbering)
21422         (allout-mode-deactivate-hook): Fix up obsolescence "date".
21424         * subr.el (read-char-choice): Only show the cursor after the prompt,
21425         not after the answer.
21427 2011-03-15  Kevin Ryde  <user42@zip.com.au>
21429         * help-fns.el (variable-at-point): Skip leading quotes, if any
21430         (bug#8253).
21432 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21434         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
21435         warning message.
21437 2011-03-14  Michael Albinus  <michael.albinus@gmx.de>
21439         * shell.el (shell): When called interactively, offer to change the
21440         shell file name on remote hosts.
21442 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
21444         * net/ldap.el (ldap-search-internal): Add `auth-source-search'
21445         integration for LDAP parameters.  The host, base, user or binddn,
21446         and secret tokens can be specified in a netrc file, for instance.
21447         This is optional because an `auth-source' parameter must be
21448         specified in the search attributes.
21450 2011-03-13  Juanma Barranquero  <lekktu@gmail.com>
21452         * help.el (describe-mode): Link to the mode's definition (bug#8185).
21454 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
21456         * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
21457         into declaration.  Remove redundant and harmful binding.
21459 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
21461         * files.el (file-ownership-preserved-p): Pass `integer' as an
21462         explicit 2nd argument to `file-attributes'.  If the file's owner
21463         is the Administrators group on Windows, and the current user is
21464         Administrator, consider that a match.
21466         * server.el (server-ensure-safe-dir): Consider server directory
21467         safe on MS-Windows if its owner is the Administrators group while
21468         the current Emacs user is Administrator.  Use `=' to compare
21469         numerical UIDs, since they could be integers or floats.
21471 2011-03-12  Juanma Barranquero  <lekktu@gmail.com>
21473         * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
21475 2011-03-12  Michael Albinus  <michael.albinus@gmx.de>
21477         Sync with Tramp 2.2.1.
21479         * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
21481         * net/trampver.el: Update release number.
21483 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
21485         * progmodes/compile.el (compilation--previous-directory): Fix up
21486         various nil/dead-marker mismatches (bug#8014).
21487         (compilation-directory-properties, compilation-error-properties):
21488         Don't call it at a position past the one we're about to change.
21490         * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
21491         Disable obsolescence warnings in the file that declares it.
21493 2011-03-11  Ken Manheimer  <ken.manheimer@gmail.com>
21495         * allout-widgets.el (allout-widgets-tally):
21496         Initialize allout-widgets-tally as a hash table rather than nil to
21497         prevent mode-line redisplay warnings.  Also, clarify the module
21498         description and fix a comment typo.
21500 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
21502         * help-fns.el (describe-variable): Don't complete keywords.
21503         Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
21505 2011-03-10  Chong Yidong  <cyd@stupidchicken.com>
21507         * emacs-lisp/package.el (package-version-join): Impose a standard
21508         string representation for pre/alpha/beta version lists.
21509         (package-unpack-single): Standardize the directory name by passing
21510         it through package-version-join.
21511         (package-strip-rcs-id): Accept any version string that does not
21512         signal an error in version-to-list.
21514 2011-03-10  Michael Albinus  <michael.albinus@gmx.de>
21516         * simple.el (delete-trailing-whitespace): Return nil for the
21517         benefit of `write-file-functions'.
21519 2011-03-10  Glenn Morris  <rgm@gnu.org>
21521         * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
21523         * vc/vc-git.el (vc-git-program): New option.
21524         (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
21525         (vc-git--call): Use it.
21527         * eshell/esh-util.el (eshell-condition-case): Doc fix.
21529         * cus-edit.el (Custom-newline): If no button at point, look
21530         for a subgroup button at start-of-line.  (Bug#2298)
21532         * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
21534 2011-03-10  Julien Danjou  <julien@danjou.info>
21536         * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
21537         `cursor-type' is nil.
21539 2011-03-09  Jay Belanger  <jay.p.belanger@gmail.com>
21541         * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
21543 2011-03-09  Ken Manheimer  <ken.manheimer@gmail.com>
21545         * allout.el: Change so yank of distinctive-bullet items
21546         preserves the existing header prefix, rebulleting it if necessary,
21547         rather than replacing it.  This is necessary for proper operation
21548         of cooperative addons like allout-widgets.
21549         (allout-make-topic-prefix, allout-rebullet-heading):
21550         Change SOLICIT arg to INSTEAD, and interpret additionally a string
21551         value as alternate bullet to be used, instead of prompting the user
21552         for a bullet character.
21554 2011-03-09  Michael Albinus  <michael.albinus@gmx.de>
21556         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21557         Do not use `tramp-file-name-port', because this returns also
21558         `tramp-default-port'.
21560 2011-03-09  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
21562         * net/rcirc.el (rcirc-handler-001): Remove useless
21563         with-rcirc-process-buffer.
21564         (rcirc-check-auth-status): Swap arguments to string-match.
21566 2011-03-09  Glenn Morris  <rgm@gnu.org>
21568         * shell.el (shell-mode):
21569         Set comint-input-ring-size from HISTSIZE.  (Bug#7889)
21571         * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
21572         Check for GDBHISTFILE, HISTSIZE, etc.  (Bug#7889)
21574 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
21576         * emacs-lisp/package.el (package-refresh-contents)
21577         (package-menu-execute): Use condition-case-no-debug.
21579 2011-03-08  Michael Albinus  <michael.albinus@gmx.de>
21581         * simple.el (shell-command-to-string): Use `process-file'.
21583         * emacs-lisp/package.el (package-tar-file-info): Handle also
21584         remote files.
21586         * emacs-lisp/package-x.el (package-upload-buffer-internal):
21587         Use `equal' for upload base check.
21589 2011-03-08  Arni Magnusson  <arnima@hafro.is>  (tiny change)
21591         * textmodes/texinfo.el (texinfo-environments):
21592         Add deftypecv, deftypeivar, deftypemethod, deftypeop, html.  (Bug#2783)
21594 2011-03-08  Glenn Morris  <rgm@gnu.org>
21596         * cus-start.el (cursor-in-non-selected-windows):
21597         Fix :set quoting oddness.  (Bug#8192)
21599         * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
21600         in some setf expressions.  (Bug#2159)
21602 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
21604         * custom.el (custom-available-themes): Return themes in
21605         alphabetical order.
21607 See ChangeLog.15 for earlier changes.
21609 ;; Local Variables:
21610 ;; coding: utf-8
21611 ;; End:
21613   Copyright (C) 2011-2013 Free Software Foundation, Inc.
21615   This file is part of GNU Emacs.
21617   GNU Emacs is free software: you can redistribute it and/or modify
21618   it under the terms of the GNU General Public License as published by
21619   the Free Software Foundation, either version 3 of the License, or
21620   (at your option) any later version.
21622   GNU Emacs is distributed in the hope that it will be useful,
21623   but WITHOUT ANY WARRANTY; without even the implied warranty of
21624   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21625   GNU General Public License for more details.
21627   You should have received a copy of the GNU General Public License
21628   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.