Fix display when left-fringe/right-fringe display spec is invalid.
[emacs.git] / lisp / ChangeLog
blobe6183d92705ea3ac97f1b790fdf99a11330c8d07
1 2012-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * net/rlogin.el (rlogin-mode-map): Fix last change.
5 2012-05-09  Jason L. Wright  <jason.wright@inl.gov>  (tiny change)
7         * mail/smtpmail.el (smtpmail-send-command): Send the command and
8         the following \r\n using a single `process-send-string', since the
9         Lotus SMTP server refuses to accept any commands if they are sent
10         with two `process-send-string's (bug#11444).
12 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
14         * shell.el (shell-parse-pcomplete-arguments): Obey
15         pcomplete-arg-quote-list inside double-quoted args as well (bug#11348).
17 2012-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
19         * shell.el (shell-completion-vars): Fix last change (bug#11348).
21 2012-05-07  Chong Yidong  <cyd@gnu.org>
23         * ansi-color.el (ansi-color-process-output): Check for validity of
24         comint-last-output-start before using it.  This avoids a bad
25         interaction with gdb-mi's input/output buffer.
27 2012-05-06  Glenn Morris  <rgm@gnu.org>
29         * files.el (dir-locals-read-from-file):
30         Mention dir-locals in any error message.
32 2012-05-06  Chong Yidong  <cyd@gnu.org>
34         * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
35         package (Bug#11410).
37 2012-05-05  Chong Yidong  <cyd@gnu.org>
39         * emacs-lisp/package.el (package-buffer-info): Avoid putting local
40         variables into description.
42 2012-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
44         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
45         shell-delimiter-argument-list (bug#11348).
46         (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
48 2012-05-04  Chong Yidong  <cyd@gnu.org>
50         * select.el (xselect--encode-string): Always use utf-8 for TEXT on
51         Nextstep.
53 2012-05-03  Kenichi Handa  <handa@m17n.org>
55         * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
56         decoding, and show a warning message without signalling an error
57         (Bug#11282).
59 2012-04-30  Eli Zaretskii  <eliz@gnu.org>
61         * mail/rmail.el (rmail-yank-current-message): Use the encoding of
62         the yanked message in preference to the default value of
63         buffer-file-coding-system.
65 2012-04-30  Martin Rudalics  <rudalics@gmx.at>
67         * window.el (display-buffer--action-function-custom-type):
68         Fix entry.
70 2012-04-27  Alan Mackenzie  <acm@muc.de>
72         * progmodes/cc-defs.el (c-version): Update to 5.32.3.
74 2012-04-27  Chong Yidong  <cyd@gnu.org>
76         * subr.el (read-key): Avoid running filter function when setting
77         up temporary tool bar entries (Bug#9922).
79 2012-04-26  Andreas Schwab  <schwab@linux-m68k.org>
81         * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
82         (Bug#11344)
84 2012-04-24  Chong Yidong  <cyd@gnu.org>
86         * select.el (xselect--encode-string): New function, split from
87         xselect-convert-to-string.
88         (xselect-convert-to-string): Use it.
89         (xselect-convert-to-filename, xselect-convert-to-os)
90         (xselect-convert-to-host, xselect-convert-to-user): Ensure that
91         returned strings are properly encoded (Bug#11315).
93 2012-04-22  Chong Yidong  <cyd@gnu.org>
95         * simple.el (delete-active-region): Move to killing custom group.
97 2012-04-21  Andreas Schwab  <schwab@linux-m68k.org>
99         * progmodes/which-func.el (which-func-current): Quote %
100         characters for mode-line processing.
102 2012-04-21  Chong Yidong  <cyd@gnu.org>
104         * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
105         reaching eob (Bug#11286).
107 2012-04-20  Richard Stallman  <rms@gnu.org>
109         Fix logic for returning to and yanking from Rmail buffer.
111         * mail/rmail.el (rmail-start-mail):
112         Pass (rmail-mail-return...) for the return-action.
113         Pass (rmail-yank-current-message...) for the yank-action.
114         (rmail-yank-current-message): New function.
115         (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
116         (rmail-reply): Likewise.
117         (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
119         * mail/sendmail.el (mail-bury): Choose the first rmail-mode
120         buffer, not the last.  Reject temp buffers.  Use the rmail-mode
121         buffer, not newbuf.
123 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
125         * progmodes/gdb-mi.el (gdb-control-level): New variable.
126         (gdb): Make it buffer-local and init to zero.
127         (gdb-control-commands-regexp): New variable.
128         (gdb-send): Don't wrap in "-interpreter-exec console" if
129         gdb-control-level is positive.  Increment gdb-control-level
130         whenever the command matches gdb-control-commands-regexp, and
131         decrement it each time the command is "end".  (Bug#11279)
133 2012-04-20  Martin Rudalics  <rudalics@gmx.at>
135         * window.el (adjust-window-trailing-edge, enlarge-window)
136         (shrink-window, window-resize):
137         * mouse.el (mouse-drag-line): Fix resizing of minibuffer
138         windows (Bug#11276).
140 2012-04-20  Dan Nicolaescu  <dann@gnu.org>
142         * battery.el (battery-echo-area-format): Display remaining time
143         for sysfs backend too (Bug#11269).
144         (battery-linux-sysfs): Fix conditional for the charge.
146 2012-04-20  Chong Yidong  <cyd@gnu.org>
148         * progmodes/gdb-mi.el (gdb): Revert 2012-04-19 change.
149         (gdb-inferior-io--init-proc): New function.
150         (gdb-init-1): Use it.
151         (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
152         responsible for allocating a new pty and hooking it to gdb when
153         the old pty gets an EIO due to process exit.
154         (gdb-delchar-or-quit): New command.  Bind it in gdb-mi buffers.
155         (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
156         (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
158 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
160         * window.el (window-min-size, window-sizable, window-min-delta)
161         (window-max-delta, window--resizable, window-resizable)
162         (window-total-size, window-full-height-p, window-full-width-p)
163         (window-in-direction, window--resize-mini-window, window-resize)
164         (window--resize-child-windows-normal)
165         (window--resize-child-windows, window--resize-siblings)
166         (window--resize-this-window, adjust-window-trailing-edge)
167         (enlarge-window, shrink-window): Doc fixes.
169 2012-04-19  Chong Yidong  <cyd@gnu.org>
171         * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
172         New function to call delete-process on the gdb-inferior buffer's pty.
173         (gdb-reset): Use it, instead of relying on kill-buffer to kill the
174         pty process (Bug#11273).
175         (gdb-update): New arg to suppress talking to the gdb process.
176         (gdb-done-or-error): Use it.
177         (gdb-stopped-functions): Rename from gdb-stopped-hooks.
178         (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
179         sentinel not being called.
181         * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
183 2012-04-18  Chong Yidong  <cyd@gnu.org>
185         * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
187 2012-04-18  Glenn Morris  <rgm@gnu.org>
189         * net/network-stream.el (open-network-stream): Doc fix.
191 2012-04-17  Chong Yidong  <cyd@gnu.org>
193         * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
195 2012-04-16  Alan Mackenzie  <acm@muc.de>
197         Ensure searching for keywords is case sensitive.
199         * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
200         (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
201         (c-defun-name, c-mark-function, c-cpp-define-name)
202         (c-comment-indent, c-scan-conditionals, c-indent-defun)
203         (c-context-line-break): bind case-fold-search to nil.
205         * progmodes/cc-mode.el (c-font-lock-fontify-region):
206         bind case-fold-search to nil.
208 2012-04-16  Chong Yidong  <cyd@gnu.org>
210         * mail/sendmail.el (mail-bury): Call return action with the right
211         Rmail buffer (Bug#11242).
213 2012-04-15  Chong Yidong  <cyd@gnu.org>
215         * server.el (server-process-filter): Handle corner case where both
216         tty and nowait options are present (Bug#11102).
218 2012-04-15  Glenn Morris  <rgm@gnu.org>
220         * simple.el (process-file-side-effects): Doc fix.
222 2012-04-14  Glenn Morris  <rgm@gnu.org>
224         * international/mule-cmds.el (set-language-environment): Doc fix.
226 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
228         Avoid the use of ((lambda ...) ...) in lexical-binding code.
229         * emacs-lisp/easy-mmode.el (define-minor-mode):Use funcall (bug#11241).
231 2012-04-13  Kim F. Storm  <storm@cua.dk>
233         * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
234         exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
236 2012-04-12  Chong Yidong  <cyd@gnu.org>
238         * custom.el (custom-theme-set-variables): Doc fix.
240 2012-04-12  Glenn Morris  <rgm@gnu.org>
242         * international/mule.el (set-auto-coding-for-load): Doc fix.
244 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
246         * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
247         Reported by Noah Friedman.  Backport from trunk.
249 2012-04-11  Alan Mackenzie  <acm@muc.de>
251         * progmodes/cc-menus.el (cc-imenu-objc-generic-expression):
252         Make imenu work again for Objective C Mode.  Correct the *-index
253         values, these having been disturbed by a previous change in 2011-08.
255         * progmodes/cc-engine.el (c-before-change-check-<>-operators):
256         Correct two search limits.
258 2012-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
260         * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
262 2012-04-10  Andreas Schwab  <schwab@linux-m68k.org>
264         * international/characters.el: Fix sorting.
266 2012-04-10  Eli Zaretskii  <eliz@gnu.org>
268         * international/characters.el: Add more missing Latin case pairs.
270 2012-04-10  Andreas Schwab  <schwab@linux-m68k.org>
272         * international/characters.el: Recover lost case pairs.
274 2012-04-10  Glenn Morris  <rgm@gnu.org>
276         * files.el (dir-locals-set-class-variables): Doc fix.
278 2012-04-09  Eli Zaretskii  <eliz@gnu.org>
280         * international/characters.el: Add set-case-syntax-pair call for
281         LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
282         counterpart.  (Bug#11209)
284         * simple.el (shell-command-on-region): Doc fix.  (Bug#11208)
286 2012-04-09  Glenn Morris  <rgm@gnu.org>
288         * calendar/holidays.el (calendar-check-holidays): Doc fix.
290 2012-04-08  Eli Zaretskii  <eliz@gnu.org>
292         * textmodes/ispell.el (ispell-dictionary-base-alist): Add data for
293         Hebrew.
295 2012-04-08  Chong Yidong  <cyd@gnu.org>
297         * net/rcirc.el (rcirc-cmd-quit): Revert 2012-03-18 change
298         (Bug#11192).
300 2012-04-07  Glenn Morris  <rgm@gnu.org>
302         * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
304 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
306         * minibuffer.el (completion-in-region-mode-map):
307         Bind completion-help-at-point to M-? rather than ?.  (Bug#11182)
309 2012-04-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
311         * window.el (shrink-window): Mention the `window-min-height'
312         variable in the doc string.
314 2012-04-05  Bastien Guerry  <bzg@altern.org>
316         * color.el (color-lighten-name): Fix typo.
318 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
320         * server.el (server--on-display-p): New function.
321         (server--on-display-p): Use it.
323 2012-04-04  Gabor Vida  <vidagabor@gmail.com>  (tiny change)
325         * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
326         (bug#11145).
328 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
330         * comint.el (comint--common-quoted-suffix): Check string boundary
331         before comparing (bug#11158).
332         * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
334 2012-04-04  Chong Yidong  <cyd@gnu.org>
336         * minibuffer.el (completion-extra-properties): Doc fix.
338         * subr.el (delayed-warnings-hook): Doc fix.
340 2012-04-04  Daiki Ueno  <ueno@unixuser.org>
342         * epa.el (epa--select-keys): Bind C-c C-c to finish the key
343         selection (Bug#11159).
344         (epa-insert-keys): Inform that the default public key will be
345         exported if no key is selected.
347 2012-04-04  Richard Stallman  <rms@gnu.org>
349         * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
351 2012-04-03  Chong Yidong  <cyd@gnu.org>
353         * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
354         mail-insert-file, not its obsolete alias mail-attach-file.
356 2012-04-03  Michael Albinus  <michael.albinus@gmx.de>
358         * notifications.el (notifications-notify): Fix docstring.
360 2012-04-02  Glenn Morris  <rgm@gnu.org>
362         * emacs-lisp/authors.el (authors-aliases): Another addition.
364 2012-04-02  Michael Albinus  <michael.albinus@gmx.de>
366         * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
367         `tramp-compat-call-process' instead of `tramp-local-call-process'.
368         Reported by Magnus Henoch <magnus.henoch@gmail.com>.
370 2012-04-01  Chong Yidong  <cyd@gnu.org>
372         * files.el (file-in-directory-p): Rename from file-subdir-of-p.
373         Handle root directory properly.
374         (copy-directory): Caller changed.
376         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
377         * net/tramp.el (tramp-file-name-for-operation): Callers changed.
379 2012-03-31  Glenn Morris  <rgm@gnu.org>
381         * term/xterm.el (xterm-extra-capabilities): Doc fix.
383         * language/indian.el ("Devanagari"): Fix typo.  (Bug#11103)
385         * calendar/calendar.el (calendar-window-list)
386         (calendar-hide-window): Restore.  (Bug#11140)
387         (calendar-exit): Use calendar-window-list, calendar-hide-window again.
389         * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
391 2012-03-30  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
393         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
394         Check if file is a symlink (Bug#10489).
396         * files.el (copy-directory): Likewise.
398 2012-03-30  Chong Yidong  <cyd@gnu.org>
400         * image.el (imagemagick-types-inhibit)
401         (imagemagick-register-types): Doc fix.
403 2012-03-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
405         * ispell.el (ispell-get-extended-character-mode): Disable
406         extended-char-mode for hunspell. hunspell does not support it and
407         treats ~word as ordinary words in pipe mode.
409 2012-03-30  Glenn Morris  <rgm@gnu.org>
411         * tutorial.el (help-with-tutorial): Ensure local variables don't
412         happen to make the buffer read-only.  (Bug#11127)
414 2012-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
416         * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
417         (perl-calculate-indent): Return `noindent' in strings.
419 2012-03-28  Sam Steingold  <sds@gnu.org>
421         * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
422         instead of the broken adhockery which does not prevent calendar
423         buffers from being displayed at random after exit.
424         (calendar-window-list, calendar-hide-window): Remove the broken
425         adhockery.
427 2012-03-28  Glenn Morris  <rgm@gnu.org>
429         * replace.el (query-replace-map): Doc fix.
431 2012-03-28  Andreas Schwab  <schwab@linux-m68k.org>
433         * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
434         contents.  (Bug#11109)
436 2012-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
438         * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
439         (bug#11077).
440         (avl-tree--check, avl-tree--check-node): New funs.
442 2012-03-27  Martin Rudalics  <rudalics@gmx.at>
444         * window.el (switch-to-visible-buffer): New option.
445         (switch-to-prev-buffer, switch-to-next-buffer):
446         Observe switch-to-visible-buffer.  Make sure that checking for a window
447         showing a buffer already is done on the same frame.
449 2012-03-27  Glenn Morris  <rgm@gnu.org>
451         * startup.el (mail-host-address): Doc fix.
453 2012-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
455         * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
456         than 197 variables.
458 2012-03-26  Ami Fischman  <ami@fischman.org>
460         * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
462 2012-03-26  Glenn Morris  <rgm@gnu.org>
464         * files.el (save-buffers-kill-emacs): Doc fix.
466         * startup.el (normal-top-level, command-line, command-line-1):
467         Give them doc strings.
469 2012-03-25  Eli Zaretskii  <eliz@gnu.org>
471         * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
472         of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
474 2012-03-25  Chong Yidong  <cyd@gnu.org>
476         * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
477         theme if it was previously enabled before (Bug#11031).
479         * cus-theme.el (custom-theme-write-faces): Retrieve current face
480         spec with custom-face-get-current-spec if its :shown-value is not
481         determined yet (Bug#9337).
482         (customize-create-theme, custom-theme-revert): Doc fixes.
484         * button.el (button-at): Minor addition to docstring.
486 2012-03-24  Simon Leinen  <simon.leinen@gmail.com>
488         * vc/vc.el (vc-merge): Fix a prompt.
490 2012-03-24  Chong Yidong  <cyd@gnu.org>
492         * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
493         point (Bug#9623).
495         * button.el (button-at): Minor addition to docstring.
497 2012-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
499         * newcomment.el (comment-choose-indent): No space after BOL.
501 2012-03-22  Sam Steingold  <sds@gnu.org>
503         * window.el (switch-to-prev-buffer): Revert last patch because the
504         bug turned out to be an advertised feature (Elisp manual 28.14).
506 2012-03-22  Glenn Morris  <rgm@gnu.org>
508         * vc/vc-bzr.el (vc-bzr-status-switches): New option.  (Bug#6724)
509         (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
511 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
513         * net/network-stream.el (network-stream-open-starttls): Make error
514         message under Windows be less misleading.
516 2012-03-22  Liang Wang  <netcasper@gmail.com>  (tiny change)
518         * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
519         understands (bug#9942).
521 2012-03-22  Chong Yidong  <cyd@gnu.org>
523         * simple.el (end-of-visible-line): Handle return value of
524         next-single-property-change properly (Bug#9371).
526 2012-03-22  Kenichi Handa  <handa@m17n.org>
528         * international/quail.el (quail-insert-kbd-layout): Fix previous
529         change.  To avoid unwanted bidi reordering, use
530         bidi-string-mark-left-to-right instead of inserting LRO and PDF.
532 2012-03-21  Dmitry Gutov  <dgutov@yandex.ru>
534         * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
535         (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
536         (ruby-beginning-of-indent): Be more careful with the difference
537         between word-boundary and symbol boundary.
538         (ruby-mode-syntax-table): Make : a symbol constituent.
540 2012-03-21  Andreas Politz  <politza@fh-trier.de>
542         * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
544 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
546         * progmodes/etags.el (tags-completion-at-point-function):
547         Improve last fix.
549         * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
551 2012-03-21  Sam Steingold  <sds@gnu.org>
553         * progmodes/etags.el (tags-completion-at-point-function):
554         Avoid the error when point is inside the pattern.
556 2012-03-21  John Yates  <john@yates-sheets.org>  (tiny change)
558         * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
559         line (Bug#10855).
561 2012-03-21  Drew Adams  <drew.adams@oracle.com>
563         * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
565 2012-03-21  Anmol Khirbat  <anmol@khirbat.net>  (tiny change)
567         * ido.el (ido-set-current-directory, ido-read-internal)
568         (ido-choose-completion-string, ido-completion-help): Handle nil
569         value of ido-completion-buffer (Bug#11008).
571 2012-03-21  Sam Steingold  <sds@gnu.org>
573         * window.el (switch-to-prev-buffer): Do not switch to a visible
574         window previous buffer, just like with the frame previous buffers.
576 2012-03-21  Chong Yidong  <cyd@gnu.org>
578         * faces.el (make-face, make-empty-face, copy-face):
579         * face-remap.el (face-remap-add-relative, face-remap-set-base):
580         Doc fixes.
582 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
584         * wid-edit.el (widget-complete-field): Remove (bug#11051).
585         (widget-complete): Remove broken use of it.
587 2012-03-20  Chong Yidong  <cyd@gnu.org>
589         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
590         Use string-width and truncate-string-width to handle arbitrary
591         characters.
593 2012-03-20  Tassilo Horn  <tassilo@member.fsf.org>
595         * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
596         to draw rectangles, not squares.  (Regression introduced by revno
597         2011-03-02T03:48:01Z!cyd@stupidchicken.com)
599 2012-03-18  Chong Yidong  <cyd@gnu.org>
601         * faces.el (face-spec-reset-face): Don't call display-graphic-p if
602         it is not yet defined (for temacs).
604 2012-03-18  Leo Liu  <sdl.web@gmail.com>
606         * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
608 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
610         * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
611         (ispell-choices-win-default-height, ispell-silently-savep)
612         (ispell-dictionary-alist, ispell-encoding8-command)
613         (ispell-check-version, ispell-aspell-find-dictionary)
614         (ispell-valid-dictionary-list, ispell-words-keyword)
615         (ispell-get-word, ispell-internal-change-dictionary)
616         (ispell-region, ispell-skip-region-list)
617         (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
618         (ispell-process-line, ispell-minor-mode, ispell-minor-check)
619         (ispell-message-text-end, ispell-message)
620         (ispell-buffer-local-parsing): Doc fix.
622 2012-03-13  Jambunathan K  <kjambunathan@gmail.com>
624         * htmlfontify.el: Add support for code block fontification for ODT
625         export (Bug #9914).
626         (hfy-optimisations): Define new option
627         `body-text-only'
628         (hfy-fontify-buffer): Honor above setting.
629         (hfy-begin-span, hfy-end-span): New routines factored out form
630         `hfy-fontify-buffer'.
631         (hfy-begin-span-handler, hfy-end-span-handler): New variables
632         that permit insertion of custom tags.
633         (hfy-fontify-buffer): Use above handlers.
634         (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
635         (hfy-face-to-css): Re-defined to be a variable.
636         (hfy-compile-stylesheet): Modify.  Allow stylesheet to be built
637         over multiple runs. This is made possible by having the caller let
638         bind a special variable `hfy-user-sheet-assoc'.
639         (htmlfontify-string): New defun.
640         (hfy-compile-face-map): Make sure that the last char in the
641         buffer is correctly fontified.
642         (hfy-face-resolve-face): Whitespace only change.
644 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
646         * textmodes/ispell.el (ispell-get-decoded-string): Make the error
647         message more clear.
649 2012-03-16  Leo Liu  <sdl.web@gmail.com>
651         * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
653 2012-03-16  Alan Mackenzie  <acm@muc.de>
655         Further optimise the handling of large macros.
657         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
658         limit to a call of `c-literal-limits'.
659         (c-determine-+ve-limit): New function.
660         (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
661         (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
662         In CASE 5B, restrict a search limit to 500.
663         (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
665         * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
666         Restrict macro bounds to +-500 from after-change's BEG END.
668 2012-03-16  Leo Liu  <sdl.web@gmail.com>
670         * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
672 2012-03-16  Aaron S. Hawley  <Aaron.S.Hawley@gmail.com>
674         * tar-mode.el (tar-mode): Fix saving by conditionally undoing
675         `special-mode' setting of `buffer-read-only'.  (Bug#11010)
677 2012-03-16  Glenn Morris  <rgm@gnu.org>
679         * view.el (view-buffer, view-buffer-other-window)
680         (view-buffer-other-frame): Doc fixes re special mode-class.
682         * subr.el (eval-after-load): If named feature is provided not from
683         a file, run after-load forms.  (Bug#10946)
685         * calendar/calendar.el (calendar-insert-at-column):
686         Handle non-unit-width characters a bit better.  (Bug#10978)
688 2012-03-15  Chong Yidong  <cyd@gnu.org>
690         * emacs-lisp/ring.el (ring-extend): New function.
691         (ring-insert+extend): Extend the ring correctly (Bug#11019).
693         * comint.el (comint-read-input-ring)
694         (comint-add-to-input-history): Grow comint-input-ring lazily.
696 2012-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
698         * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
699         Fix up parsing of multiline twoarg non-paired elements (bug#11014).
701         * imenu.el: Fix multiple inheritance breakage (bug#9199).
702         (imenu-add-to-menubar): Don't add a redundant index.
703         (imenu-update-menubar): Handle a dynamically composed keymap.
705 2012-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
707         * mail/sendmail.el (mail-encode-header):
708         Bind rfc2047-encode-encoded-words to nil.
710 2012-03-13  Glenn Morris  <rgm@gnu.org>
712         * calendar/calendar.el (calendar-string-spread):
713         Handle non-unit-width characters a bit better.  (Bug#10978)
715 2012-03-13  Leo Liu  <sdl.web@gmail.com>
717         * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
718         directory and file as argument (Bug#10822).
720 2012-03-13  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
722         * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
723         For dynamically generated code, follow $PC.
724         (gdb-disassembly-handler-custom): Handle no function name case.
726 2012-03-13  Tim Landscheidt  <tim@tim-landscheidt.de>  (tiny change)
728         * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
729         * emulation/ws-mode.el (ws-query-replace):
730         * sort.el (sort-regexp-fields):
731         Fix missing trailing whitespace in interactive prompts.  (Bug#11002)
733 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
735         * dabbrev.el: Fix cycle completion order (bug#10963).
736         (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
737         (dabbrev-completion): Don't use an obarray; provide
738         a cycle-sort-function.
740 2012-03-12  Leo Liu  <sdl.web@gmail.com>
742         * simple.el (kill-new): Use equal-including-properties for comparison.
743         (kill-do-not-save-duplicates): Doc fix.
745 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
747         * dabbrev.el: Fix cycle completion (bug#10963).
748         Use lexical binding and wrap to 80 columns.
749         (dabbrev-completion): Delay computing the list of completions.
751 2012-03-12  Kenichi Handa  <handa@m17n.org>
753         * international/quail.el (quail-insert-kbd-layout): Surround each
754         row by LRO and PDF instead of inserting many LRMs.  Pad the left
755         and right of each non-spacing marks.  Insert invisible space
756         between lower and upper characters to prevent composition.
758 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
760         * minibuffer.el (minibuffer-complete): Don't get confused when the
761         function is run twice via different commands (bug#10958).
762         (complete-with-action): Fix docstring.
764 2012-03-12  Chong Yidong  <cyd@gnu.org>
766         * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
767         (nxml-completion-at-point-function): New function.
768         (nxml-mode): Use it.
769         (nxml-bind-meta-tab-to-complete-flag): Default to t.
771         * emacs-lisp/package.el (package-unpack, package-unpack-single):
772         Load generated autoloads file before byte compiling (Bug#10970).
773         (package--make-autoloads-and-compile): New helper fun.
775 2012-03-12  Christopher Schmidt  <christopher@ch.ristopher.com>
777         * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
779 2012-03-11  Michael Albinus  <michael.albinus@gmx.de>
781         * autorevert.el (auto-revert-handler): Ensure, that
782         file-readable-p is applied only for local files or in
783         auto-revert-tail-mode.
785 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
787         * server.el (server-eval-at): Handle non-tcp connections.
788         Decode result string.
790         * server.el (server-msg-size): New constant.
791         (server-reply-print): New function.
792         (server-eval-and-print): Use it.
793         (server-eval-at): Use server-quote-arg and server-unquote-arg.
794         Handle -print-nonl.
796 2012-03-11  Christopher Schmidt  <christopher@ch.ristopher.com>
798         * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
799         (Bug#10987).
801 2012-03-11  Chong Yidong  <cyd@gnu.org>
803         * simple.el (goto-line): Doc fix (Bug#9938).
805         * subr.el (save-window-excursion): Doc fix (Bug#9979).
807         * dabbrev.el (dabbrev--find-expansion): Update progress reporter
808         when finished (Bug#10963).
810 2012-03-11  Martin Rudalics  <rudalics@gmx.at>
812         * window.el (split-window-below): Fix bug in case where
813         split-window-keep-point is nil (Bug#10971).
815 2012-03-11  Juri Linkov  <juri@jurta.org>
817         * replace.el (replace-highlight): Set isearch-word to nil
818         unconditionally.  (Bug#10887)
820 2012-03-10  Eli Zaretskii  <eliz@gnu.org>
822         * net/mairix.el (mairix-replace-invalid-chars): Rename from
823         mairix-replace-illegal-chars; all callers changed.  Don't remove
824         ^, ~, and = characters: they are meaningful in mairix search specs.
825         (mairix-widget-create-query): Add usage information about mairix
826         search forms: negating words, searching for substrings, etc.
828 2012-03-10  Jae-hyeon Park  <jae-hyeon.park@desy.de>  (tiny change)
830         * international/fontset.el (font-encoding-alist): Add an entry for
831         ksx1001 (Bug#5667).
833 2012-03-10  Richard Stallman  <rms@gnu.org>
835         * mail/sendmail.el (mail-encode-header):
836         Set rfc2047-encode-encoded-words.
838         * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
840         * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
841         view buffer means not swapped.
842         (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
843         (rmail-write-region-annotate): Error if real text has disappeared.
845         * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
847 2012-03-10  Chong Yidong  <cyd@gnu.org>
849         * emulation/cua-rect.el (cua--init-rectangles):
850         * emulation/cua-base.el (cua--init-keymaps):
851         Add delete-forward-char to remappings (Bug#9666).
853 2012-03-10  Martin Rudalics  <rudalics@gmx.at>
855         * speedbar.el (speedbar-unhighlight-one-tag-line):
856         Avoid unhighlighting due to frame switching (Bug#10275).
858 2012-03-10  Chong Yidong  <cyd@gnu.org>
860         * minibuffer.el (completion-in-region, completion-help-at-point):
861         Give the completion field overlay a high priority (Bug#6830).
863         * dired.el (dired-goto-file): Recognize absolute file name
864         listings (Bug#7126).
865         (dired-goto-file-1): New helper function.
866         (dired-toggle-read-only): Inhibit warnings.
868 2012-03-09  Michael Albinus  <michael.albinus@gmx.de>
870         * net/dbus.el: (dbus-property-handler): Return empty array if
871         there are no properties.
873 2012-03-09  Leo Liu  <sdl.web@gmail.com>
875         * savehist.el (savehist-printable): Stricter check for string
876         value (Bug#10937).
878 2012-03-09  Eli Zaretskii  <eliz@gnu.org>
880         * mail/smtpmail.el (smtpmail-send-it):
881         Bind coding-system-for-write to *-unix, so that FCC files are kept in
882         valid mbox format.
884 2012-03-09  Glenn Morris  <rgm@gnu.org>
886         * files.el (dir-locals-find-file):
887         Don't check result is regular, readable.
888         (dir-locals-read-from-file): Demote errors.
890 2012-03-08  Eli Zaretskii  <eliz@gnu.org>
892         * international/quail.el (quail-insert-kbd-layout):
893         Insert invisible LRM characters before each character in a keyboard
894         layout cell, to prevent their reordering by bidi display engine.
895         For details, see the discussion in
896         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
898 2012-03-08  Alan Mackenzie  <acm@muc.de>
900         * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
901         the starting position; make it extend the marked region when
902         invoked repeatedly - all under appropriate circumstances.
903         Fixes bugs #5525, #10906.
905 2012-03-08  Glenn Morris  <rgm@gnu.org>
907         * files.el (locate-dominating-file, dir-locals-find-file):
908         Undo 2012-03-06 change.
910 2012-03-07  Eli Zaretskii  <eliz@gnu.org>
912         * international/quail.el (quail-help):
913         Force bidi-paragraph-direction be left-to-right.  See discussion in
914         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
915         for the reason.
917 2012-03-07  Michael Albinus  <michael.albinus@gmx.de>
919         Avoid superfluous registering of signals.  (Bug#10807)
921         * notifications.el (notifications-on-action-object)
922         (notifications-on-close-object): New defvars.
923         (notifications-on-action-signal, notifications-on-closed-signal):
924         Unregister the signal if not needed any longer.
925         (notifications-notify): Register `notifications-action-signal' or
926         `notifications-closed-signal', if :on-action or :on-close has been
927         passed as argument.
929 2012-03-07  Chong Yidong  <cyd@gnu.org>
931         * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
932         non-X platforms.
934 2012-03-06  Glenn Morris  <rgm@gnu.org>
936         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
937         (x-disown-selection-internal, x-get-selection-internal):
938         Doc fix (add arglist signatures).  (Bug#10783)
940 2012-03-06  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
942         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
943         Handle breakpoints with no "type".
945 2012-03-06  Glenn Morris  <rgm@gnu.org>
947         * files.el (locate-dominating-file): Add optional predicate argument.
948         (dir-locals-find-file): Make use of above change.
950 2012-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>
952         * info.el (Info-insert-dir): Also try "dir.gz".
954 2012-03-06  Glenn Morris  <rgm@gnu.org>
956         * files.el (dir-locals-find-file):
957         Ignore non-readable or non-regular files.  (Bug#10928)
959         * files.el (locate-dominating-file): Doc fix.
961 2012-03-06  Adam Spiers  <emacs@adamspiers.org>  (tiny change)
963         * calendar/calendar.el (calendar-set-mode-line):
964         `getenv' returns a string.  (Bug#10951)
966 2012-03-05  Leo Liu  <sdl.web@gmail.com>
968         * simple.el (backward-delete-char-untabify): Constrain point to
969         field (Bug#10939).
971         * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
973 2012-03-05  Chong Yidong  <cyd@gnu.org>
975         * simple.el (count-words): If called from Lisp, return the word
976         count, for symmetry with `count-lines'.  Arglist changed.
977         (count-words--message): Args changed.  Consolidate counting code
978         from count-words and count-words-region.
979         (count-words-region): Caller changed.
980         (count-lines-region): Make it an obsolete alias.
982 2012-03-04  Tassilo Horn  <tassilo@member.fsf.org>
984         * saveplace.el (save-place-to-alist)
985         (save-place-ignore-files-regexp): Allow value nil to disable this
986         feature.
988 2012-03-04  Chong Yidong  <cyd@gnu.org>
990         * faces.el (face-spec-reset-face): For the default face, reset the
991         attributes to default values (Bug#10748).
993 2012-03-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
995         * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
996         previous patch: Check `message-send-mail-function', and not the
997         default function (bug#10897).
999 2012-03-04  Michael Albinus  <michael.albinus@gmx.de>
1001         * notifications.el (notifications-on-action-signal)
1002         (notifications-on-closed-signal): Check for unique service name of
1003         incoming event.  Fix error in removing entry.
1004         (top): Register for signals with wildcard service name.
1005         (notifications-notify): Use daemon unique service name for map entries.
1007 2012-03-04  Chong Yidong  <cyd@gnu.org>
1009         * cus-start.el: Make x-select-enable-clipboard-manager customizable.
1011 2012-03-04  Glenn Morris  <rgm@gnu.org>
1013         * abbrev.el (copy-abbrev-table, abbrev-table-p)
1014         (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
1015         (expand-abbrev, define-abbrev-table): Doc fixes.
1017 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1019         * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
1020         `message-default-send-mail-function' and not `send-mail-function'
1021         when doing the prompting for `sendmail-query-once' before sending
1022         in Message buffers (bug#10897).
1024         * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
1025         This is inconsistent with all the other stream functions, which leave
1026         the setting up to the higher levels (if so wanted) (bug#10931).
1028 2012-03-02  Alan Mackenzie  <acm@muc.de>
1030         Depessimize the handling of very large macros.
1032         * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
1033         (c-macro-cache-syntactic): New variables to implement a one
1034         element macro cache.
1035         (c-invalidate-macro-cache): New function.
1036         (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
1037         Adapt to use the new cache.
1038         (c-state-safe-place): Use better the cache of safe positions.
1039         (c-state-semi-nonlit-pos-cache)
1040         (c-state-semi-nonlit-pos-cache-limit):
1041         New variables for...
1042         (c-state-semi-safe-place): New function.  Here, in a macro is "safe".
1043         (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
1044         (c-in-literal, c-literal-limits, c-determine-limit-get-base):
1045         Use c-state-semi-safe-place.
1047         * progmodes/cc-langs.el (c-get-state-before-change-functions):
1048         Add c-invalidate-macro-cache to the C, C++, Obj entries.
1050 2012-03-02  Michael Albinus  <michael.albinus@gmx.de>
1052         * jka-compr.el (jka-compr-call-process):
1053         Apply `file-accessible-directory-p' only when the default directory is
1054         not remote.
1056 2012-03-01  Michael Albinus  <michael.albinus@gmx.de>
1058         * files.el (file-equal-p): Fix docstring.  Avoid unnecessary
1059         access of FILE2, if FILE1 does not exist.
1061         * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
1062         Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
1064         * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
1065         Add "PAGER=" to `process-environment'.
1067 2012-03-01  Michael R. Mauger  <mmaug@yahoo.com>
1069         * progmodes/sql.el: Bug fix
1070         (sql-get-login-ext): Save login values in globals.
1071         (sql-get-login): Use new version of `sql-get-login-ext'.
1072         (sql-interactive-mode): Set global `sql-connection' to nil.
1073         (sql-connect): Set global values for connection.
1074         (sql-product-interactive): Save global values as buffer local.
1076 2012-02-29  Leo Liu  <sdl.web@gmail.com>
1078         * abbrev.el (define-abbrevs): Reset sys to nil.
1080 2012-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1082         * files.el (file-equal-p): Rename from `files-equal-p'.
1083         Return nil when one or both files don't exist.
1084         (file-subdir-of-p): Now only top directory must exists,
1085         return nil if it doesn't.
1086         (copy-directory): No need to test with `file-subdir-of-p' after
1087         creating dir.
1088         * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
1089         to `file-equal-p'.
1091 2012-02-28  Glenn Morris  <rgm@gnu.org>
1093         * shell.el (shell-mode):
1094         * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
1095         * play/landmark.el (landmark-font-lock-face-O):
1096         * play/handwrite.el (handwrite):
1097         * play/gomoku.el (gomoku-O):
1098         * net/browse-url.el (browse-url-browser-display):
1099         * international/mule.el (define-charset):
1100         * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
1101         * filesets.el (filesets-find-file-delay):
1102         * eshell/em-xtra.el (eshell-xtra):
1103         * eshell/em-unix.el (eshell-grep):
1104         * emulation/viper.el (viper-mode):
1105         * emacs-lisp/regexp-opt.el (regexp-opt-group):
1106         * emacs-lisp/easymenu.el (easy-menu-define):
1107         * calendar/timeclock.el (timeclock-use-display-time):
1108         * bs.el (bs-mode):
1109         * bookmark.el (bookmark-save-flag):
1110         Doc fix (standardize possessive apostrophe usage).
1112 2012-02-27  Chong Yidong  <cyd@gnu.org>
1114         * emulation/viper-cmd.el (viper-intercept-ESC-key):
1115         Fix key-binding lookup for ESC key (Bug#9146).
1117         * font-lock.el (font-lock-specified-p): Rename from
1118         font-lock-spec-present.  Callers changed.
1120 2012-02-27  Daniel Hackney  <dan@haxney.org>
1122         * emacs-lisp/package.el (package-compute-transaction):
1123         Handle holding a package version to t in package-load-list.
1125 2012-02-26  Michael Albinus  <michael.albinus@gmx.de>
1127         * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
1128         (tramp-get-inode, tramp-get-device): Use cached values.
1130 2012-02-26  Alan Mackenzie  <acm@muc.de>
1132         Check there is a font-lock specification before doing initial
1133         fontification.
1135         * font-core.el (font-lock-mode): Move the conditional from
1136         :after-hook to font-lock-initial-fontify.
1137         (font-lock-default-function): Move the check for a specification
1138         to font-lock-spec-present.
1140         * font-lock.el (font-lock-initial-fontify): Call ...
1141         (font-lock-spec-present): New function.
1143 2012-02-26  Jim Blandy  <jimb@red-bean.com>
1145         * progmodes/gdb-mi.el (gdb-mi-quote): New function.
1146         (gdb-send): Apply it to the operand of the '-interpreter-exec
1147         console' command, so that we can pass arguments with (say) quotes
1148         in them.  Store exact string sent in gdb-debug-log (Bug#10765).
1150 2012-02-26  Chong Yidong  <cyd@gnu.org>
1152         * help-fns.el (describe-function-1): Clarify description of
1153         remapping (Bug#10844).
1155         * files.el (files-equal-p): Doc fix.
1156         (file-subdir-of-p): Doc fix.  Convert loop macro to plain Lisp,
1157         and quit the loop once a mismatch is found.
1159 2012-02-25  Juanma Barranquero  <lekktu@gmail.com>
1161         * bs.el (bs--show-with-configuration): Don't throw an error
1162         if the window cannot be split; otherwise, subsequent calls to
1163         bs-show fail, restoring a stale window config.  (Bug#10882)
1165 2012-02-25  Jan Djärv  <jan.h.d@swipnet.se>
1167         * term/ns-win.el (global-map): Bind ns-drag-file to
1168         ns-find-file (Bug#5855, Bug#10050).
1170 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
1172         * calendar/parse-time.el (parse-time-string): Allow extractor to
1173         return nil.
1175 2012-02-25  Michael Albinus  <michael.albinus@gmx.de>
1177         * net/tramp.el (tramp-file-name-for-operation):
1178         Add `files-equal-p' and `file-subdir-of-p'.
1180         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
1181         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
1182         Add COPY-CONTENTS argument.
1184 2012-02-25  Chong Yidong  <cyd@gnu.org>
1186         Add custom groups for VC backends, for consistency with vc-bzr.
1188         * vc/vc-arch.el (vc-arch):
1189         * vc/vc-cvs.el (vc-cvs):
1190         * vc/vc-git.el (vc-git):
1191         * vc/vc-hg.el (vc-hg):
1192         * vc/vc-mtn.el (vc-mtn):
1193         * vc/vc-rcs.el (vc-rcs):
1194         * vc/vc-sccs.el (vc-sccs):
1195         * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
1196         All relevant defcustoms reassigned.
1198 2012-02-25  Chong Yidong  <cyd@gnu.org>
1200         * newcomment.el (comment-styles): Add autoload (Bug#10868).
1202         * term/x-win.el (x-initialize-window-system): Reduce default for
1203         x-selection-timeout to 5 seconds (Bug#8869).
1205 2012-02-24  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1207         * files.el (file-subdir-of-p): Fix typo.
1209 2012-02-24  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1211         * files.el (files-equal-p, file-subdir-of-p): New functions.
1212         (copy-directory): Error when trying to copy a directory on itself.
1213         Add missing copy-contents arg to tramp handler.
1214         * dired-aux.el (dired-copy-file-recursive): Same.
1215         (dired-create-files): Modify destination when source is equal to
1216         dest when copying files.
1217         Return also when dest is a subdir of source.  (Bug#10489)
1219 2012-02-24  Michael Albinus  <michael.albinus@gmx.de>
1221         * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
1222         (Bug#10874)
1224 2012-02-23  Alan Mackenzie  <acm@muc.de>
1226         * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
1227         parameter "after-hook:" to allow the expansion to run code after
1228         the execution of the mode hooks.
1230         * font-lock.el (font-lock-initial-fontify): New function extracted
1231         from font-lock-mode-internal.
1233         * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
1234         :after-hook.
1236 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1238         * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
1239         (completion--cache-all-sorted-completions): New function.
1240         (completion-all-sorted-completions): Use it.
1241         (completion--do-completion, minibuffer-force-complete):
1242         Use it to re-instate the flush hook.
1244         * icomplete.el (icomplete-completions): Replace last fix with a better
1245         one (bug#10850).
1247 2012-02-23  Dmitry Gutov  <dgutov@yandex.ru>
1249         * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
1250         when it might call us back infinitely (bug#10797).
1252 2012-02-23  Glenn Morris  <rgm@gnu.org>
1254         * minibuffer.el (completion-category-overrides): Doc fix.
1256 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1258         * minibuffer.el (completion-table-with-context): Fix inf-loop.
1259         Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
1261 2012-02-23  Glenn Morris  <rgm@gnu.org>
1263         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
1264         (authors-obsolete-files-regexps, authors-ignored-files)
1265         (authors-ambiguous-files, authors-renamed-files-alist):
1266         Add more entries.
1268 2012-02-23  Juri Linkov  <juri@jurta.org>
1270         * isearch.el (isearch-occur): Sync interactive spec with occur's
1271         new feature in `occur-read-primary-args'.  Doc fix.  (Bug#10705)
1273         * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
1275 2012-02-22  Juri Linkov  <juri@jurta.org>
1277         * international/mule-cmds.el (read-char-by-name): Use \` and \'.
1278         (ucs-insert): Doc fix.  Check for hex digits in the string.
1279         Don't display `nil' in the error message.  (Bug#10857)
1281 2012-02-22  Alan Mackenzie  <acm@muc.de>
1283         * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
1285 2012-02-22  Glenn Morris  <rgm@gnu.org>
1287         * ffap.el (ffap-c-path):
1288         * man.el (Man-header-file-path): Handle multiarch.  (Bug#10702)
1290 2012-02-22  Chong Yidong  <cyd@gnu.org>
1292         * custom.el (load-theme): Doc fix.
1294 2012-02-22  Glenn Morris  <rgm@gnu.org>
1296         * dired-x.el (dired-guess-shell-alist-default):
1297         Remove escape sequences from nroff output.  (Bug#172)
1299 2012-02-21  Glenn Morris  <rgm@gnu.org>
1301         * vc/emerge.el (emerge-defvar-local):
1302         Set `permanent-local' property rather than unused `preserved'.
1304         * textmodes/picture.el (picture-delete-char): New alias.
1305         (picture-mode-map): Use it.  (Bug#10860)
1306         (picture-mode): Doc fix.
1308 2012-02-21  Juanma Barranquero  <lekktu@gmail.com>
1310         * newcomment.el (uncomment-region-default): Remove unused binding.
1312 2012-02-21  Glenn Morris  <rgm@gnu.org>
1314         * textmodes/picture.el (picture-motion, picture-motion-reverse)
1315         (picture-self-insert, picture-tab-chars): Doc fix.
1316         (picture-mode-map): Fix C-a, C-e.
1318 2012-02-20  Glenn Morris  <rgm@gnu.org>
1320         * emacs-lisp/authors.el (authors-aliases): Add another entry.
1322 2012-02-20  Leo Liu  <sdl.web@gmail.com>
1324         * icomplete.el (icomplete-completions): Check FROM arg before
1325         passing to substring (Bug#10850).
1327 2012-02-19  Chong Yidong  <cyd@gnu.org>
1329         * comint.el: Require ansi-color.
1330         (comint-output-filter-functions): Add ansi-color-process-output.
1332         * ansi-color.el: Don't set comint-output-filter-functions; it is
1333         now in the initial value defined in comint.el.
1334         (ansi-color-apply-face-function): New variable.
1335         (ansi-color-apply-on-region): Use it.
1336         (ansi-color-apply-overlay-face): New function.
1338         * shell.el (shell): No need to require ansi-color.
1339         (shell-mode): Use ansi-color-apply-face-function to highlight
1340         color escapes using font-lock-face property (Bug#10835).
1342 2012-02-19  Chong Yidong  <cyd@gnu.org>
1344         * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
1345         mode-line formats (Bug#10839).
1347 2012-02-18  Glenn Morris  <rgm@gnu.org>
1349         * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
1351         * mail/undigest.el (unforward-rmail-message): Doc fix.
1353         * saveplace.el (save-place-ignore-files-regexp): Add :version.
1355 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
1357         * international/characters.el (script-list): Sync with the latest
1358         Unicode Character Database.
1360 2012-02-18  Andreas Schwab  <schwab@linux-m68k.org>
1362         * international/titdic-cnv.el: Remove duplicate coding tag.
1363         * language/cham.el: Likewise.
1364         * language/tai-viet.el: Likewise.
1366 2012-02-18  Glenn Morris  <rgm@gnu.org>
1368         * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
1369         * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
1370         (calendar-bahai-all-holidays-flag, calendar-other-dates):
1371         * calendar/diary-lib.el (diary-abbreviated-year-flag):
1372         * calendar/holidays.el (holiday-bahai-holidays)
1373         (calendar-holidays, list-holidays):
1374         Use utf-8 Bahá'í in doc-strings, menus, etc.
1376 2012-02-17  Tassilo Horn  <tassilo@member.fsf.org>
1378         * saveplace.el (save-place-ignore-files-regexp): New variable
1379         allowing for excluding files from saving their location of point.
1380         The default value matches the temporary commit message editing
1381         files from Git, SVN, Bazaar, and Mercurial.
1382         (save-place-to-alist): Use it.
1384 2012-02-17  Lawrence Mitchell <wence@gmx.li>
1385             Stefan Monnier  <monnier@iro.umontreal.ca>
1387         * newcomment.el (uncomment-region-default): Don't leave extra space
1388         when an arg is provided (bug#8150).
1390 2012-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
1392         * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
1394 2012-02-17  Glenn Morris  <rgm@gnu.org>
1396         * net/socks.el: Require network-stream.  (Bug#10599)
1398 2012-02-17  Kenichi Handa  <handa@m17n.org>
1400         * international/charprop.el:
1401         * international/uni-name.el:
1402         * international/uni-old-name.el:
1403         * international/uni-comment.el: Regenerate.
1405 2012-02-16  Glenn Morris  <rgm@gnu.org>
1407         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
1408         Interactively in calendar buffer, give an error if not on a date.
1410 2012-02-15  Glenn Morris  <rgm@gnu.org>
1412         * shell.el (shell-delimiter-argument-list):
1413         Revert 2011-02-17 change.  (Bug#8027)
1415 2012-02-15  Chong Yidong  <cyd@gnu.org>
1417         * minibuffer.el (completion-at-point-functions): Doc fix.
1419         * custom.el (defcustom): Doc fix; note use of defvar.
1421 2012-02-15  Glenn Morris  <rgm@gnu.org>
1423         * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
1424         Doc fixes.
1426 2012-02-14  Glenn Morris  <rgm@gnu.org>
1428         * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
1430 2012-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
1432         * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
1433         way the ports list is computed.
1434         (smtpmail-query-smtp-server): Prompt the user for a port number if
1435         we can't connect to any of the standard ports (bug#10810).
1437 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
1439         * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
1441 2012-02-13  Glenn Morris  <rgm@gnu.org>
1443         * minibuffer.el (read-file-name): Doc fix.  (Bug#10798)
1445 2012-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
1447         * net/gnutls.el (gnutls-trustfiles): New variable.
1448         (gnutls-negotiate): Use it.
1450 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
1452         * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
1453         does its stuff if Gnus is running.
1455 2012-02-13  Alan Mackenzie  <acm@muc.de>
1457         Fix a loop in c-set-fl-decl-start.
1459         * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
1460         c-backward-syntactic-ws actually moves backwards.
1462 2012-02-13  Leo Liu  <sdl.web@gmail.com>
1464         * net/rcirc.el (rcirc-markup-attributes): Move point to the
1465         beginning so that all \C-o chars are removed.
1467 2012-02-12  Teodor Zlatanov  <tzz@lifelogs.com>
1469         * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
1471 2012-02-12  Alan Mackenzie  <acm@muc.de>
1473         Fix infinite loop with long macros.
1474         * cc-engine.el (c-state-safe-place): Handle macros properly.
1476 2012-02-12  Chong Yidong  <cyd@gnu.org>
1478         * window.el (display-buffer): Doc fix (Bug#10785).
1480 2012-02-12  Glenn Morris  <rgm@gnu.org>
1482         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
1483         (x-disown-selection-internal, x-get-selection-internal):
1484         Sync docs with the xselect.c versions.
1486         * allout-widgets.el: Add missing license notice.
1488 2012-02-11  Glenn Morris  <rgm@gnu.org>
1490         * select.el (x-get-selection-internal, x-own-selection-internal)
1491         (x-disown-selection-internal):
1492         * x-dnd.el (x-get-selection-internal): Update declarations.
1494         * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
1496         * window.el (window-sides-slots):
1497         * tool-bar.el (tool-bar-position):
1498         * term/xterm.el (xterm-extra-capabilities):
1499         * ses.el (ses-self-reference-early-detection):
1500         * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
1501         (verilog-auto-wire-type)
1502         (verilog-auto-delete-trailing-whitespace)
1503         (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
1504         (verilog-auto-tieoff-declaration):
1505         * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
1506         (sql-oracle-statement-starters, sql-oracle-scan-on):
1507         * progmodes/prolog.el (prolog-align-comments-flag)
1508         (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
1509         (prolog-left-indent-regexp, prolog-paren-indent-p)
1510         (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
1511         (prolog-types, prolog-mode-specificators)
1512         (prolog-determinism-specificators, prolog-directives)
1513         (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
1514         (prolog-electric-dot-flag)
1515         (prolog-electric-dot-full-predicate-template)
1516         (prolog-electric-underscore-flag, prolog-electric-tab-flag)
1517         (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
1518         (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
1519         (prolog-program-switches, prolog-prompt-regexp)
1520         (prolog-debug-on-string, prolog-debug-off-string)
1521         (prolog-trace-on-string, prolog-trace-off-string)
1522         (prolog-zip-on-string, prolog-zip-off-string)
1523         (prolog-use-standard-consult-compile-method-flag)
1524         (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
1525         (prolog-imenu-max-lines, prolog-info-predicate-index)
1526         (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
1527         (prolog-char-quote-workaround):
1528         * progmodes/cc-vars.el (c-defun-tactic):
1529         * net/tramp.el (tramp-encoding-command-interactive)
1530         (tramp-local-end-of-line):
1531         * net/soap-client.el (soap-client):
1532         * net/netrc.el (netrc-file):
1533         * net/gnutls.el (gnutls):
1534         * minibuffer.el (completion-category-overrides)
1535         (completion-cycle-threshold)
1536         (completion-pcm-complete-word-inserts-delimiters):
1537         * man.el (Man-name-local-regexp):
1538         * mail/feedmail.el (feedmail-display-full-frame):
1539         * international/characters.el (glyphless-char-display-control):
1540         * eshell/em-ls.el (eshell-ls-date-format):
1541         * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
1542         (lisp-lambda-list-keyword-parameter-indentation)
1543         (lisp-lambda-list-keyword-parameter-alignment):
1544         * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
1545         * dired-x.el (dired-omit-verbose):
1546         * cus-theme.el (custom-theme-allow-multiple-selections):
1547         * calc/calc.el (calc-highlight-selections-with-faces)
1548         (calc-lu-field-reference, calc-lu-power-reference)
1549         (calc-note-threshold):
1550         * battery.el (battery-mode-line-limit):
1551         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
1552         (archive-7z-update):
1553         * allout.el (allout-prefixed-keybindings)
1554         (allout-unprefixed-keybindings)
1555         (allout-inhibit-auto-fill-on-headline)
1556         (allout-flattened-numbering-abbreviation):
1557         * allout-widgets.el (allout-widgets-auto-activation)
1558         (allout-widgets-icons-dark-subdir)
1559         (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
1560         (allout-widgets-theme-dark-background)
1561         (allout-widgets-theme-light-background)
1562         (allout-widgets-item-image-properties-emacs)
1563         (allout-widgets-item-image-properties-xemacs)
1564         (allout-widgets-run-unit-tests-on-load)
1565         (allout-widgets-time-decoration-activity)
1566         (allout-widgets-hook-error-post-time)
1567         (allout-widgets-track-decoration):
1568         Add missing :version tags to new defcustoms and defgroups.
1570         * progmodes/sql.el (sql-ansi-statement-starters)
1571         (sql-oracle-statement-starters): Add custom type.
1573         * progmodes/prolog.el: Remove leading '*' from defcustom docs.
1574         (prolog-system-version): Give it a type.
1576 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
1578         * term/pc-win.el (x-select-text, x-selection-owner-p)
1579         (x-own-selection-internal, x-disown-selection-internal)
1580         (x-get-selection-internal): Sync doc strings and argument lists
1581         with xselect.c, common-win.el and x-win.el.  (Bug#10783)
1583 2012-02-11  Leo Liu  <sdl.web@gmail.com>
1585         * progmodes/python.el (python-end-of-statement): Fix infinite
1586         loop.  (Bug#10788)
1588 2012-02-10  Glenn Morris  <rgm@gnu.org>
1590         * international/mule-cmds.el (unify-8859-on-encoding-mode)
1591         (unify-8859-on-decoding-mode): Properly mark as obsolete.
1593 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
1595         * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
1596         about SMTP before checking the From header.
1598         * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
1599         into own function for reuse by emacsbug.el.
1601 2012-02-10  Leo Liu  <sdl.web@gmail.com>
1603         * subr.el (condition-case-unless-debug): Rename from
1604         condition-case-no-debug.  All callers changed.
1605         (with-demoted-errors): Fix caller.
1607         * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
1608         * nxml/rng-valid.el (rng-do-some-validation):
1609         * emacs-lisp/package.el (package-refresh-contents)
1610         (package-menu-execute):
1611         * desktop.el (desktop-create-buffer):
1612         * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1614 2012-02-10  Glenn Morris  <rgm@gnu.org>
1616         * textmodes/bibtex.el:
1617         Add missing :version tags for new/changed defcustoms.
1619         * files.el (remote-file-name-inhibit-cache): Doc fixes.
1621 2012-02-09  Lars Ingebrigtsen  <larsi@rusty>
1623         * mail/smtpmail.el (smtpmail-user-mail-address): New function.
1624         (smtpmail-via-smtp): Use it, or fall back on the From address.
1625         (smtpmail-send-it): Ditto.
1627 2012-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1629         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
1630         Don't fallback on byte-compile-defvar.  Optimize (defvar foo) away.
1631         (byte-compile-tmp-var): New const.
1632         (byte-compile-defvar): Use it to minimize .elc size.
1633         Just use `defvar' rather than simulate it (bug#10761).
1635 2012-02-09  Glenn Morris  <rgm@gnu.org>
1637         * files.el (rename-uniquely): Doc fix.  (Bug#3806)
1639         * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
1640         Add :version tags.
1642         * progmodes/compile.el (compilation-error-screen-columns)
1643         (compilation-first-column, compilation-filter-start): Doc fixes.
1645         * vc/log-view.el (log-view-toggle-entry-display):
1646         * vc/vc.el (vc-merge, vc-pull): Doc fixes.
1648         * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
1649         (report-emacs-bug-can-use-xdg-email):
1650         (report-emacs-bug-insert-to-mailer): Doc fixes.
1651         (report-emacs-bug): Message fix.
1653         * net/browse-url.el (browse-url-can-use-xdg-open)
1654         (browse-url-xdg-open): Doc fixes.
1656         * electric.el (electric-indent-mode, electric-pair-mode)
1657         (electric-layout-rules, electric-layout-mode): Doc fixes.
1658         (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
1660 2012-02-08  Martin Rudalics  <rudalics@gmx.at>
1662         * server.el (server-unselect-display): Don't inadvertently kill
1663         the current buffer.  (Bug#10729)
1665 2012-02-08  Glenn Morris  <rgm@gnu.org>
1667         * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
1668         (sql-list-table): Doc fixes.
1670         * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
1671         Comment out (does nothing).
1673         * completion.el (dynamic-completion-mode):
1674         * dirtrack.el (dirtrack-debug-mode):
1675         * electric.el (electric-layout-mode):
1676         * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
1677         * face-remap.el (text-scale-mode, buffer-face-mode):
1678         * iimage.el (iimage-mode):
1679         * image-mode.el (image-transform-mode):
1680         * minibuffer.el (completion-in-region-mode):
1681         * scroll-lock.el (scroll-lock-mode):
1682         * simple.el (next-error-follow-minor-mode):
1683         * tar-mode.el (tar-subfile-mode):
1684         * tooltip.el (tooltip-mode):
1685         * vcursor.el (vcursor-use-vcursor-map):
1686         * wid-browse.el (widget-minor-mode):
1687         * emulation/tpu-edt.el (tpu-edt-mode):
1688         * emulation/tpu-extras.el (tpu-cursor-free-mode):
1689         * international/iso-ascii.el (iso-ascii-mode):
1690         * language/thai-util.el (thai-word-mode):
1691         * mail/supercite.el (sc-minor-mode):
1692         * net/goto-addr.el (goto-address-mode):
1693         * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
1694         * progmodes/cwarn.el (cwarn-mode):
1695         * progmodes/flymake.el (flymake-mode):
1696         * progmodes/glasses.el (glasses-mode):
1697         * progmodes/hideshow.el (hs-minor-mode):
1698         * progmodes/pascal.el (pascal-outline-mode):
1699         * textmodes/enriched.el (enriched-mode):
1700         * vc/smerge-mode.el (smerge-mode):
1701         Doc fixes (minor mode argument).
1703 2012-02-07  Eli Zaretskii  <eliz@gnu.org>
1705         * ls-lisp.el (ls-lisp-sanitize): New function.
1706         (ls-lisp-insert-directory): Use it to fix or remove any elements
1707         in file-alist with missing attributes.  (Bug#4673)
1709 2012-02-07  Alan Mackenzie  <acm@muc.de>
1711         Fix spurious recognition of c-in-knr-argdecl.
1713         * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
1714         putative K&R region.
1716 2012-02-07  Alan Mackenzie  <acm@muc.de>
1718         * progmodes/cc-engine.el (c-forward-objc-directive):
1719         Prevent looping in "#pragma mark @implementation".
1721 2012-02-07  Michael Albinus  <michael.albinus@gmx.de>
1723         * notifications.el (notifications-on-closed-signal): Make `reason'
1724         optional.  (Bug#10744)
1726 2012-02-07  Glenn Morris  <rgm@gnu.org>
1728         * emacs-lisp/easy-mmode.el (define-minor-mode):
1729         Doc fixes for the macro and the mode it defines.
1731         * image.el (imagemagick-types-inhibit): Doc fix.
1733         * cus-start.el (imagemagick-render-type): Add it.
1735 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
1737         * progmodes/cc-mode.el
1738         (c-standard-font-lock-fontify-region-function): Set the default at
1739         load time, too, so that `font-lock-fontify-buffer' can be called
1740         without setting up the entire mode first.  This fixes a bug in
1741         `mm-inline-text' with C MIME parts.
1743 2012-02-06  Chong Yidong  <cyd@gnu.org>
1745         * simple.el (list-processes--refresh): Delete exited processes
1746         (Bug#8094).
1748         * comint.el (comint-next-prompt): next-single-char-property-change
1749         and prev-single-char-property-change never return nil (Bug#8657).
1751         * custom.el (defcustom): Doc fix (Bug#9711).
1753 2012-02-05  Chong Yidong  <cyd@gnu.org>
1755         * cus-edit.el (custom-variable-reset-backup): Quote the value
1756         before storing it in the customized-value property (Bug#6712).
1757         (custom-display): Add a customization type tag.
1758         (custom-buffer-create-internal): Improve tooltip message.
1760         * wid-edit.el (widget-field-value-get): New optional arg to
1761         suppress trailing whitespace truncation.
1762         (character): Use it (Bug#2689).
1764 2012-02-05  Andreas Schwab  <schwab@linux-m68k.org>
1766         * progmodes/gud.el (gud-pv): Use pv instead of pv1.
1767         * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
1769 2012-02-05  Chong Yidong  <cyd@gnu.org>
1771         * cus-edit.el (custom-variable-value-create): For mismatched
1772         types, show the current value (Bug#7600).
1774         * custom.el (defcustom): Doc fix.
1776 2012-02-05  Glenn Morris  <rgm@gnu.org>
1778         * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
1780 2012-02-05  Juanma Barranquero  <lekktu@gmail.com>
1782         * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
1783         (pp-buffer): Use `ignore-errors', `looking-at-p'.
1784         (pp-last-sexp): Use `looking-at-p'.
1786 2012-02-04  Glenn Morris  <rgm@gnu.org>
1788         * files.el (revert-buffer):
1789         Doc fix (mention revert-buffer-in-progress-p).
1791         * emacs-lisp/ert-x.el (ert-simulate-command):
1792         Check deferred-action-list (which is obsolete) is bound.
1794         * subr.el (with-wrapper-hook): Doc fixes.
1796         * simple.el (filter-buffer-substring-functions)
1797         (buffer-substring-filters, filter-buffer-substring): Doc fixes.
1799 2012-02-04  Lars Ljung  <lars@matholka.se>  (tiny change)
1801         * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
1802         anywhere in shell-file-name, not just at the beginning.  (Bug#10523)
1804 2012-02-04  Leo Liu  <sdl.web@gmail.com>
1806         * emacs-lisp/smie.el: Fix dead link (Bug#10711).
1808 2012-02-04  Glenn Morris  <rgm@gnu.org>
1810         * image.el (image-extension-data): Add obsolete alias.
1812         * isearch.el (isearch-update): Doc fix.
1814         * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
1816         * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
1818 2012-02-03  Glenn Morris  <rgm@gnu.org>
1820         * image.el (image-animated-p): Doc fix.  Use image-animated-types.
1821         (image-animate-timeout): Doc fix.
1823         * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
1825 2012-02-02  Glenn Morris  <rgm@gnu.org>
1827         * server.el (server-auth-dir): Doc fix.
1828         (server-eval-at): Doc fix.  Give an explicit error if !server-use-tcp.
1830         * subr.el (run-mode-hooks): Doc fix.
1832 2012-02-02  Juri Linkov  <juri@jurta.org>
1834         * image-mode.el (image-toggle-display-image): Remove tautological
1835         `major-mode' from the `derived-mode-p' test.
1837 2012-02-02  Kenichi Handa  <handa@m17n.org>
1839         * composite.el (compose-region): Cancel previous change.
1841 2012-02-02  Kenichi Handa  <handa@m17n.org>
1843         * composite.el (compose-region, compose-string): Signal error for
1844         a null string component (Bug#6988).
1846 2012-02-01  Chong Yidong  <cyd@gnu.org>
1848         * view.el (view-buffer-other-window, view-buffer-other-frame):
1849         Handle special modes like view-buffer (Bug#10650).
1850         (view-buffer): Simplify.
1852         * frame.el (set-frame-font): Tweak meaning of third argument.
1854         * dynamic-setting.el (font-setting-change-default-font):
1855         Use set-frame-font (Bug#9982).
1857 2012-02-01  Glenn Morris  <rgm@gnu.org>
1859         * progmodes/compile.el (compilation-internal-error-properties):
1860         Respect compilation-first-column in the "*compilation*" buffer.
1862         * emacs-lisp/easy-mmode.el (define-minor-mode):
1863         Relax :variable's test for a named function.
1865 2012-01-31  Alan Mackenzie  <acm@muc.de>
1867         * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
1868         off by one error.
1870 2012-01-31  Chong Yidong  <cyd@gnu.org>
1872         * frame.el (set-frame-font): New arg ALL-FRAMES.
1874         * menu-bar.el (menu-set-font): Use set-frame-font.
1876         * faces.el (face-spec-reset-face): Don't apply unspecified
1877         attribute values to the default face.
1879 2012-01-31  Juanma Barranquero  <lekktu@gmail.com>
1881         * progmodes/cwarn.el (cwarn): Remove dead link.
1882         (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
1883         Remove * from defcustom docstrings.
1884         (turn-on-cwarn-mode): Make obsolete.
1885         (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
1886         (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
1888 2012-01-31  Glenn Morris  <rgm@gnu.org>
1890         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
1891         Fix :variable handling of mode a symbol not equal to modefun.
1892         Allow named functions to be used as the cdr of :variable.
1894 2012-01-30  Glenn Morris  <rgm@gnu.org>
1896         * emacs-lisp/authors.el (authors-fixed-entries):
1897         Remove reference to deleted file rnewspost.el.
1899 2012-01-29  Juanma Barranquero  <lekktu@gmail.com>
1901         * window.el (window-with-parameter): Remove unused variable `windows'.
1902         (window--side-check): Remove unused variable `code'.
1903         (window--resize-siblings): Remove unused variable `first'.
1904         (adjust-window-trailing-edge): Remove unused variable `failed'.
1905         (window-deletable-p, window--delete): Remove unused variable `buffer'.
1906         Use `let', not `let*'.
1907         (balance-windows-2): Remove unused variable `found'.
1908         (window--state-put-2): Remove unused variable `splits'.
1909         (window-state-put): Remove unused variable `selected'.
1910         (same-window-p): Use `string-match-p'.
1911         (display-buffer-assq-regexp): Remove unused variable `value'.
1912         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1913         Mark argument ALIST as ignored.
1914         (pop-to-buffer): Remove unused variable `old-window'.
1916 2012-01-29  Eli Zaretskii  <eliz@gnu.org>
1918         * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
1919         and .lzma compressed files.
1921 2012-01-29  Chong Yidong  <cyd@gnu.org>
1923         * frame.el (window-system-default-frame-alist): Doc fix.
1925         * dynamic-setting.el (font-setting-change-default-font): Don't
1926         change the default face if SET-FONT argument is non-nil (Bug#9982).
1928 2012-01-29  Samuel Bronson  <naesten@gmail.com>  (tiny change)
1930         * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
1932 2012-01-29  Syver Enstad  <syver.enstad@cisco.com>  (tiny change)
1934         * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
1935         breakpoints in files outside current directory (Bug#6098).
1937 2012-01-29  Chong Yidong  <cyd@gnu.org>
1939         * progmodes/python.el: Require ansi-color at top-level.
1941         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
1942         Define and use in Emacs Lisp mode (Bug#9360).
1943         (lisp-mode-abbrev-table): Add doc.
1944         (lisp-mode-variables): Don't set local-abbrev-table.
1945         (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
1947 2012-01-28  Roland Winkler  <winkler@gnu.org>
1949         * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
1951 2012-01-28  Roland Winkler  <winkler@gnu.org>
1953         * textmodes/bibtex.el (bibtex-entry-alist): New function.
1954         (bibtex-set-dialect): Use it.  Either set global values of
1955         dialect-dependent variables or bind these variables buffer-locally
1956         (Bug#10254).
1957         (bibtex-mode): Call bibtex-set-dialect via
1958         hack-local-variables-hook.
1959         (bibtex-dialect): Update docstring.
1960         Add safe-local-variable predicate.
1961         (bibtex-entry-alist, bibtex-field-alist): Initialize via
1962         bibtex-set-dialect.
1963         (bibtex-mode-map): Define menu for each dialect.
1964         (bibtex-entry): Fix docstring.
1966 2012-01-28  Chong Yidong  <cyd@gnu.org>
1968         * eshell/esh-arg.el (eshell-quote-argument): New function.
1970         * eshell/esh-ext.el (eshell-invoke-batch-file):
1971         * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
1972         first arg to eshell-parse-command (Bug#10523).
1974 2012-01-28  Drew Adams  <drew.adams@oracle.com>
1976         * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
1977         `default-directory' is non-nil.
1979 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
1981         * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
1982         line that displays system-configuration-options.  (Bug#9924)
1984 2012-01-28  Drew Adams  <drew.adams@oracle.com>
1986         * descr-text.el (describe-char): Show information about POS, in
1987         addition to information about the character at POS.  Improve and
1988         update the doc string.  Change "code point" to "code point in
1989         charset", to avoid confusion with the character's Unicode code
1990         point shown above that.  (Bug#10129)
1992 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
1994         * descr-text.el (describe-char): Show the raw character, not only
1995         its display form at POS.  Suggested by Kenichi Handa <handa@m17n.org>.
1996         See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
1997         for the reasons.
1999 2012-01-28  Phil Hagelberg  <phil@hagelb.org>
2001         * emacs-lisp/package.el (package-install):
2002         Run package-refresh-contents if there is no archive yet (Bug#9798).
2004 2012-01-28  Chong Yidong  <cyd@gnu.org>
2006         * emacs-lisp/package.el (package-maybe-load-descriptor):
2007         New function, split from package-maybe-load-descriptor.
2008         (package-maybe-load-descriptor): Use it.
2009         (package-download-transaction): Fully load required packages
2010         inside the loop, so that `require' calls work (Bug#10593).
2011         (package-install): No need to call package-initialize now.
2013 2012-01-28  Chong Yidong  <cyd@gnu.org>
2015         * simple.el (deactivate-mark): Doc fix (Bug#8614).
2017         * tooltip.el (tooltip-mode): Doc fix.
2018         (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
2020         * frame.el (set-cursor-color): Doc fix (Bug#352).
2022         * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
2023         (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
2025         * cus-edit.el (custom-buffer-create-internal): Fix search button
2026         action (Bug#10542).
2027         (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2029 2012-01-27  Eduard Wiebe  <usenet@pusto.de>
2031         * dired.el (dired-mark-files-regexp):
2032         Include any subdirectory components.  (Bug#10445)
2034 2012-01-27  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
2036         * pcmpl-unix.el (pcmpl-ssh-known-hosts):
2037         Handle [host]:port syntax.  (Bug#10533)
2039 2012-01-27  Alex Harsanyi  <harsanyi@mac.com>
2041         * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
2043 2012-01-26  Glenn Morris  <rgm@gnu.org>
2045         * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
2046         * term.el (term-raw-escape-map): Use Control-X-prefix.
2047         * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map.  (Bug#10566)
2049 2012-01-25  Martin Rudalics  <rudalics@gmx.at>
2051         * window.el (window-state-get, window--state-get-1): Don't deal
2052         with fixed-sizeness of windows.  Simplify code.
2054 2012-01-25  Jérémy Compostella  <jeremy.compostella@gmail.com>
2056         * window.el (window--state-get-1, window--state-put-2):
2057         Don't save and restore the mark.
2059 2012-01-25  Chong Yidong  <cyd@gnu.org>
2061         * custom.el (custom-variable-p): Doc fix.
2063 2012-01-25  Glenn Morris  <rgm@gnu.org>
2065         * dired.el (dired-goto-file): Handle some of the more common
2066         characters that `ls -b' escapes.  (Bug#10596)
2068         * progmodes/compile.el (compilation-next-error-function):
2069         Respect compilation-first-column in the "*compilation*" buffer.
2070         * progmodes/grep.el (grep-first-column): New variable.  (Bug#10594)
2072         * vc/vc.el (vc-modify-change-comment): Scoping fix.  (Bug#10513)
2074 2012-01-24  Glenn Morris  <rgm@gnu.org>
2076         * pcmpl-gnu.el (pcomplete/tar): Handle " - ".  (Bug#10457)
2078 2012-01-24  Julien Danjou  <julien@danjou.info>
2080         * color.el (color-rgb-to-hsl): Fix value computing.
2081         (color-hue-to-rgb): New function.
2082         (color-hsl-to-rgb): New function.
2083         (color-clamp, color-saturate-hsl, color-saturate-name)
2084         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
2085         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
2087 2012-01-24  Glenn Morris  <rgm@gnu.org>
2089         * vc/vc-rcs.el (vc-rcs-create-tag):
2090         * vc/vc-sccs.el (vc-sccs-create-tag):
2091         Fix argument spec to be what vc-create-tag expects.  (Bug#10515)
2093 2012-01-23  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
2095         * eshell/esh-util.el (eshell-read-hosts-file):
2096         Skip comment lines.  (Bug#10549)
2098         * eshell/em-unix.el (pcomplete/ssh): Remove.  (Bug#10548)
2100 2012-01-23  Juanma Barranquero  <lekktu@gmail.com>
2102         * subr.el (display-delayed-warnings): Doc fix.
2103         (collapse-delayed-warnings): New function to collapse identical
2104         adjacent warnings.
2105         (delayed-warnings-hook): Add it.
2107 2012-01-22  Michael Albinus  <michael.albinus@gmx.de>
2109         * net/tramp.el (tramp-action-login): Set connection property "login-as".
2111         * net/tramp-cache.el (tramp-dump-connection-properties): Do not dump
2112         properties, when "login-as" is set.
2114         * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
2115         (tramp-default-user-alist): Don't add "pscp".
2116         (tramp-do-copy-or-rename-file-out-of-band): Use connection
2117         property "login-as", if set.  (Bug#10530)
2119 2012-01-21  Michael Albinus  <michael.albinus@gmx.de>
2121         * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
2122         "plink1" and "psftp".  (Bug#10530)
2124 2012-01-21  Kenichi Handa  <handa@m17n.org>
2126         * international/mule-cmds.el (prefer-coding-system): Show a
2127         warning message if the default value of file-name-coding-system
2128         was not changed.
2130 2012-01-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
2132         * windmove.el (windmove-reference-loc):
2133         Fix windmove-reference-loc miscalculation.
2135 2012-01-21  Jay Belanger  <jay.p.belanger@gmail.com>
2137         * calc/calc-units.el (math-put-default-units): Don't use "1" as a
2138         default unit.
2140 2012-01-21  Glenn Morris  <rgm@gnu.org>
2142         * international/mule.el (auto-coding-alist): Add .tbz.
2144         * files.el (local-enable-local-variables): Doc fix.
2145         (inhibit-local-variables-regexps): Rename from
2146         inhibit-first-line-modes-regexps.  Keep old name as obsolete alias.
2147         Doc fix.  Add some extensions from auto-coding-alist.
2148         (inhibit-local-variables-suffixes):
2149         Rename from inhibit-first-line-modes-suffixes.  Doc fix.
2150         (inhibit-local-variables-p):
2151         New function, extracted from set-auto-mode-1.
2152         (set-auto-mode): Doc fix.  Respect inhibit-local-variables-regexps.
2153         (set-auto-mode-1): Doc fix.  Use inhibit-local-variables-p.
2154         (hack-local-variables): Doc fix.  Make the mode-only case
2155         respect enable-local-variables and friends.
2156         Respect inhibit-local-variables-regexps for file-locals, but
2157         not for directory-locals.
2158         (set-visited-file-name):
2159         Take account of inhibit-local-variables-regexps.
2160         Whether it applies may change as the file name is changed.
2161         * jka-cmpr-hook.el (jka-compr-install):
2162         * jka-compr.el (jka-compr-uninstall):
2163         Update for inhibit-first-line-modes-suffixes name change.
2165 2012-01-20  Martin Rudalics  <rudalics@gmx.at>
2167         * help-macro.el (make-help-screen): Temporarily restore original
2168         binding for minor-mode-map-alist (Bug#10454).
2170 2012-01-19  Julien Danjou  <julien@danjou.info>
2172         * color.el (color-name-to-rgb): Use the white color to find the max
2173         color component value and return correctly computed values.
2174         (color-name-to-rgb): Add missing float conversion for max value.
2176 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
2178         * window.el (window--state-get-1, window-state-get): Do not use
2179         special state value for window-persistent-parameters.
2180         Rename argument IGNORE to WRITABLE.  Rewrite doc-string.
2181         (window--state-put-2): Reset all window parameters to nil before
2182         assigning values of persistent parameters.
2184 2012-01-18  Alan Mackenzie  <acm@muc.de>
2186         Eliminate sluggishness and hangs in fontification of "semicolon
2187         deserts".
2189         * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
2190         Change value 10000 -> 3000.
2191         (c-state-safe-place): Reformulate so it doesn't stack up an
2192         infinite number of wrong entries in c-state-nonlit-pos-cache.
2193         (c-determine-limit-get-base, c-determine-limit): New functions to
2194         determine backward search limits disregarding literals.
2195         (c-find-decl-spots): Amend commenting.
2196         (c-cheap-inside-bracelist-p): New function which detects "={".
2198         * progmodes/cc-fonts.el
2199         (c-make-font-lock-BO-decl-search-function): Give a limit to a
2200         backward search.
2201         (c-font-lock-declarations): Fix an occurrence of point being
2202         undefined.  Check additionally for point being in a bracelist or
2203         near a macro invocation without a semicolon so as to avoid a
2204         fruitless time consuming search for a declarator.  Give a more
2205         precise search limit for declarators using the new
2206         c-determine-limit.
2208 2012-01-18  Glenn Morris  <rgm@gnu.org>
2210         * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
2211         (set-auto-mode): Doc fixes.
2213 2012-01-17  Glenn Morris  <rgm@gnu.org>
2215         * isearch.el (search-nonincremental-instead): Fix doc typo.
2217         * dired.el (dired-insert-directory): Handle newlines in directory name.
2218         (dired-build-subdir-alist): Unescape newlines in directory name.
2220 2012-01-17  Michael Albinus  <michael.albinus@gmx.de>
2222         * net/tramp.el (tramp-local-end-of-line): New defcustom.
2223         (tramp-action-login, tramp-action-yesno, tramp-action-yn)
2224         (tramp-action-terminal): Use it.  (Bug#10530)
2226 2012-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2228         * minibuffer.el (completion--replace): Strip properties (bug#10062).
2230 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
2232         * window.el (window-state-ignored-parameters): Remove variable.
2233         (window--state-get-1): Rename argument MARKERS to IGNORE.
2234         Handle persistent window parameters.  Make copy of clone-of
2235         parameter only if requested.  (Bug#10348)
2236         (window--state-put-2): Install a window parameter only if it has
2237         a non-nil value or an existing parameter shall be overwritten.
2239 2012-01-15  Michael Albinus  <michael.albinus@gmx.de>
2241         * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
2243 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
2245         * info.el (Info-toc-build): If the Info file has no "Up" pointer,
2246         don't pass the (nil) value of `upnode' to string-match.
2248 2012-01-14  Chong Yidong  <cyd@gnu.org>
2250         * startup.el (command-line): Fix X resource class for cursorColor.
2251         Fix values recognized by the cursorBlink resource.
2253 2012-01-14  Paul Eggert  <eggert@cs.ucla.edu>
2255         * epg.el (epg--make-temp-file): Avoid permission race condition
2256         when running on old Emacs versions (bug#10403).
2258 2012-01-14  Glenn Morris  <rgm@gnu.org>
2260         * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
2262 2012-01-13  Alan Mackenzie  <acm@muc.de>
2264         Fix filling for when filladapt mode is enabled.
2266         * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
2267         c-mask-paragraph, pass in `fill-paragraph' rather than
2268         `fill-region-as-paragraph'.  (This is a reversion of a previous
2269         change.)
2270         * progmodes/cc-mode.el (c-basic-common-init):
2271         Make fill-paragraph-handle-comment buffer local and set it to nil.
2273 2012-01-13  Glenn Morris  <rgm@gnu.org>
2275         * dired.el (dired-switches-escape-p): New function.
2276         (dired-insert-directory): Use dired-switches-escape-p.
2277         (dired-get-filename): Undo "\ " quoting if needed.  (Bug#10469)
2279         * find-dired.el (find-ls-option): Doc fix.  (Bug#10262)
2281 2012-01-12  Glenn Morris  <rgm@gnu.org>
2283         * mail/sendmail.el (mail-mode): Update paragraph-separate for
2284         changes in adaptive-fill-regexp.  (Bug#10276)
2286 2012-01-11  Alan Mackenzie  <acm@muc.de>
2288         Fix Emacs bug #10463 - put `widen's around the critical spots.
2290         * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2291         widen around each invocation of c-state-pp-to-literal.  Remove an
2292         unused let variable.
2294 2012-01-11  Glenn Morris  <rgm@gnu.org>
2296         * dired-aux.el (dired-do-shell-command): Fix */? logic.  (Bug#6561)
2297         Doc fix.
2299 2012-01-10  Chong Yidong  <cyd@gnu.org>
2301         * net/network-stream.el (network-stream-open-starttls):
2302         Avoid emitting a confusing error message when the server gives a bad
2303         response to the capability command.
2305 2012-01-10  Glenn Morris  <rgm@gnu.org>
2307         * mail/unrmail.el (unrmail): Tweak previous change.
2309 2012-01-09  Chong Yidong  <cyd@gnu.org>
2311         * custom.el (custom-safe-themes): Use SHA-256 for hashing.
2313 2012-01-08  Alan Mackenzie  <acm@muc.de>
2315         Optimise font locking in long enum definitions.
2317         * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
2318         arm to a cond form to handle enums.
2319         * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
2320         * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
2322 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
2324         * files.el (move-file-to-trash): Preserve default file modes on error.
2325         (Bug#10401)
2327 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2329         * faces.el (set-face-attribute): Clarify the meaning of the nil
2330         frame (bug#10294).
2332         * subr.el (with-selected-frame): Mention that the selected frame
2333         is restored (bug#9980).
2335         * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
2336         (bug#9759).
2338         * mail/smtpmail.el (password-cache-add): Remove unused declaration.
2339         (password-read): Don't autoload unused function.
2341 2012-01-07  Juanma Barranquero  <lekktu@gmail.com>
2343         * progmodes/which-func.el (which-func-mode): Turn into a
2344         non-interactive function and mark as obsolete (bug#10428).
2346 2012-01-06  Chong Yidong  <cyd@gnu.org>
2348         * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
2349         (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
2350         functions, along with 1 and -1.
2352 2012-01-06  Eli Zaretskii  <eliz@gnu.org>
2354         * time.el (display-time-load-average)
2355         (display-time-default-load-average): Doc fixes.  See the thread
2356         starting at
2357         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
2358         for the details.
2360 2012-01-06  Glenn Morris  <rgm@gnu.org>
2362         * mail/unrmail.el (unrmail): Give an explicit error if the input file
2363         has no messages.  (Bug#10377)
2365         * info.el (Info-mode-map): Bind e to end-of-buffer, rather
2366         than Info-edit.  (Bug#10385)
2368         * time.el (display-time-load-average, display-time-next-load-average):
2369         Doc fixes.
2371         * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
2372         local setting of buffer-read-only to the input buffer.  (Bug#10419)
2374         * calendar/calendar.el (calendar-mode):
2375         Locally set scroll-margin to 0.  (Bug#10379)
2377 2012-01-06  Ulrich Mueller  <ulm@gentoo.org>
2379         * play/doctor.el (doctor-death): Escape "," characters.  (Bug#10370)
2381 2012-01-05  Glenn Morris  <rgm@gnu.org>
2383         * eshell/em-unix.el (diff-no-select): Autoload it.
2384         (eshell/diff): Use diff-no-select.  (Bug#10420)
2386 2012-01-05  Chong Yidong  <cyd@gnu.org>
2388         * shell.el (shell-dynamic-complete-functions): Revert last change.
2389         (shell-command-completion-function): New function.
2390         (shell-completion-vars): Use it to implement
2391         shell-completion-execonly (Bug#10417).
2393         * custom.el (enable-theme): Don't set custom-safe-themes.
2395         * cus-theme.el (custom-theme-merge-theme):
2396         Ignore custom-enabled-themes and custom-safe-themes.
2398 2012-01-05  Michael R. Mauger  <mmaug@yahoo.com>
2400         * progmodes/sql.el (sql-login-hook): Add hook to respond to the
2401         first prompt in `sql-interacive-mode'.
2402         (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
2403         keywords.
2404         (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
2405         (sql-product-interactive): Bug fix: Set `sql-buffer' in
2406         context of original buffer.  Invoke `sql-login-hook'.
2408 2012-01-04  Eli Zaretskii  <eliz@gnu.org>
2410         * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
2411         letters in cite-prefix.
2413 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2415         * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
2417 2012-01-03  Chong Yidong  <cyd@gnu.org>
2419         * shell.el (shell-dynamic-complete-functions):
2420         Put pcomplete-completions-at-point, so as to try
2421         comint-filename-completion first (Bug#10417).
2423 2012-01-02  Richard Stallman  <rms@gnu.org>
2425         * battery.el (battery-status-function):
2426         Detect when to use battery-yeeloong-sysfs.
2427         (battery-echo-area-format): Add string for Yeeloong.
2428         (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
2429         (battery-yeeloong-sysfs): New function.
2431 2012-01-02  Chong Yidong  <cyd@gnu.org>
2433         * dirtrack.el (dirtrack-list): Eliminate unused third element.
2434         (dirtrack): Merge code for handling relative filenames in prompt
2435         from shell-dir-cookie-watcher.
2436         (dirtrack-debug-message): New arg to avoid excess format calls.
2438         * shell.el (shell-dir-cookie-re): Variable deleted.
2439         (shell-dir-cookie-watcher): Function deleted.
2440         (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
2441         with dirtrack-mode.
2443 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
2445         * term/w32-win.el (dynamic-library-alist) <gnutls>:
2446         Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
2447         libgnutls-26.dll.
2449 2011-12-31  Andreas Schwab  <schwab@linux-m68k.org>
2451         * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
2453 2011-12-31  Eli Zaretskii  <eliz@gnu.org>
2455         * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
2456         headers of non-MIME messages, when rmail-enable-mime is non-nil.
2458 2011-12-29  Michael Albinus  <michael.albinus@gmx.de>
2460         * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
2461         also for alternative shells.
2462         (tramp-open-connection-setup-interactive-shell): Check, whether
2463         the shell is a busybox.
2464         (tramp-send-command): Don't suppress multiple prompts for
2465         busyboxes, it hurts.
2467 2011-12-28  Chong Yidong  <cyd@gnu.org>
2469         * progmodes/gdb-mi.el (gdb-get-source-file-list)
2470         (gdb-get-source-file): Move mode line update to
2471         gdb-get-source-file (Bug#10087).
2473 2011-12-25  Chong Yidong  <cyd@gnu.org>
2475         * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
2476         gud-gdb-marker-filter without taking it as an argument.
2477         (gud-gdb-run-command-fetch-lines): Caller changed.
2478         (gud-gdb-completion-function): New variable.
2479         (gud-gdb-completion-at-point): Use it.
2480         (gud-gdb-completions-1): Split from gud-gdb-completions.
2482         * progmodes/gdb-mi.el (gdb-input): Accept command and handler
2483         function as separate arguments.
2484         (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
2485         (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
2486         (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
2487         (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
2488         (gdb-stopped, def-gdb-auto-update-trigger)
2489         (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
2490         (gdb-get-changed-registers, gdb-get-main-selected-frame):
2491         Callers changed.
2492         (gud-gdbmi-completions): New function.
2493         (gdb): Use it for generating the completion table.
2495 2011-12-24  Alan Mackenzie  <acm@muc.de>
2497         Introduce a mechanism to widen the region used in context font
2498         locking.  Use this to protect declarations from losing their contexts.
2500         * progmodes/cc-langs.el (c-before-font-lock-functions):
2501         Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
2502         (c-before-context-fontification-functions): New defvar, a list of
2503         functions to be run just before context (etc.) font locking.
2505         * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
2506         New, functionality extracted from
2507         c-neutralize-syntax-in-and-mark-CPP.
2508         (c-in-after-change-fontification): New variable.
2509         (c-after-change): Set c-in-after-change-fontification.
2510         (c-set-fl-decl-start): Rejig its interface, so it can be called
2511         from both after-change and context fontifying.
2512         (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
2513         New functions.
2514         (c-standard-font-lock-fontify-region-function): New variable.
2515         (c-font-lock-fontify-region): New function.
2517 2011-12-24  Juri Linkov  <juri@jurta.org>
2519         * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
2520         (Bug#10348)
2522 2011-12-23  Michael Albinus  <michael.albinus@gmx.de>
2524         * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
2525         existence of source file.  (Bug#10325)
2527 2011-12-23  Alan Mackenzie  <acm@muc.de>
2529         Fix unstable fontification inside templates.
2531         * progmodes/cc-langs.el (c-before-font-lock-functions):
2532         Newly created from the singular version.  The (c c++ objc) entry now
2533         additionally has c-set-fl-decl-start.  The other languages (apart
2534         from AWK) have that as a single entry.
2536         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
2537         The functionality for "local" declarations has been extracted to
2538         c-set-fl-decl-start.
2540         * progmodes/cc-mode.el (c-common-init, c-after-change):
2541         Changes due to pluralisation of c-before-font-lock-functions.
2542         (c-set-fl-decl-start): New function, extracted from
2543         c-font-lock-enclosing-decls and enhanced.
2545 2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
2547         * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
2549 2011-12-22  Juri Linkov  <juri@jurta.org>
2551         * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)
2553 2011-12-22  Chong Yidong  <cyd@gnu.org>
2555         * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
2557 2011-12-21  Drew Adams  <drew.adams@oracle.com>
2559         * files.el (file-remote-p): Fix docstring.  (Bug#10319)
2561 2011-12-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
2563         * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
2565 2011-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
2567         * progmodes/cfengine.el: Add Version.  Improve CFEngine 3.x syntax
2568         highlighting and support.  Fix up comments for capitalization.
2569         (cfengine-mode-debug): New var.
2570         (cfengine3-mode): Change the modeline indicator to "CFE3".
2571         (cfengine3-font-lock-keywords): Improve defun highlighting.
2572         (cfengine2-actions): Rename from `cfengine-actions'.
2573         (cfengine2-font-lock-keywords): Rename from
2574         `cfengine-font-lock-keywords'.
2575         (cfengine2-imenu-expression): Rename from
2576         `cfengine-imenu-expression'.
2577         (cfengine2-outline-level): Rename from `cfengine-outline-level'.
2578         (cfengine2-beginning-of-defun): Rename from
2579         `cfengine-beginning-of-defun'.
2580         (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
2581         (cfengine2-indent-line): Rename from `cfengine-indent-line'.
2582         (cfengine2-mode): Rename from `cfengine-mode'.  Change the
2583         modeline indicator to "CFE2".
2584         (cfengine-mode): Defalias to `cfengine-auto-mode'.
2585         (cfengine-mode-abbrevs): Mark obsolete.
2587 2011-12-21  Chong Yidong  <cyd@gnu.org>
2589         * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
2590         filename argument.
2592 2011-12-20  Martin Rudalics  <rudalics@gmx.at>
2594         * window.el (window-normalize-buffer-to-display): Remove.
2595         (display-buffer): Handle buffer-or-name argument as in Emacs 23.
2597 2011-12-19  Chong Yidong  <cyd@gnu.org>
2599         * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
2600         Don't signal an error in a predicate function; return non-nil.
2601         (vc-dir-mark-file): Move the error here.
2602         (vc-dir-mark-unmark): If acting on the region, keep going if one
2603         of the entries cannot be marked/unmarked.
2604         (vc-dir-mark-all-files): If current entry is a directory, mark
2605         only child files, as documented.
2607 2011-12-19  Vincent Belaïche  <vincentb1@users.sourceforge.net>
2609         * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
2610         branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
2611         addition.
2613 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
2615         * term/ns-win.el (ns-get-selection-internal)
2616         (ns-store-selection-internal): Declare.
2617         (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
2618         Declare as obsolete.
2619         (ns-get-pasteboard, ns-paste-secondary):
2620         Use ns-get-selection-internal.
2621         (ns-set-pasteboard,  ns-copy-including-secondary):
2622         Use ns-store-selection-internal.
2624 2011-12-17  Chong Yidong  <cyd@gnu.org>
2626         * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
2627         (vc-deduce-fileset): Doc fix.
2629 2011-12-16  Andreas Schwab  <schwab@linux-m68k.org>
2631         * calc/calc-misc.el (calc-help): Avoid wrapping help message.
2633 2011-12-13  Sam Steingold  <sds@gnu.org>
2635         * man.el (Man-getpage-in-background): When running under a
2636         window-system, ignore $MANWIDTH and $COLUMNS.
2638 2011-12-15  Kenichi Handa  <handa@m17n.org>
2640         * language/ethio-util.el: Change coding tag to utf-8-emacs.
2641         (setup-ethiopic-environment-internal): Comment out key-binding for
2642         ethio-toggle-punctuation.
2644 2011-12-13  Alan Mackenzie  <acm@muc.de>
2646         Add the switch statement to AWK Mode.
2648         * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
2649         "default" to the keywords regexp.
2651         * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
2652         expression as the rest.
2653         (c-nonlabel-token-key): Allow string literals for AWK.
2654         Refactor for the other modes.
2656         Large brace-block initialisation makes CC Mode slow: Fix.
2657         Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
2658         routines.  Limit backward searching in c-font-lock-enclosing.decl.
2660         * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
2661         pp-state and literal type in addition to the limits.
2662         (c-state-safe-place): New defun, extracted from c-state-literal-at.
2663         (c-state-literal-at): Use the above new defun.
2664         (c-slow-in-literal, c-fast-in-literal): Remove.
2665         (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
2667         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
2668         being in a literal.  Add a limit for backward searching.
2670         * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
2671         c-slow-in-literal.
2673 2011-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2675         * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
2677 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
2679         * window.el (delete-other-windows): Use correct frame in call to
2680         window-with-parameter.
2682 2011-12-12  Daniel Pfeiffer  <occitan@t-online.de>
2684         * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
2685         (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
2686         (makefile-gmake-statements, makefile-makepp-statements):
2687         Use it and add new makepp keywords.
2688         (makefile-makepp-font-lock-keywords): Add new patterns.
2689         (makefile-match-function-end): Match new [...] and [[...]].
2691 2011-12-11  Juanma Barranquero  <lekktu@gmail.com>
2693         * ses.el (ses-call-printer-return, ses-cell-property-get)
2694         (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
2695         (ses-create-cell-variable, ses-reset-header-string)
2696         (ses-cell-set-formula, ses-repair-cell-reference-all)
2697         (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
2698         (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
2699         (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
2700         (ses-aset-with-undo, ses-load, ses-truncate-cell)
2701         (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
2702         (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
2703         (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
2704         (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
2705         (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
2706         (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
2707         (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
2708         (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
2710 2011-12-11  Vincent Belaïche  <vincentb1@users.sourceforge.net>
2712         * ses.el: The overall change is to add cell renaming, that is
2713         setting fancy names for cell symbols other than name matching
2714         "\\`[A-Z]+[0-9]+\\'" regexp .
2715         (ses-create-cell-variable): New defun.
2716         (ses-relocate-formula): Relocate formulas only for cells the
2717         symbols of which are not renamed, i.e. symbols whose names do not
2718         match regexp "\\`[A-Z]+[0-9]+\\'".
2719         (ses-relocate-all): Relocate values only for cells the symbols of
2720         which are not renamed.
2721         (ses-load): Create cells variables as the (ses-cell ...) are read,
2722         in order to check row col consistency with cell symbol name only
2723         for cells that are not renamed.
2724         (ses-replace-name-in-formula): New defun.
2725         (ses-rename-cell): New defun.
2727 2011-12-11  Chong Yidong  <cyd@gnu.org>
2729         * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
2730         for completion via gud-gdb-fetch-lines-filter (Bug#10274).
2732 2011-12-11  Eric Hanchrow  <eric.hanchrow@gmail.com>
2734         * window.el (other-window): Fix docstring.
2736 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
2738         * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
2739         `from' or `to' address before taking its substring.
2740         Fixes incorrect display in Rmail summary buffer whereby an RFC2047
2741         encoded name is chopped in the middle of the encoded string, and
2742         thus displayed encoded.
2744 2011-12-10  Juanma Barranquero  <lekktu@gmail.com>
2746         * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
2748 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
2750         * textmodes/texnfo-upd.el: Update commentary.  Add a warning not
2751         to use texinfo-update-node and commands that call it if the
2752         Texinfo file uses @node lines without next/prev/up pointers.
2753         Correct outdated description about texinfo-master-menu.
2754         (texinfo-all-menus-update, texinfo-master-menu)
2755         (texinfo-update-node, texinfo-every-node-update)
2756         (texinfo-multiple-files-update): Doc fix.  Warn against updating
2757         all the @node lines.
2758         (texinfo-master-menu): Only call texinfo-update-node if the prefix
2759         argument is numeric.  Explain better in the doc string what the
2760         function really does.
2761         (texinfo-insert-master-menu-list): Improve the error message
2762         displayed if there's no menu in the Top node.
2763         (Bug#2975)  See also this thread:
2764         http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
2766 2011-12-09  Manuel Gómez  <mgrojo@gmail.com>  (tiny change)
2768         * speedbar.el (speedbar-supported-extension-expressions):
2769         Add .adb and .ads, commonly used for Ada source code (bug#10256).
2771 2011-12-09  Juanma Barranquero  <lekktu@gmail.com>
2773         * printing.el (pr-mode-alist):
2774         * simple.el (filter-buffer-substring-functions)
2775         (completion-list-insert-choice-function):
2776         * window.el (window-with-parameter, window-atom-root)
2777         (window-sides-slots, window-size-fixed, window-min-delta)
2778         (window-max-delta, window--resize-mini-window)
2779         (window--resize-child-windows-normal, window-tree)
2780         (delete-other-windows, quit-window, split-window)
2781         (display-buffer-record-window, special-display-buffer-names)
2782         (special-display-regexps, special-display-popup-frame)
2783         (same-window-p, split-window-sensibly)
2784         (display-buffer-overriding-action, display-buffer-alist)
2785         (display-buffer-base-action, display-buffer, switch-to-buffer)
2786         (switch-to-buffer-other-window, switch-to-buffer-other-frame)
2787         (fit-window-to-buffer, recenter-positions)
2788         (mouse-autoselect-window-state, mouse-autoselect-window-select):
2789         * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
2790         and remove unneeded backslashes in docstrings.
2792 2011-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2794         * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
2796         * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
2797         (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
2798         end in ".mk".
2799         (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
2800         when reading the makefile (bug#10116).
2802 2011-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2804         * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
2805         (bug#10116).
2807 2011-12-06  Glenn Morris  <rgm@gnu.org>
2809         * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
2811 2011-12-06  Chong Yidong  <cyd@gnu.org>
2813         * progmodes/cc-fonts.el (c-annotation-face): Use defface.
2815 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
2817         * textmodes/table.el (table-shorten-cell): Fix typo.
2819 2011-12-05  Christopher Genovese  <genovese.cr@gmail.com>  (tiny change)
2821         * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
2823 2011-12-05  Eli Zaretskii  <eliz@gnu.org>
2825         * descr-text.el (describe-char): Fix display of strong
2826         right-to-left characters and directional embeddings and overrides.
2828         * simple.el (what-cursor-position): Fix display of codepoints of
2829         strong right-to-left characters.
2831 2011-12-05  Chong Yidong  <cyd@gnu.org>
2833         * faces.el (read-color): Doc fix.
2835 2011-12-05  Glenn Morris  <rgm@gnu.org>
2837         * align.el (align--set-marker): Add doc-string.
2838         Don't try to move something that is not a marker.  (Bug#10216)
2840 2011-12-04  Glenn Morris  <rgm@gnu.org>
2842         * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
2843         overly zealous deletion of trailing whitespace.
2845 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
2847         * server.el (server-delete-client): On Windows, do not try to delete
2848         the only terminal.
2849         (server-process-filter): On Windows, treat requests for a tty frame as
2850         if they were for a GUI frame if the running server is in GUI mode.
2852 2011-12-03  Glenn Morris  <rgm@gnu.org>
2854         * textmodes/texinfmt.el (batch-texinfo-format): Doc fix.  (Bug#10207)
2856 2011-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2858         * electric.el: Streamline electric-indent's hook.
2859         (electric-indent-chars): Revert to simple list.
2860         (electric-indent-functions): New var.
2861         (electric-indent-post-self-insert-function): Use it.
2863         * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
2864         there's no inferior buffer (bug#10196).
2865         (prolog-consult-compile): Don't use toggle-read-only.
2867 2011-12-02  Michael Albinus  <michael.albinus@gmx.de>
2869         * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
2870         interrupt.  (Bug#10187)
2872 2011-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2874         * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
2875         (bug#9160).
2877         * dired-aux.el (dired-query): Don't assume help-char is modifier-free
2878         (bug#10191).
2880 2011-12-02  Juri Linkov  <juri@jurta.org>
2882         * info.el (Info-search): Display "end of manual" when Isearch
2883         reaches the end of single-file Info manual.  (Bug#9918)
2885 2011-12-02  Eli Zaretskii  <eliz@gnu.org>
2887         * isearch.el (isearch-message-prefix): Run the input method part
2888         of the prompt through bidi-string-mark-left-to-right.  (Bug#10183)
2890 2011-12-02  Juri Linkov  <juri@jurta.org>
2892         * isearch.el (isearch-occur): Use `word-search-regexp' for
2893         `isearch-word'.
2894         (isearch-search-and-update): Add condition for `isearch-word' and
2895         call `word-search-regexp'.  (Bug#10145)
2897 2011-12-01  Glenn Morris  <rgm@gnu.org>
2899         * eshell/em-hist.el (eshell-hist-initialize):
2900         Handle eshell-history-size nil and HISTSIZE set or unset.
2901         (eshell-history-file-name, eshell-history-size): Fix custom type.
2903 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2905         * man.el (Man-completion-table): Fix the lambda case (bug#10168).
2907 2011-12-01  Michael McNamara  <mac@mail.brushroad.com>
2909         * progmodes/verilog-mode.el (verilog-pretty-expr):
2910         Rework verilog-pretty-expr to handle new assignment operators in system
2911         verilog, such as += *= and the like.
2912         (verilog-assignment-operator-re): Regular expression to find the
2913         assigment operator in a verilog assignment.
2914         (verilog-assignment-operation-re): Regular expression to find an
2915         assignment statement for pretty-expr.
2916         (verilog-in-attribute-p): Query returns true if point is in an
2917         attribute context; used to skip these for expression line up from
2918         pretty-expr.
2919         (verilog-in-parameter-p): Query returns true if point is in an
2920         parameter definition context; used to skip these for expression
2921         line up from pretty-expr.
2922         (verilog-in-parenthesis-p): Query returns true if point is in a
2923         parenthetical expression, specifically ( ) but not [ ] or { };
2924         used by pretty-expr.
2925         (verilog-just-one-space): If there is no space, don't add one.
2926         (verilog-get-lineup-indent-2): Specifically skip just attribute
2927         contexts for expression lineup, rather than skipping all
2928         parenthetical expressions.
2929         (verilog-calculate-indent): Fix comment, and fix indent.
2930         (verilog-do-indent): Indent declarations in lists (suggested by
2931         Joachim Lechner).
2932         (verilog-mode-abbrev-table): Populate abbrev mode with the various
2933         skeleton items.
2934         (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
2935         by Alain Mellan).
2937 2011-12-01  Wilson Snyder  <wsnyder@wsnyder.org>
2939         * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
2940         parameters with embedded comments.  Reported by Ray Stevens.
2941         (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
2942         verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
2943         Reported by Tim Holt.
2944         (verilog-auto): Fix AUTOing a upper module then AUTOing module
2945         instantiated by upper module causing wrong expansion until AUTOed a
2946         second time.  Reported by K C Buckenmaier.
2947         (verilog-diff-auto): Fix showing .* as a difference when
2948         `verilog-auto-star-save' off.  Reported by Dan Dever.
2949         (verilog-auto-reset, verilog-read-always-signals)
2950         (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
2951         temporary signals in reset list if
2952         verilog-auto-reset-blocking-in-non is nil, and match assignment
2953         style to each signal's assignment type, bug381.
2954         Reported by Thomas Esposito.
2955         (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
2956         (verilog-uvm-statement-re): Support UVM indentation and
2957         highlighting, with old OVM keywords only.
2958         (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
2959         Support AUTOTIEOFF creating non-wire data types.
2960         Suggested by Jonathan Greenlaw.
2961         (verilog-auto-insert-lisp, verilog-delete-to-paren)
2962         (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
2963         (verilog-inject-sense, verilog-read-inst-pins)
2964         (verilog-read-sub-decls, verilog-read-sub-decls-line):
2965         Fix mismatching parenthesis inside commented out code when deleting
2966         AUTOINST, bug383.  Reported by Jonathan Greenlaw.
2967         (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
2968         non-numeric vector width.  Reported by Alex Reed.
2969         (verilog-auto-ascii-enum): Add "onehot" option to work around not
2970         detecting signals with parameter widths.  Reported by Alex Reed.
2971         (verilog-auto-delete-trailing-whitespace):
2972         With `verilog-auto-delete-trailing-whitespace' remove trailing
2973         whitespace in auto expansion, bug371.  Reported by Brad Dobbie.
2974         (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
2975         Fix verilog-scan-cache corruption when running user AUTO expansion
2976         hooks that call indentation routines.
2977         (verilog-simplify-range-expression): Fix typo ignoring lower case
2978         identifiers.
2979         (verilog-delete-auto): Fix delete-autos to also remove user created
2980         automatics, as long as they start with AUTO.
2981         (verilog-batch-diff-auto, verilog-diff-auto)
2982         (verilog-diff-function): Add `verilog-diff-auto' and bind to
2983         "C-c?"  to report differences in AUTO expansion, ignoring spaces.
2984         (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
2985         (verilog-in-paren-quick, verilog-re-search-backward-quick)
2986         (verilog-re-search-forward-quick, verilog-syntax-ppss):
2987         Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
2988         is disabled and its cache will get corrupt, causing AUTOS not to
2989         expand.  Instead use only -quick functions.
2990         (verilog-scan-region): Fix scanning over escaped quotes.
2991         (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
2992         (verilog-re-search-backward-quick)
2993         (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
2994         related functions now ignore strings, to fix misparsing of strings
2995         with magic comments embedded in them.
2996         (verilog-read-auto-template):
2997         Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
2998         Reported by Brad Dobbie.
2999         (verilog-read-auto-template):
3000         Fix 'verilog-auto-inst-template-numbers' with comments.
3001         Reported by Brad Dobbie.
3002         (verilog-auto-inst, verilog-auto-inst-param)
3003         (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
3004         merge conflicts with AUTOINST, bug358.  Reported by Brad Dobbie.
3005         (verilog-auto-inst-template-numbers): Add 'lhs' policy for
3006         debugging templates without merge conflicts, bug357.
3007         Reported by Brad Dobbie.
3008         (verilog-read-auto-template):
3009         Fix verilog-auto-inst-template-numbers with multiple templates.
3010         Reported by Brad Dobbie.
3011         (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
3012         abbrevs so user won't be asked to save.
3013         (verilog-read-auto-lisp-present): Fix to start at beginning of
3014         buffer in case called outside of verilog-auto.
3015         (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
3016         to "X-2".  Reported by Matthew Myers.
3017         (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
3018         all inputs from module templates.  Reported by Leith Johnson.
3019         (verilog-module-inside-filename-p): Fix locating programs as with
3020         modules.
3021         (verilog-auto-inst-port): Fix vl-width expressions when using
3022         verilog-auto-inst-param-value, bug331.  Reported by Julian Gorfajn.
3023         (verilog-decls-get-regs, verilog-decls-get-signals,
3024         verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
3025         verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
3026         verilog-read-decls): Combine reg and wire structures into one var
3027         structure to represent SystemVerilog concepts.
3028         (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
3029         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
3030         (verilog-auto-wire-type, verilog-insert-definition):
3031         Add verilog-auto-wire-type and AUTOLOGIC to support using
3032         SystemVerilog "logic" keyword instead of "wire"/"reg".
3033         (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
3034         to declares outputs that also have assignments (presumably in an
3035         ifdef or generate if so there's not a driver conflict).
3036         Reported by Matthew Myers.
3037         (verilog-auto-declare-nettype, verilog-insert-definition):
3038         Add verilog-auto-declare-nettype to fix declarations using
3039         `default_nettype none.  Reported by Julian Gorfajn.
3040         (verilog-read-always-signals-recurse, verilog-read-decls)
3041         (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
3042         malformed end statement, bug325.  Reported by Joshua Wise and
3043         Andrew Drake.
3044         (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
3045         (verilog-inst-comment-re): Fix not deleting Interfaced comment
3046         when expanding .* in interfaces, bug320.
3047         Reported by Pierre-David Pfister.
3048         (verilog-read-module-name): Fix import statements between module
3049         name and open parenthesis, bug317.
3050         Reported by Pierre-David Pfister.
3051         (verilog-simplify-range-expression): Fix simplification of
3052         multiplications inside AUTOWIRE connections, bug303.
3053         (verilog-auto-inst-port): Support parameter expansion in
3054         multidimensional arrays.
3055         (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
3056         after "assert property".  Reported by Julian Gorfajn.
3057         (verilog-simplify-range-expression): Fix "couldn't merge" errors
3058         with multiplication, bug303.
3059         (verilog-read-decls): Fix parsing of unsigned data types, bug302.
3060         Reported by Jan Frode Lonnum.
3062 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
3064         * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
3065         (hfy-shell-file-name, hfy-shell):
3066         * international/fontset.el (x-decompose-font-name): Fix typos.
3068 2011-11-29  Ken Brown  <kbrown@cornell.edu>
3070         * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
3071         (gdb-version): Remove defvar.
3072         (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
3073         (gdb-gud-context-command, gdb-non-stop-handler)
3074         (gdb-current-context-command, gdb-stopped): Use it.
3075         (gdb-init-1): Enable pretty printing here.
3076         (gdb-non-stop-handler): Don't enable pretty-printing here.
3077         Check to see if the target supports non-stop mode; if not, turn off
3078         non-stop mode.  Use the following.
3079         (gdb-check-target-async): New defun.
3080         (gud-watch, gdb-stopped): Fix whitespace.
3081         (gdb-get-source-file): Don't try to display the source file if
3082         `gdb-main-file' is nil.
3084 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3086         * align.el: Try to generate fewer markers (bug#10047).
3087         (align--set-marker): New macro.
3088         (align-region): Use it.
3090 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3092         * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
3094 2011-11-29  Chong Yidong  <cyd@gnu.org>
3096         * indent.el (indent-for-tab-command, indent-according-to-mode):
3097         Doc fix.
3098         (indent-region): Doc fix.  Switch nested ifs to equivalent cond.
3100 2011-11-29  Michael Albinus  <michael.albinus@gmx.de>
3102         * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
3103         aware of remote file names.  (Bug#10124)
3105 2011-11-29  Chong Yidong  <cyd@gnu.org>
3107         * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
3109 2011-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3111         * files.el (find-file): Don't use force-same-window (bug#10144).
3112         * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
3113         use pop-to-buffer if the selected window can't be used.
3114         (pop-to-buffer-same-window): Use display-buffer--same-window-action.
3116 2011-11-28  Eli Zaretskii  <eliz@gnu.org>
3118         * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
3119         special-mode-map.
3121 2011-11-28  Chong Yidong  <cyd@gnu.org>
3123         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
3125 2011-11-27  Nick Roberts  <nickrob@snap.net.nz>
3127         * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
3128           gdb-get-source-file-list on gdb-create-source-file-list.
3130 2011-11-26  Eli Zaretskii  <eliz@gnu.org>
3132         * whitespace.el (whitespace-newline): Use a different foreground
3133         color for 16-color light-background displays.
3135 2011-11-24  Chong Yidong  <cyd@gnu.org>
3137         * window.el (display-buffer--special-action): Doc fix.
3139 2011-11-25  Juanma Barranquero  <lekktu@gmail.com>
3141         * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
3142         (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
3143         (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
3144         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
3145         (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
3146         (avl-tree-stack-first):
3147         * emacs-lisp/cconv.el (cconv--analyse-use):
3148         * net/gnutls.el (gnutls-negotiate): Fix typos.
3150 2011-11-24  Glenn Morris  <rgm@gnu.org>
3152         * lpr.el (lpr-windows-system, lpr-lp-system):
3153         * mail/binhex.el (binhex-begin-line):
3154         * progmodes/grep.el (grep-history, grep-find-history):
3155         * textmodes/flyspell.el:
3156         * vc/pcvs-defs.el (cvs-global-menu):
3157         * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
3158         * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
3159         * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
3161         * net/tls.el: Fix case of "GnuTLS".
3163         * paths.el (rmail-file-name): Format doc-string for make-docfile.
3165         * version.el (emacs-build-system): Give it a doc-string.
3167 2011-11-24  Juri Linkov  <juri@jurta.org>
3169         * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
3171 2011-11-24  Glenn Morris  <rgm@gnu.org>
3173         * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
3174         if called on a non-mime message just toggle the headers.  (Bug#8006)
3176 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
3178         * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
3179         (allout-lead-with-comment-string, allout-structure-deleted-hook)
3180         (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
3181         (allout-rebullet-heading, allout-open-sibtopic)
3182         (allout-toggle-current-subtree-encryption)
3183         (allout-toggle-subtree-encryption, allout-encrypt-string)
3184         (allout-next-topic-pending-encryption, allout-adjust-file-variable)
3185         (allout-distinctive-bullets-string, allout-auto-activation):
3186         * window.el (window-normalize-buffer-to-display):
3187         * progmodes/verilog-mode.el (verilog-batch-indent):
3188         * textmodes/bibtex.el (bibtex-field-braces-opt)
3189         (bibtex-field-strings-opt):
3190         * vc/cvs-status.el (cvs-tree-merge):
3191         Fix typos.
3193 2011-11-23  Michael Albinus  <michael.albinus@gmx.de>
3195         * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
3196         `non-essential' to t, in order to avoid remote connections.
3198 2011-11-23  Eli Zaretskii  <eliz@gnu.org>
3200         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3201         On MS-DOS and MS-Windows, compare with loaddefs.el
3202         case-insensitively.
3204 2011-11-23  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
3206         * mail/unrmail.el (unrmail): Always add blank line.  (Bug#7743)
3208 2011-11-23  Glenn Morris  <rgm@gnu.org>
3210         * paths.el (rmail-file-name): Reformat the doc-string so that it
3211         is picked up.
3213         * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
3214         (rmail-auto-file): Ignore case in the "special" field names,
3215         as mail-fetch-field does for all others.
3217         * mail/rmail.el (rmail-forward):
3218         * mail/rmailkwd.el (rmail-set-label):
3219         * mail/rmailout.el (rmail-output, rmail-output-as-seen)
3220         (rmail-output-body-to-file): Give error if no message.  (Bug#10082)
3222         * mail/rmail.el (rmail-current-message): Doc fix.
3224         * mail/rmail.el (rmail-message-filter): Mark as obsolete.  (Bug#2624)
3226 2011-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3228         * server.el (server-eval-and-print): Allow C-g (bug#6585).
3230 2011-11-22  Glenn Morris  <rgm@gnu.org>
3232         * mail/rmailmm.el (test-rmail-mime-handler)
3233         (test-rmail-mime-bulk-handler)
3234         (test-rmail-mime-multipart-handler): Move tests to test/ directory.
3236 2011-11-21  Juri Linkov  <juri@jurta.org>
3238         * calc/calc.el (calc-read-key-sequence):
3239         Let-bind `input-method-function' to nil.  (Bug#10018)
3241 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3243         * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
3244         Tell the caller that the next line needs recomputation, even
3245         though it doesn't start a sexp (bug#10094).
3247 2011-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3249         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
3251 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3253         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
3254         Use force-same-window.
3256 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
3258         * descr-text.el (describe-char-unicode-data):
3259         * json.el (json-string-escape):
3260         * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
3261         (Footnote-unicode, Footnote-style-p):
3262         * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
3264 2011-11-20  Chong Yidong  <cyd@gnu.org>
3266         * window.el (replace-buffer-in-windows): Restore interactive spec.
3268 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3270         * electric.el (electric-indent-mode): Fix last change (too optimistic).
3272         * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
3273         (byte-compile-global-not-obsolete-vars): New var.
3274         (byte-compile-check-variable, byte-compile-make-obsolete-variable):
3275         Use it.
3276         (byte-compile-warn-obsolete): Align text with the one in *Help*.
3278 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
3280         * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
3281         * progmodes/pascal.el (electric-pascal-equal):
3282         * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
3283         * xml.el (xml-substitute-special): Fix typos.
3285 2011-11-20  Glenn Morris  <rgm@gnu.org>
3287         * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
3288         (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
3289         Doc fixes.
3290         (rmail-decode-mime-charset): Mark as obsolete.
3292         * mail/rmailsum.el (rmail-message-regexp-p-1):
3293         * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
3294         Before using mime functions, check they are set.  (Bug#10077)
3296 2011-11-19  Juri Linkov  <juri@jurta.org>
3298         * info.el (Info-finder-find-node): Use `package--builtins' instead
3299         of `package-alist'.  Use node names formed by the pattern "Keyword "
3300         and the keyword name.
3302 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
3304         * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
3306 2011-11-19  Juri Linkov  <juri@jurta.org>
3308         * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
3309         that calls `revert-buffer' on all Info buffers.  (Bug#9915)
3310         (Info-revert-find-node): Remove let-bindings `old-buffer-name',
3311         `old-history', `old-history-forward'.  Add let-binding
3312         `window-selected'.  Remove calls to `kill-buffer',
3313         `switch-to-buffer' and `Info-mode'.  Set `Info-current-file' to nil
3314         before calling `Info-find-node', so `Info-find-node-2' will reread
3315         the Info file.  Restore window positions only when `window-selected'
3316         is non-nil.
3318 2011-11-19  Juri Linkov  <juri@jurta.org>
3320         * isearch.el (isearch-lazy-highlight-new-loop):
3321         Remove condition `(not isearch-error)'.  (Bug#9918)
3323         * misearch.el (multi-isearch-search-fun): Add condition
3324         `(not bound)' to ignore lazy-highlighting search.
3325         Add the search-failed message "end of multi" when the end of
3326         multi-sequence is reached.  Uncapitalize the search-failed
3327         message "Repeat for next buffer".
3329         * info.el (Info-search): Add the search-failed message
3330         "end of the manual" when the end of the manual is reached
3331         in Isearch mode.
3333 2011-11-19  Juri Linkov  <juri@jurta.org>
3335         * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
3336         Use non-destructive `remove' instead of `delete' because
3337         `Info-history-list' stored to `Info-isearch-initial-history-list' in
3338         `Info-isearch-start' might need to be restored in `Info-isearch-end'.
3340 2011-11-19  Juri Linkov  <juri@jurta.org>
3342         * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
3343         to nil instead of binding `search-ring' and `regexp-search-ring'.
3344         (Bug#9185)
3346 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
3348         * simple.el (line-move): Force movement by logical lines for any
3349         hscrolled window, not only when auto-hscroll-mode is on.
3350         (line-move-visual): Update doc string to that effect.  (Bug#10076)
3352 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
3354         * language/european.el (macintosh): Define as alias for mac-roman.
3356 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
3358         * mail/rmailmm.el (rmail-mime-display-header)
3359         (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
3360         (rmail-mime-entity-segment, rmail-mime-toggle-raw)
3361         (rmail-mime-toggle-hidden, rmail-mime-insert-text)
3362         (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
3363         (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
3364         of a raw aref.
3365         (rmail-mime-entity-segment): To get past the tagline, move forward
3366         2 more lines, to account for the 2 empty lines that precede and
3367         follow the line with the buttons.
3368         (rmail-mime-update-tagline): Move one more line, to get past the
3369         empty line that follows the buttons in the tagline.  (Bug#9520)
3371 2011-11-19  Martin Rudalics  <rudalics@gmx.at>
3373         * window.el (window-max-delta-1, window-min-delta-1)
3374         (window-min-size-1, window-state-get-1, window-state-put-1)
3375         (window-state-put-2): Use "window--" prefix.
3377 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
3379         * emacs-lisp/smie.el: Improve warnings and conflict detection.
3380         (smie-warning-count): New var.
3381         (smie-set-prec2tab): Use it.
3382         (smie-bnf->prec2): Improve warnings.  Add docstring.
3383         (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
3384         (smie-bnf--set-class): New function.
3385         (smie-bnf--classify): Rename from smie-bnf-classify.  Rewrite to fix
3386         corner case.
3388         * progmodes/compile.el: Obey compilation-first-column in dest buffer.
3389         (compilation-error-properties, compilation-move-to-column):
3390         Handle compilation-first-column while in the target buffer.
3392         * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
3393         Don't hardcode point-min==1.
3395         * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
3396         (eshell-rewrite-for-command): Remove workaround.
3397         (eshell-do-pipelines, eshell-do-pipelines-synchronously)
3398         (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
3399         * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
3401         * files-x.el (modify-file-local-variable): Obey commenting conventions.
3403 2011-11-17  Glenn Morris  <rgm@gnu.org>
3405         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3406         Ignore buffer-local generated-autoload-file if it is the same
3407         as the global value.  (Bug#10049)
3409 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
3411         * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
3412         (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
3413         (reftex-toc-previous-heading, reftex-toc-max-level)
3414         (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
3415         (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
3416         (reftex-toc-do-promote, reftex-toc-promote-prepare)
3417         (reftex-toc-promote-action, reftex-toc-extract-section-number)
3418         (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
3419         (reftex-toc-rename-label, reftex-toc-visit-location)
3420         (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
3421         (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
3422         (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
3423         leaving "*toc*" only for references to the buffer.
3425 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
3427         * window.el (window-resize, delete-window, split-window):
3428         Replace window-splits by window-combination-resize.
3429         * cus-start.el (window-splits): Replace by window-combination-resize.
3431 2011-11-17  Glenn Morris  <rgm@gnu.org>
3433         * progmodes/sh-script.el (sh-font-lock-keywords-var):
3434         Make bash entry derive from sh entry, not shell entry.
3436 2011-11-16  Michael Albinus  <michael.albinus@gmx.de>
3438         * net/tramp-cache.el (tramp-flush-file-property): Flush also
3439         properties of linked files.  (Bug#9879)
3441         * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
3442         local file name.
3444 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
3446         * menu-bar.el (menu-bar-file-menu):
3447         * printing.el (pr-ps-utility):
3448         * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
3449         (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
3450         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
3451         (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
3452         (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
3453         (icalendar--convert-cyclic-to-ical)
3454         (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
3455         (icalendar--convert-ical-to-diary)
3456         (icalendar--convert-recurring-to-diary)
3457         (icalendar--convert-non-recurring-all-day-to-diary)
3458         (icalendar-import-format-sample):
3459         * progmodes/idlw-shell.el (idlwave-shell-mode):
3460         * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
3461         (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
3462         (vhdl-ps-print-init): Fix typos.
3464 2011-11-16  Ken Manheimer  <ken.manheimer@gmail.com>
3466         * allout.el, allout-widgets.el (file metadata): Attribute copyright to
3467         FSF and collapse date sequence, obscure author/maintainer email address
3468         better, remove extra version line, track relocation of author's webpage.
3470         * progmodes/python.el (python-pdbtrack-input-prompt)
3471         (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
3472         regular python pdb prompts.  Adjustments shamelessly taken exactly as
3473         suggested in EmacsWiki page (tiny change):
3474         http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
3476 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
3478         * expand.el (expand-pos, expand-index, expand-point):
3479         Remove redundant info from docstring.
3480         (expand-add-abbrevs): Doc fix.
3481         (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
3482         (expand-sample-perl-mode-expand-list): Fix typos.
3484         * net/dbus.el (dbus-event-member-name):
3485         * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
3486         * term/pc-win.el (msdos-create-frame-with-faces):
3487         * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
3489 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
3491         * window.el (split-window, window-state-get-1)
3492         (window-state-put-1, window-state-put-2): Rename occurrences of
3493         window-nest to window-combination-limit.
3494         * cus-start.el (window-nest): Rename to window-combination-limit.
3496 2011-11-16  Chong Yidong  <cyd@gnu.org>
3498         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
3499         regexp (Bug#10033).
3501 2011-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3503         * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
3504         `completing-read' will remove *Completions* and will preserve
3505         current-buffer for us.
3506         (tmm-add-prompt): Users of *Completions* will always (re)set its
3507         major mode.
3508         (tmm-old-comp-map): Remove.
3510 2011-11-16  Glenn Morris  <rgm@gnu.org>
3512         * mail/rmailedit.el: Require rmailmm when compiling.
3513         (rmail-old-mime-state): New declaration.
3514         (rmail-edit-current-message): If editing a mime message,
3515         edit the "raw" message from the mbox buffer.
3516         (rmail-cease-edit): Handle mime messages.  (Bug#9840)
3518 2011-11-15  Glenn Morris  <rgm@gnu.org>
3520         * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
3521         which wasn't being used.  Add optional arg to force given state.
3522         (rmail-mime): Add optional arg to force given state.
3524 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
3526         * allout.el (allout-encryption-plaintext-sanitization-regexps):
3527         * frame.el (display-mm-dimensions-alist):
3528         * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
3529         (outline-move-subtree-down):
3530         * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
3531         (newsticker--treeview-do-get-node):
3532         * net/quickurl.el (quickurl-list-buffer-name):
3533         * progmodes/dcl-mode.el (dcl-mode):
3534         * progmodes/gdb-mi.el (gdb-mapcar*):
3535         * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
3537 2011-11-15  Glenn Morris  <rgm@gnu.org>
3539         * mail/rmail.el (rmail-file-coding-system): It's only ever used
3540         in a boolean sense, so just make it a boolean, and fix the doc.
3541         (rmail-show-mime-function, rmail-mime-feature)
3542         (rmail-require-mime-maybe): Doc fixes.
3543         (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
3545         * mail/rmailmm.el (rmail-show-mime): Doc fix.
3547 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
3549         * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
3550         (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
3551         (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
3552         (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
3554 2011-11-15  Glenn Morris  <rgm@gnu.org>
3556         * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
3557         (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
3558         (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
3559         (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
3560         (rmail-mime, rmail-show-mime): Doc fixes.
3562         * term/ns-win.el (mode-line-frame-identification):
3563         Leave it alone.  (Bug#10051)
3565         * simple.el (mark-whole-buffer): Doc fix.  (Bug#10023)
3567         * mail/rmailout.el (rmail-output-to-rmail-buffer):
3568         Handle empty buffers.  (Bug#9978)
3570 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
3572         * international/mule.el (define-charset):
3573         * mail/rmailmm.el (rmail-mime-find-header-encoding):
3574         * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
3575         * progmodes/verilog-mode.el (verilog-backward-token):
3576         * textmodes/ispell.el (lookup-words):
3577         * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
3579 2011-11-14  Glenn Morris  <rgm@gnu.org>
3581         * progmodes/executable.el
3582         (executable-make-buffer-file-executable-if-script-p):
3583         Handle file-modes returning nil.
3585         * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
3586         message - not necessary, and causes problems.  (Bug#9831)
3588         * mail/rmailsum.el (rmail-new-summary): Preserve message number.
3590         * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
3592         * mail/rmailsum.el (rmail-summary, rmail-new-summary)
3593         (rmail-new-summary-1): Allow empty summaries.  (Bug#9964)
3594         (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
3596 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
3598         * window.el (window-resize, delete-window): Use window-splits
3599         variable instead of function.
3600         (window-state-get-1, window-state-put-2, window-state-put):
3601         Don't deal with windows' splits status.
3603 2011-11-12  Glenn Morris  <rgm@gnu.org>
3605         * apropos.el (apropos-do-all, apropos-library, apropos-value)
3606         (apropos-documentation): Doc fixes.
3608 2011-11-11  Juanma Barranquero  <lekktu@gmail.com>
3610         * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
3611         * textmodes/sgml-mode.el (html-tag-help): Fix typos.
3613 2011-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3615         * electric.el (electric-indent-post-self-insert-function): Make it
3616         possible for a char to only indent in some circumstances.
3617         (electric-indent-mode): Simplify.
3619 2011-11-11  Martin Rudalics  <rudalics@gmx.at>
3621         * window.el (windows-with-parameter): Remove unused function.
3622         (windows-at-side): Rename to window-at-side-list.
3623         (window-check, window-atom-check, window-atom-check-1)
3624         (window-side-check, window-size-ignore, window-size-fixed-1)
3625         (window-in-direction-2): Prefix with "window--".
3626         (window-tree-1): Rename to window--subtree, fix doc-string.
3628 2011-11-11  Glenn Morris  <rgm@gnu.org>
3630         * subr.el (eval-after-load): If FILE is already loaded,
3631         evaluate FORM before it gets wrapped in more stuff.  (Bug#10009)
3633 2011-11-10  Glenn Morris  <rgm@gnu.org>
3635         * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
3636         Call svn via vc-svn-command rather than vc-do-command.
3637         (vc-svn-command): Add --non-interactive.  (Bug#9993)
3638         (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
3640         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
3641         Add toggle-read-only.  (Bug#7292)
3642         * files.el (toggle-read-only): Mention that it should only
3643         be used interactively.  (Bug#10006)
3645 2011-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3647         * progmodes/compile.el (compilation-error-regexp-alist-alist):
3648         Adjust regexp for OCaml warnings.
3650         * electric.el (electric-pair-post-self-insert-function): Let user
3651         turn it off buffer-locally (bug#9932).
3653         * progmodes/python.el (python-beginning-of-statement):
3654         Rewrite (bug#2703).
3656         * progmodes/compile.el: Better handle TABs (bug#9749).
3657         (compilation-internal-error-properties)
3658         (compilation-next-error-function): Obey the target buffer's
3659         compilation-error-screen-columns.
3661 2011-11-09  Juanma Barranquero  <lekktu@gmail.com>
3663         * progmodes/meta-mode.el: Remove obsolete comments.
3664         (meta-right-comment-regexp, meta-ignore-comment-regexp):
3665         Fix typos in docstrings.
3667 2011-11-09  Martin Rudalics  <rudalics@gmx.at>
3669         * window.el (window-size-fixed-p): Rewrite doc-string.
3670         (window-resizable-p): Rename to window--resizable-p.  Update callers.
3671         (window--resizable): New function.  Make all callers of
3672         window-resizable call window--resizable instead.
3673         (window-resizable): Rewrite in terms of window--resizable.
3675 2011-11-08  Glenn Morris  <rgm@gnu.org>
3677         * progmodes/delphi.el (delphi-mode-syntax-table):
3678         Let define-derived-mode define a proper syntax table.  (Bug#9994)
3680 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3682         * window.el: Stay away from defsubst.
3683         (window-list-no-nils): Remove.
3684         (window-state-get-1, window-state-get): Use backquote instead.
3686 2011-11-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3688         * emacs-lisp/find-func.el (find-function-read):
3689         Fix incorrect use of default argument in `completing-read'.
3691 2011-11-08  Martin Rudalics  <rudalics@gmx.at>
3693         * window.el (display-buffer-function, special-display-function):
3694         Mention display-buffer-record-window but do not mention
3695         help-setup parameter in doc-strings.
3696         (window-min-delta): Fix doc-string typo.
3698 2011-11-08  Chong Yidong  <cyd@gnu.org>
3700         * window.el (window-total-height, window-total-width): Doc fix.
3701         (window-body-size): Move from C.
3702         (window-body-height, window-body-width): Move to C.
3704 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3706         * window.el: Make special-display like display-buffer-alist (bug#9532).
3707         (display-buffer--special-action): New function, morphed
3708         from display-buffer--special.
3709         (display-buffer): Use it to handle special-display-buffers at higher
3710         priority (just after display-buffer-alist).
3711         (display-buffer-fallback-action, display-buffer--other-frame-action)
3712         (pop-to-buffer-same-window): Remove display-buffer--special.
3714 2011-11-07  Glenn Morris  <rgm@gnu.org>
3716         * calendar/cal-menu.el (cal-menu-set-date-title):
3717         Do nothing if not in a calendar.  (Bug#9976)
3719 2011-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3721         * files.el (find-file): Always use selected-window.
3723 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
3725         * window.el (window-combinations): Make WINDOW argument
3726         mandatory.  Rewrite doc-string.
3727         (walk-window-subtree, window-atom-check, window-min-delta)
3728         (window-max-delta, window--resize-this-window)
3729         (window--resize-root-window-vertically, window-tree)
3730         (balance-windows, window-state-put): Rewrite doc-strings as to
3731         not mention the term "subwindow".
3732         (window--resize-subwindows-skip-p): Rename to
3733         window--resize-child-windows-skip-p.
3734         (window--resize-subwindows-normal): Rename to
3735         window--resize-child-windows-normal.
3736         (window--resize-subwindows): Rename to
3737         window--resize-child-windows.
3738         (window-or-subwindow-p): Rename to window--in-subtree-p.
3740 2011-11-07  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
3742         * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
3743         Ensure that mbox format messages end in two newlines (Bug#9974).
3745 2011-11-06  Chong Yidong  <cyd@gnu.org>
3747         * window.el (window-combination-p): Function deleted; its
3748         side-effect is not used in any existing code.
3749         (window-combinations, window-combined-p): Call window-*-child
3750         directly.
3752 2011-11-05  Chong Yidong  <cyd@gnu.org>
3754         * window.el (window-valid-p): Rename from window-any-p.
3755         (window-size-ignore, window-state-get): Callers changed.
3756         (window-normalize-window): Rename from window-normalize-any-window.
3757         New arg LIVE-ONLY, replacing window-normalize-live-window.
3758         (window-normalize-live-window): Delete.
3759         (window-combination-p, window-combined-p, window-combinations)
3760         (walk-window-subtree, window-atom-root, window-min-size)
3761         (window-sizable, window-sizable-p, window-size-fixed-p)
3762         (window-min-delta, window-max-delta, window-resizable)
3763         (window-resizable-p, window-full-height-p, window-full-width-p)
3764         (window-current-scroll-bars, window-point-1, set-window-point-1)
3765         (window-at-side-p, window-in-direction, window-resize)
3766         (adjust-window-trailing-edge, maximize-window, minimize-window)
3767         (window-deletable-p, delete-window, delete-other-windows)
3768         (record-window-buffer, unrecord-window-buffer)
3769         (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
3770         (quit-window, split-window, window-state-put)
3771         (set-window-text-height, fit-window-to-buffer)
3772         (shrink-window-if-larger-than-buffer): Callers changed.
3774 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
3776         * mail/rmail.el (rmail-simplified-subject): Decode subject with
3777         rfc2047-decode-string.
3778         (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
3779         warnings.
3781         * window.el (window-body-height, window-body-width): Mention in
3782         the doc string that the return values are in frame's canonical
3783         units.  (Bug#9949)
3785 2011-11-03  Alan Mackenzie  <acm@muc.de>
3787         * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
3788         change in cc-engine.el.
3790 2011-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3792         * window.el (switch-to-buffer): Use `force-same-window' interactively.
3794 2011-11-02  Martin Rudalics  <rudalics@gmx.at>
3796         * window.el (quit-window): Call unrecord-window-buffer after
3797         showing another buffer in the window.  (Bug#9937)
3798         (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
3800 2011-11-02  Juanma Barranquero  <lekktu@gmail.com>
3802         * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
3803         Accept status with more than 9 shelves.  (Bug#9935)
3804         Reported by Colin D Bennett <colin@gibibit.com>.
3806 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
3808         * help.el (with-help-window): Don't reference
3809         temp-buffer-show-specifiers in doc-string.
3811 2011-10-31  Andreas Schwab  <schwab@linux-m68k.org>
3813         * subr.el (keymap--menu-item-with-binding): Ignore item if not a
3814         menu-item.
3816 2011-10-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3818         * whitespace.el: New version 13.2.2.
3819         (whitespace-newline-mode): Disable properly.  Reported by Sarah
3820         <EmacsWiki>.
3822 2011-10-30  Ulf Jasper  <ulf.jasper@web.de>
3824         * net/newst-treeview.el: Remove "Time-stamp".
3825         (newsticker--group-manage-orphan-feeds): Do not call
3826         newsticker--treeview-tree-update.
3827         (newsticker-treeview-update, newsticker-treeview):
3828         Call newsticker--treeview-tree-update if necessary.
3830 2011-10-30  Martin Rudalics  <rudalics@gmx.at>
3832         * window.el (window-iso-combination-p, window-iso-combined-p)
3833         (window-iso-combinations): Remove "iso-" infix.
3834         Suggested by Chong Yidong.
3835         (window-min-size-1, window-size-fixed-1, window-min-delta-1)
3836         (window-max-delta-1, window-resize, window--resize-siblings)
3837         (window--resize-this-window, adjust-window-trailing-edge)
3838         (split-window, balance-windows-1)
3839         (shrink-window-if-larger-than-buffer):
3840         * calendar/calendar.el (calendar-generate-window):
3841         * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3843 2011-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3845         * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
3846         in place (bug#9907).
3847         (eshell-subcommand-arg-values, eshell-rewrite-named-command)
3848         (eshell-rewrite-if-command, eshell-rewrite-for-command)
3849         (eshell-structure-basic-command, eshell-rewrite-while-command)
3850         (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
3851         (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
3852         (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
3853         (eshell-do-pipelines-synchronously, eshell-eval-command):
3854         Use backquotes and prefer setq to set.
3855         (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
3856         (eshell-macrop): Use functionp.
3857         (eshell-do-eval): Handle multiple expressions in `while' body.
3859 2011-10-30  Chong Yidong  <cyd@gnu.org>
3861         * emulation/viper-cmd.el (viper-exec-change): Use push-mark
3862         instead of set-mark (Bug#9810).
3864 2011-10-30  Chong Yidong  <cyd@gnu.org>
3866         * window.el (split-window-below, split-window-right): Rename from
3867         split-window-above-each-other and split-window-side-by-side
3868         respectively.  All callers changed.
3869         (split-window-sensibly, split-window-sensibly): Use them.
3870         (split-window-keep-point): Doc fix.
3872         * isearch.el: Add isearch-scroll property to split-window-below
3873         and split-window-right.
3875         * follow.el (follow-mode):
3876         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
3877         * progmodes/ada-xref.el (ada-gdb-application):
3878         * emulation/vip.el (vip-buffer-in-two-windows):
3879         * image-dired.el (image-dired-dired-with-window-configuration):
3880         * dired-x.el (dired-do-find-marked-files):
3881         * dired.el (dired-pop-to-buffer):
3882         * bs.el (bs--show-with-configuration):
3883         * vc/emerge.el (emerge-setup-windows):
3884         * textmodes/two-column.el (2C-two-columns):
3885         * textmodes/reftex-toc.el (reftex-toc):
3886         * progmodes/gdb-mi.el (gdb-setup-windows):
3887         * progmodes/fortran.el (fortran-window-create):
3888         * net/newst-treeview.el (newsticker--treeview-window-init):
3889         * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
3890         * emulation/tpu-edt.el (tpu-gold-map):
3891         * emulation/crisp.el (crisp-mode-map):
3892         * calendar/calendar.el (calendar-basic-setup): Callers changed.
3894 2011-10-29  Chong Yidong  <cyd@gnu.org>
3896         * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
3898         * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
3900         * textmodes/flyspell.el (flyspell-word): Fix char offset for
3901         forged Ispell output (Bug#7904).
3903         * emacs-lisp/package.el (package-refresh-contents): Add autoload.
3905 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3907         * doc-view.el: Avoid ugly errors about not finding nil.
3908         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
3909         (doc-view-dvipdf-program, doc-view-unoconv-program)
3910         (doc-view-ps2pdf-program, doc-view-pdftotext-program):
3911         Avoid nil or absolute file name as default value.
3912         (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
3914 2011-10-28  Alan Mackenzie  <acm@muc.de>
3916         * progmodes/cc-defs.el (c-version): -> 5.32.2.
3918 2011-10-28  Alan Mackenzie  <acm@muc.de>
3920         Amend the handling of c-beginning/end-of-defun in nested declaration
3921         scopes.
3923         * progmodes/cc-vars.el (c-defun-tactic): Move here from
3924         cc-langs.el.  Change it to a defcustom.
3926         * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
3927         cc-vars.el.
3929         * progmodes/cc-engine.el (c-beginning-of-statement-1):
3930         Prevent "class foo : bar" being spuriously recognized as a label.
3932         * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
3933         Add parameter `inclusive' (to include enclosing braces in the region).
3934         (c-widen-to-enclosing-decl-scope): New function.
3935         (c-while-widening-to-decl-block): New macro.
3936         (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
3937         outward for defun boundaries, and correspondingly change symbol
3938         `respect-enclosure' to `go-outward'.
3939         (c-declaration-limits): Change algorithm to report only the "innermost"
3940         defun's boundaries.
3942 2011-10-28  Deniz Dogan  <deniz@dogan.se>
3944         * net/rcirc.el (rcirc-mode): Use hard newlines.
3946 2011-10-28  Alan Mackenzie  <acm@muc.de>
3948         Amend to indent and fontify macros "which include their own semicolon"
3949         correctly, using the "virtual semicolon" mechanism.
3951         * progmodes/cc-defs.el: Update "virtual semicolon" comments.
3953         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
3954         Recode to scan one line at a time rather than having \n and \r
3955         explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
3956         (c-forward-label): Amend for virtual semicolons.
3957         (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
3959         * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
3960         of the new C macros.
3962         * progmodes/cc-langs.el (c-at-vsemi-p-fn):
3963         (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
3964         (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
3965         (c-opt-cpp-macro-define): Make into a full language variable.
3966         (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
3967         AWK Mode (including \n, \r) removed, no longer needed.
3969         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
3970         Invoke c-make-macro-with-semi-re.
3972         * progmodes/cc-vars.el (c-macro-with-semi-re):
3973         (c-macro-names-with-semicolon): New variables.
3974         (c-make-macro-with-semi-re): New function.
3976 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3978         * vc/log-edit.el: Fill empty field rather than adding new one.
3979         (log-edit-add-field): New function.
3980         (log-edit-insert-changelog): Use it.
3982 2011-10-28  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
3984         * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
3986 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3988         * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
3989         (gdb--check-interpreter): New function.
3990         (gdb): Use it.
3992 2011-10-27  Glenn Morris  <rgm@gnu.org>
3994         * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
3995         (least-positive-float, least-negative-float)
3996         (least-positive-normalized-float, least-negative-normalized-float)
3997         (float-epsilon, float-negative-epsilon):
3998         Remove unnecessary declarations.
4000         * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
4001         * emacs-lisp/cl.el (most-positive-float, most-negative-float)
4002         (least-positive-float, least-negative-float)
4003         (least-positive-normalized-float, least-negative-normalized-float)
4004         (float-epsilon, float-negative-epsilon): Add doc-strings,
4005         based on those in cl.texi.
4007         * files.el (set-visited-file-name): If the major-mode changed,
4008         reload the local variables.  (Bug#9796)
4010 2011-10-27  Chong Yidong  <cyd@gnu.org>
4012         * subr.el (change-major-mode-after-body-hook): New hook.
4013         (run-mode-hooks): Run it.
4015         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
4016         Use change-major-mode-before-body-hook.
4018         * simple.el (fundamental-mode):
4019         * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
4020         change introducing fundamental-mode-hook.
4022 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
4024         * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
4026 2011-10-26  Michael Albinus  <michael.albinus@gmx.de>
4028         * ido.el (ido-file-name-all-completions-1): Do not require
4029         tramp.el explicitly.  (Bug#7583)
4031 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4033         * progmodes/octave-mod.el:
4034         * progmodes/octave-inf.el: Update maintainer.
4036 2011-10-26  Chong Yidong  <cyd@gnu.org>
4038         * subr.el (with-wrapper-hook): Rewrite doc.
4040 2011-10-25  Michael Albinus  <michael.albinus@gmx.de>
4042         * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
4043         filenames "/method:foo:".  (Bug#9793)
4045 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4047         * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
4048         (bug#9865).
4050 2011-10-24  Glenn Morris  <rgm@gnu.org>
4052         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.  (Bug#9819)
4054 2011-10-24  Michael Albinus  <michael.albinus@gmx.de>
4056         * notifications.el: Add the requirement of a running D-Bus session
4057         bus to the Commentary.
4059 2011-10-24  Juri Linkov  <juri@jurta.org>
4061         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
4062         `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
4063         (Bug#9364)
4065 2011-10-24  Juri Linkov  <juri@jurta.org>
4067         * info.el (Info-following-node-name-re): Add newline to the list
4068         of allowed characters for leading space.  (Bug#9824)
4070 2011-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4072         * progmodes/octave-inf.el (inferior-octave-mode-map):
4073         Fix C-c C-h binding.
4074         * progmodes/octave-mod.el (octave-help): Remove.
4076 2011-10-23  Michael Albinus  <michael.albinus@gmx.de>
4078         Sync with Tramp 2.2.3.
4080         * net/tramp-cache.el (top): Pacify byte-compiler using
4081         `init-file-user' and `site-run-file'.
4083         * net/trampver.el: Update release number.
4085 2011-10-23  Chong Yidong  <cyd@gnu.org>
4087         * files.el (toggle-read-only): Remove obsolete comment about
4088         version control.
4090         * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
4091         for toggle-read-only.  Note that this hasn't called vc-next-action
4092         since 2008-05-02, though it wasn't documented at the time.
4094         * vc/ediff-init.el (ediff-toggle-read-only-function):
4095         Use toggle-read-only.
4097 2011-10-22  Alan Mackenzie  <bug-cc-mode@gnu.org>
4099         Fix bug #9560, sporadic wrong indentation; improve instrumentation
4100         of c-parse-state.
4102         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
4103         correct faulty logical expression.
4104         (c-parse-state-state, c-record-parse-state-state):
4105         (c-replay-parse-state-state): New defvar/defuns.
4106         (c-debug-parse-state): Use new functions.
4108 2011-10-22  Martin Rudalics  <rudalics@gmx.at>
4110         * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
4111         last fix.  Use window-in-direction correctly.
4113 2011-10-21  Chong Yidong  <cyd@gnu.org>
4115         * progmodes/idlwave.el (idlwave-mode):
4116         * progmodes/vera-mode.el (vera-mode): No need to set
4117         require-final-newline; that's done in prog-mode.
4118         Suggested by Stefan Monnier.
4120 2011-10-21  Martin Rudalics  <rudalics@gmx.at>
4122         * mouse.el (mouse-drag-window-above)
4123         (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
4124         (mouse-drag-mode-line-1, mouse-drag-header-line)
4125         (mouse-drag-vertical-line-rightward-window): Remove.
4126         (mouse-drag-line): New function.
4127         (mouse-drag-mode-line, mouse-drag-header-line)
4128         (mouse-drag-vertical-line): Call mouse-drag-line.
4129         * window.el (window-at-side-p, windows-at-side): New functions.
4131 2011-10-21  Ulrich Mueller  <ulm@gentoo.org>
4133         * tar-mode.el (tar-grind-file-mode):
4134         Fix handling of setuid/setgid, handle sticky bit.  (Bug#9817)
4136 2011-10-21  Chong Yidong  <cyd@gnu.org>
4138         * progmodes/idlwave.el (idlwave-mode):
4139         * progmodes/vera-mode.el (vera-mode):
4140         Use mode-require-final-newline.
4142 2011-10-20  Glenn Morris  <rgm@gnu.org>
4144         * vc/vc.el (vc-next-action): Handle removed directories.  (Bug#9781)
4146 2011-10-20  Christoph Scholtes  <cschol2112@googlemail.com>
4148         * emulation/cua-base.el (cua-set-mark): Fix case of string.
4150 2011-10-20  Chong Yidong  <cyd@gnu.org>
4152         * emulation/cua-base.el (cua-mode):
4153         * mail/footnote.el (footnote-mode):
4154         * mail/mailabbrev.el (mail-abbrevs-mode):
4155         * net/xesam.el (xesam-minor-mode):
4156         * progmodes/bug-reference.el (bug-reference-mode):
4157         * progmodes/cap-words.el (capitalized-words-mode):
4158         * progmodes/compile.el (compilation-minor-mode)
4159         (compilation-shell-minor-mode):
4160         * progmodes/gud.el (gud-tooltip-mode):
4161         * progmodes/hideif.el (hide-ifdef-mode):
4162         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
4163         * progmodes/subword.el (subword-mode):
4164         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
4165         * progmodes/which-func.el (which-function-mode):
4166         * term/tvi970.el (tvi970-set-keypad-mode):
4167         * term/vt100.el (vt100-wide-mode):
4168         * textmodes/flyspell.el (flyspell-mode):
4169         * textmodes/ispell.el (ispell-minor-mode):
4170         * textmodes/nroff-mode.el (nroff-electric-mode):
4171         * textmodes/paragraphs.el (use-hard-newlines):
4172         * textmodes/refill.el (refill-mode):
4173         * textmodes/reftex.el (reftex-mode):
4174         * textmodes/rst.el (rst-minor-mode):
4175         * textmodes/sgml-mode.el (html-autoview-mode)
4176         (sgml-electric-tag-pair-mode):
4177         * textmodes/tex-mode.el (latex-electric-env-pair-mode):
4178         * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
4179         * emulation/crisp.el (crisp-mode):
4180         * emacs-lisp/eldoc.el (eldoc-mode):
4181         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
4182         minor mode behavior.
4184 2011-10-19  Juri Linkov  <juri@jurta.org>
4186         * descr-text.el (describe-char): Add #x2010 and #x2011 to
4187         the list of hard-coded chars with escape-glyph face.
4189 2011-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4191         * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
4193 2011-10-19  Michael Albinus  <michael.albinus@gmx.de>
4195         * net/tramp.el (tramp-connectable-p): Make a stronger check on a
4196         running process.
4198 2011-10-19  Glenn Morris  <rgm@gnu.org>
4200         * vc/vc-bzr.el (vc-bzr-after-dir-status):
4201         Ignore ignored files.  (Bug#9726)
4203 2011-10-19  Chong Yidong  <cyd@gnu.org>
4205         Doc fix for minor modes, stating that an omitted argument enables
4206         the mode unconditionally when called from Lisp.
4208         * abbrev.el (abbrev-mode):
4209         * allout.el (allout-mode):
4210         * autoinsert.el (auto-insert-mode):
4211         * autoarg.el (autoarg-mode, autoarg-kp-mode):
4212         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
4213         (global-auto-revert-mode):
4214         * battery.el (display-battery-mode):
4215         * composite.el (global-auto-composition-mode)
4216         (auto-composition-mode):
4217         * delsel.el (delete-selection-mode):
4218         * desktop.el (desktop-save-mode):
4219         * dired-x.el (dired-omit-mode):
4220         * dirtrack.el (dirtrack-mode):
4221         * doc-view.el (doc-view-minor-mode):
4222         * double.el (double-mode):
4223         * electric.el (electric-indent-mode, electric-pair-mode):
4224         * emacs-lock.el (emacs-lock-mode):
4225         * epa-hook.el (auto-encryption-mode):
4226         * follow.el (follow-mode):
4227         * font-core.el (font-lock-mode):
4228         * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
4229         * help.el (temp-buffer-resize-mode):
4230         * hilit-chg.el (highlight-changes-mode)
4231         (highlight-changes-visible-mode):
4232         * hi-lock.el (hi-lock-mode):
4233         * hl-line.el (hl-line-mode, global-hl-line-mode):
4234         * icomplete.el (icomplete-mode):
4235         * ido.el (ido-everywhere):
4236         * image-file.el (auto-image-file-mode):
4237         * image-mode.el (image-minor-mode):
4238         * iswitchb.el (iswitchb-mode):
4239         * jka-cmpr-hook.el (auto-compression-mode):
4240         * linum.el (linum-mode):
4241         * longlines.el (longlines-mode):
4242         * master.el (master-mode):
4243         * mb-depth.el (minibuffer-depth-indicate-mode):
4244         * menu-bar.el (menu-bar-mode):
4245         * minibuf-eldef.el (minibuffer-electric-default-mode):
4246         * mouse-sel.el (mouse-sel-mode):
4247         * msb.el (msb-mode):
4248         * mwheel.el (mouse-wheel-mode):
4249         * outline.el (outline-minor-mode):
4250         * paren.el (show-paren-mode):
4251         * recentf.el (recentf-mode):
4252         * reveal.el (reveal-mode, global-reveal-mode):
4253         * rfn-eshadow.el (file-name-shadow-mode):
4254         * ruler-mode.el (ruler-mode):
4255         * savehist.el (savehist-mode):
4256         * scroll-all.el (scroll-all-mode):
4257         * scroll-bar.el (scroll-bar-mode):
4258         * server.el (server-mode):
4259         * shell.el (shell-dirtrack-mode):
4260         * simple.el (auto-fill-mode, transient-mark-mode)
4261         (visual-line-mode, overwrite-mode, binary-overwrite-mode)
4262         (line-number-mode, column-number-mode, size-indication-mode)
4263         (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
4264         * strokes.el (strokes-mode):
4265         * time.el (display-time-mode):
4266         * t-mouse.el (gpm-mouse-mode):
4267         * tool-bar.el (tool-bar-mode):
4268         * tooltip.el (tooltip-mode):
4269         * type-break.el (type-break-mode-line-message-mode)
4270         (type-break-query-mode):
4271         * view.el (view-mode):
4272         * whitespace.el (whitespace-mode, whitespace-newline-mode)
4273         (global-whitespace-mode, global-whitespace-newline-mode):
4274         * xt-mouse.el (xterm-mouse-mode): Doc fix.
4276         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
4277         Fix autogenerated docstring.
4279 2011-10-19  Juri Linkov  <juri@jurta.org>
4281         * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
4282         by checking environment variables "DESKTOP_SESSION" and
4283         "XDG_CURRENT_DESKTOP".  (Bug#9779)
4285 2011-10-19  Juri Linkov  <juri@jurta.org>
4287         * net/browse-url.el (browse-url-browser-function): Add "Chromium".
4288         (browse-url-chromium-program, browse-url-chromium-arguments):
4289         New defcustoms.
4290         (browse-url-default-browser): Check for `browse-url-chromium' and
4291         call `browse-url-chromium-program'.
4292         (browse-url-chromium): New command.  (Bug#9779)
4294 2011-10-18  Juanma Barranquero  <lekktu@gmail.com>
4296         * facemenu.el (list-colors-duplicates): On Windows, detect more
4297         duplicates by assuming that only colors matching "^System" are
4298         special "system colors".  (Bug#9722)
4300 2011-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4302         * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
4303         to distinguish the author from the committer.
4305 2011-10-18  Michael Albinus  <michael.albinus@gmx.de>
4307         * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
4309 2011-10-18  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
4311         * international/mule.el (sgml-html-meta-auto-coding-function):
4312         Add support for detecting encoding in HTML5 specified only as
4313         <meta charset="UTF-8">.  Implementation just makes http-equiv and
4314         content-type parts from HTML4 encoding string optional.  (Bug#9716)
4316 2011-10-18  Glenn Morris  <rgm@gnu.org>
4318         * vc/vc.el (vc-initial-comment): Mark as obsolete.  (Bug#9745)
4320 2011-10-18  Chong Yidong  <cyd@gnu.org>
4322         * faces.el (cursor): Doc fix.
4324 2011-10-17  Chong Yidong  <cyd@gnu.org>
4326         * font-lock.el (font-lock-maximum-size): Mark as obsolete.
4328 2011-10-17  Ryan Barrett  <emacs@ryanb.org>  (tiny change)
4330         * dirtrack.el (dirtrack): Support shell buffers with path
4331         prefixes, e.g. tramp-based remote shells.  (Bug#9647)
4333 2011-10-17  Teodor Zlatanov  <tzz@lifelogs.com>
4335         * json.el: Bump version to 1.3 and note change in History.
4336         (json-alist-p, json-plist-p): Rewrite to avoid recursion.
4338 2011-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4340         * comint.el (comint-insert-input, comint-send-input)
4341         (comint-get-old-input-default, comint-backward-matching-input)
4342         (comint-next-prompt): Use nil instead of `input' for field property of
4343         past user input (bug#114).
4345         * minibuffer.el (completion--replace): Inherit surrounding properties
4346         (bug#114).
4347         (minibuffer-complete-and-exit): Use it.
4349         * comint.el (comint--table-subvert): Quote the all-completions output
4350         (bug#9160).
4352 2011-10-17  Martin Rudalics  <rudalics@gmx.at>
4354         * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4356         * menu-bar.el (menu-bar-file-menu): Add entry for making new
4357         window on right of selected.  (Bug#9350) Reword other window
4358         entries and separate them from frame entries.
4360 2011-10-15  Glenn Morris  <rgm@gnu.org>
4362         * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
4363         Doc fixes.
4365 2011-10-15  Chong Yidong  <cyd@stupidchicken.com>
4367         * net/network-stream.el (network-stream-open-starttls):
4368         Improve detection of failure due to lack of TLS support.
4370         * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
4371         putting the input text in front and in bold.
4373 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4375         * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
4377         * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
4378         empty buffer.
4380         * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
4381         unread-command-events rather than pushing yet-another event.
4383 2011-10-14  Eli Zaretskii  <eliz@gnu.org>
4385         * mail/sendmail.el (sendmail-query-once): Improve the wording of
4386         the explanation of the possible choices.  Make the options passed
4387         to completing-read shorter.
4389 2011-10-13  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
4391         * textmodes/flyspell.el (flyspell-large-region): Make sure
4392         extended character mode is used if defined (Bug#1339).
4394 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
4396         * simple.el (what-cursor-position): Fix the display of the
4397         character info for LRE, LRO, RLE, and RLO characters by appending
4398         an invisible PDF.
4400 2011-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4402         * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
4403         even in case of error; add debug spec; simplify data flow.
4404         (with-timeout-handler): Remove.
4406 2011-10-12  Michael Albinus  <michael.albinus@gmx.de>
4408         Fix Bug#6019, Bug#9315.
4410         * files.el (set-auto-mode): Call `file-name-sans-versions' for the
4411         complete `buffer-file-name', the local file name part could look
4412         remotely (for example on VMS).
4414         * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
4415         `tramp-run-real-handler'.
4416         (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
4417         already quoted by '"'.
4419         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
4420         Let `file-name-handler-alist' be nil, the local file name part
4421         could look remotely (for example on VMS).
4423 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4425         * textmodes/flyspell.el (flyspell-word): Move with-local-quit
4426         from here...
4427         (flyspell-post-command-hook): ...to here.
4429 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4431         * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
4432         if not needed.
4433         (sendmail-query-once): Remove OS dependencies.  Make it a 3-way choice
4434         using completion.  Protect against "slow" callers.
4435         Remove the "message hack".
4437 2011-10-11  Juri Linkov  <juri@jurta.org>
4439         * isearch.el (isearch-lazy-highlight-word): New variable.
4440         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
4441         Use it.  (Bug#9727)
4443 2011-10-11  Glenn Morris  <rgm@gnu.org>
4445         * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
4446         like f90-previous-statement does.
4448 2011-10-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4450         * eshell/eshell.el (eshell-command): History should be saved
4451         only in interactive use, to avoid error.
4453 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4455         * minibuffer.el (completion-file-name-table): Fix last change,
4456         i.e. ignore normal errors but not the other ones.
4458 2011-10-10  Martin Rudalics  <rudalics@gmx.at>
4460         * window.el (special-display-buffer-names)
4461         (special-display-regexps): Remove some remnants of earlier
4462         changes from doc-strings.
4463         (quit-windows-on): New function.
4465         * vc/vc.el (vc-revert, vc-rollback):
4466         * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
4467         instead of deleting windows.  (Bug#4557) (Bug#5310) (Bug#5556)
4468         (Bug#6183) (Bug#7074) (Bug#7447)
4470 2011-10-09  Martin Rudalics  <rudalics@gmx.at>
4472         * window.el (frame-auto-hide-function): Add version tag.
4473         (Bug#9699)
4475 2011-10-09  Michael Albinus  <michael.albinus@gmx.de>
4477         * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
4478         condition.
4480 2011-10-09  Leo Liu  <sdl.web@gmail.com>
4482         * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
4483         (Bug#9701)
4485 2011-10-08  Glenn Morris  <rgm@gnu.org>
4487         * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
4488         before the first code statement zero indent.  (Bug#9690)
4490 2011-10-08  Chong Yidong  <cyd@stupidchicken.com>
4492         * simple.el (count-words-region): Always count in the region.
4493         Report the number of lines and characters too.
4494         (count-words): New command, which counts in the buffer if the
4495         region is inactive, as count-words-region used to.
4496         (count-words--message): New function.  Handle plurals.
4497         (count-lines-region): Make it an alias for count-words-region.
4499         * bindings.el (esc-map): Replace count-lines-region with
4500         count-words-region.
4502 2011-10-08  Martin Rudalics  <rudalics@gmx.at>
4504         * window.el (window--delete): Delete dedicated frame
4505         unconditionally when argument KILL is non-nil.  (Bug#9699)
4506         (switch-to-buffer): Fix doc-string typo.
4508 2011-10-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4510         * eshell/eshell.el (eshell-command): Avoid using hooks.
4512 2011-10-07  Chong Yidong  <cyd@stupidchicken.com>
4514         * bindings.el ([M-left],[M-right]): Bind to left-word and
4515         right-word respectively.
4517 2011-10-07  Glenn Morris  <rgm@gnu.org>
4519         * cus-start.el (debug-on-quit): Fix custom type.
4521 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4523         * subr.el (define-key-after): Clarify that the function is not
4524         useful for non-menu keymaps.
4526         * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
4528 2011-10-06  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4530         * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
4531         in current minibuffer (Fix bug with recursive minibuffers).
4533 2011-10-06  Chong Yidong  <cyd@stupidchicken.com>
4535         * progmodes/gdb-mi.el (gdb): Doc fix.
4537 2011-10-05  Martin Rudalics  <rudalics@gmx.at>
4539         * window.el (frame-auto-hide-function): New option replacing
4540         frame-auto-delete.  Suggested by Stefan Monnier.
4541         (window--delete): Call frame-auto-hide-function instead of
4542         investigating frame-auto-delete.
4543         (window-point-1, set-window-point-1): New functions.
4544         (window-in-direction, record-window-buffer, window-state-get-1)
4545         (display-buffer-record-window): Use window-point-1 instead of
4546         window-point.
4547         (set-window-buffer-start-and-point): Use set-window-point-1.
4549 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4551         * emacs-lisp/edebug.el: Heed checkdoc recommendations.
4553 2011-10-05  Glenn Morris  <rgm@gnu.org>
4555         * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
4556         (perl-calculate-indent): Suppress scan errors.  (Bug#2205)
4558 2011-10-05  Leo Liu  <sdl.web@gmail.com>
4560         * subr.el (read-char-choice): Fix argument to buffer-live-p which
4561         works with buffer object.
4563 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4565         * mpc.el (mpc-tool-bar-map): Add labels.
4567 2011-10-04  Glenn Morris  <rgm@gnu.org>
4569         * calendar/holidays.el (calendar-check-holidays): Doc fix.
4571 2011-10-04  Martin Rudalics  <rudalics@gmx.at>
4573         * window.el (window--delete): New function.
4574         (frame-auto-delete): Resuscitate option.
4575         (bury-buffer, replace-buffer-in-windows)
4576         (quit-window): Rewrite using window--delete.
4577         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
4578         Pass display-buffer-mark-dedicated to window--display-buffer-2
4579         (Bug#9639).
4581 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4583         * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
4584         returns a list (bug#9554).  Add remote file name completion.
4585         * comint.el (comint--table-subvert): Curry and get quote&unquote
4586         functions as arguments.
4587         (comint--complete-file-name-data): Adjust call accordingly.
4588         * pcomplete.el (pcomplete--table-subvert): Remove.
4589         (pcomplete-completions-at-point): Use comint--table-subvert instead.
4591         * minibuffer.el (completion-table-case-fold): Use currying.
4592         (completion--styles-type, completion--cycling-threshold-type):
4593         New constants.
4594         (completion-styles, completion-category-overrides)
4595         (completion-cycle-threshold): Use them.
4596         * pcomplete.el (pcomplete-completions-at-point): Adjust call to
4597         completion-table-case-fold.
4599 2011-10-03  Stephen Berman  <stephen.berman@gmx.net>
4601         * minibuffer.el (completion-category-overrides): Fix type of styles
4602         and add more user friendly tags (bug#9660).
4604 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4606         * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
4607         (mule-input-method-string): New widget.
4608         (default-input-method, language-info-custom-alist): Use it.
4610 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4612         * pcomplete.el: Require comint.
4613         (pcomplete--common-suffix): Remove.
4614         (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
4615         (pcomplete--table-subvert): Sync with comint--table-subvert.
4616         (pcomplete--entries): Use comint-completion-file-name-table.
4617         * comint.el (comint-unquote-filename): Simplify.
4618         (comint-completion-file-name-table): New function (bug#9616).
4619         (comint--complete-file-name-data): Use it.
4621         * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
4622         (pcmpl-gnu-tar-buffer): Remove.
4623         (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
4624         around.  Make sure pcomplete-suffix-list is only changed temporarily.
4625         Don't look inside the tar's file if it's too large.
4627 2011-10-01  Chong Yidong  <cyd@stupidchicken.com>
4629         * cus-edit.el (custom-mode-map):
4630         * epa.el (epa-key-list-mode-map):
4631         * man.el (Man-mode-map):
4632         * startup.el (splash-screen-keymap):
4633         * simple.el (special-mode-map): Use scroll-up-command and
4634         scroll-down-command.
4636         * progmodes/idlw-help.el (idlwave-help-mode-map):
4637         * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
4638         * net/newst-plainview.el (newsticker-mode-map):
4639         * emulation/ws-mode.el (wordstar-mode-map):
4640         * emulation/vi.el (vi-com-map):
4641         * calc/calc-graph.el (calc-graph-show-dumb):
4642         * term/sun.el (terminal-init-sun):
4643         * term/ns-win.el (global-map):
4644         * progmodes/grep.el (grep-mode-map):
4645         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
4646         * mail/rmail.el (rmail-mode-map):
4647         * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
4649         * custom.el (custom-safe-themes, load-theme): Treat value of t for
4650         custom-safe-themes as special.
4652 2011-10-01  Julien Danjou  <julien@danjou.info>
4654         * notifications.el (notifications-notify): Fix docstring.
4656 2011-10-01  Per Starbäck  <per@starback.se>
4658         * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call.  (Bug#9643)
4660 2011-09-30  Martin Rudalics  <rudalics@gmx.at>
4662         * startup.el (command-line-1): Fix last fix by inserting
4663         initial-scratch-message into *scratch* before displaying it.
4664         (Bug#9605) and (Bug#9636)
4666 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
4668         * simple.el (line-move): If auto-hscroll-mode is disabled and the
4669         window is hscrolled, move by logical lines.  (Bug#9607)
4670         (line-move-visual): Update the doc string to the above effect.
4672 2011-09-29  Martin Rudalics  <rudalics@gmx.at>
4674         * window.el (display-buffer-record-window): When WINDOW is the
4675         selected window use `point' instead of `window-point'.  (Bug#9626)
4677         * startup.el (command-line-1): Use insert-before-markers when
4678         inserting initial-scratch-message.  (Bug#9605)
4680         * help.el (help-window): Remove variable.
4682 2011-09-29  Glenn Morris  <rgm@gnu.org>
4684         * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
4686 2011-09-29  Juanma Barranquero  <lekktu@gmail.com>
4688         * descr-text.el (describe-char-categories): Accept category
4689         descriptions more than one line long.
4691 2011-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4693         * simple.el (delete-trailing-whitespace): Fix last change.
4695         * progmodes/perl-mode.el (perl-syntax-propertize-function):
4696         Don't confuse "y => 3" as the beginning of a `y' operation.
4698         * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
4699         object has more than 4 slots (bug#9613).
4701 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
4703         * subr.el (with-output-to-temp-buffer):
4704         * net/quickurl.el (quickurl, quickurl-browse-url):
4705         Fix typos in docstrings.
4707 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
4709         * minibuffer.el (completion-styles)
4710         (completion-category-overrides): Cross reference each other in doc
4711         strings.
4713 2011-09-27  Glenn Morris  <rgm@gnu.org>
4715         * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
4716         to split-string.  (Bug#9606)
4718 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4720         * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
4721         (bug#9615).
4723 2011-09-27  Chong Yidong  <cyd@stupidchicken.com>
4725         * emacs-lisp/package.el (list-packages): Fix echo area message.
4727 2011-09-27  Leo Liu  <sdl.web@gmail.com>
4729         * ido.el (ido-read-internal): Accept cons cell HIST arg.
4731 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
4733         * net/dbus.el (dbus-unregister-object): Don't release services for
4734         registered signals.  (Bug#9581)
4736 2011-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
4738         * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
4739         function that picks between cfengine 2 and 3 support
4740         automatically.  Update docs accordingly.
4742 2011-09-22  Kenichi Handa  <handa@m17n.org>
4744         * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
4745         ZERO.
4746         (indian-itrans-v5-table-for-tamil): New variable.
4747         (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
4749 2011-09-22  Ken Manheimer  <ken.manheimer@gmail.com>
4751         * allout.el (allout-this-command-hid-stuff): Buffer-local variable
4752         that's true if the current command involved collapsing of text.
4753         It's reset to false at the beginning of the next command.
4754         (allout-post-command-business): Move the cursor to the beginning
4755         of entry if the cursor is hidden and collapsing activity just
4756         happened.
4758 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
4760         * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
4761         tracking (Bug#9541).
4763 2011-09-24  Ulf Jasper  <ulf.jasper@web.de>
4765         * net/newst-reader.el (newsticker-html-renderer)
4766         (newsticker-show-news): Automatically load html rendering package
4767         if newsticker-html-renderer is set.  Fixes "Warning: defvar ignored
4768         because w3m-fill-column is let-bound" and the error "Symbol's value
4769         as variable is void: w3m-fill-column".
4771 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
4773         * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
4774         Release services only if they are defined.  (Bug#9581)
4776 2011-09-23  Richard Stallman  <rms@gnu.org>
4778         * textmodes/paragraphs.el (forward-sentence): For backwards case,
4779         distinguish start of paragraph from start of its text.
4781         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
4783         * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
4784         (rmail-generate-viewer-buffer): Put that hook on view buffer.
4785         (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
4787 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
4789         * international/mule-diag.el (mule-diag): Insert a newline after
4790         each fontset description.
4792 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4794         * simple.el (delete-trailing-whitespace):
4795         Document last change; simplify.
4797 2011-09-23  Peter J. Weisberg  <pj@irregularexpressions.net>
4799         * simple.el (delete-trailing-whitespace): Also delete
4800         extra newlines at the end of the buffer.
4802         * textmodes/picture.el: Make motion commands obey shift-select-mode.
4803         (picture-newline): Use forward-line so as to ignore fields.
4805 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4807         * subr.el (with-wrapper-hook): Fix edebug spec.
4809 2011-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4811         * simple.el (kill-line): Note effect of `show-trailing-whitespace'
4812         (bug#4538).
4814 2011-09-23  Michael Albinus  <michael.albinus@gmx.de>
4816         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
4817         Fix nasty bug using wrong cached values.
4819 2011-09-23  Alan Mackenzie  <acm@muc.de>
4821         * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
4823 2011-09-23  Chong Yidong  <cyd@stupidchicken.com>
4825         * window.el (pop-to-buffer): Ensure right window is selected if we
4826         chose another frame.
4828 2011-09-22  Eli Zaretskii  <eliz@gnu.org>
4830         * simple.el (what-cursor-position): Use get-char-property-change
4831         and next-single-char-property-change, to be able to show display
4832         properties that come from overlays as well as text properties.
4834 2011-09-22  Chong Yidong  <cyd@stupidchicken.com>
4836         * window.el (pop-to-buffer-same-window): New (reinstated) fun.
4838         * cmuscheme.el (run-scheme, switch-to-scheme):
4839         * cus-edit.el (customize-group, custom-buffer-create)
4840         (customize-browse):
4841         * info.el (info):
4842         * shell.el (shell):
4843         * mail/sendmail.el (mail):
4844         * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
4846 2011-09-22  Richard Stallman  <rms@gnu.org>
4848         * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
4849         move back only to line beg, don't move back over blank lines.
4851 2011-09-22  Michael Albinus  <michael.albinus@gmx.de>
4853         * files.el (copy-directory): Set directory attributes only in case
4854         they could be retrieved from the source directory.  (Bug#9565)
4856 2011-09-22  Dima Kogan  <dkogan@secretsauce.net>  (tiny change)
4858         * progmodes/hideshow.el (hs-looking-at-block-start-p)
4859         (hs-find-block-beginning, hs-hide-level-recursive):
4860         Ignore strings as well as comments.  (Bug#9502)
4862 2011-09-22  Andrew Schein  <andrew@andrewschein.com>  (tiny change)
4864         * progmodes/sql.el (sql-comint-postgres):
4865         Convert port number to a string.  (Bug#9566)
4867 2011-09-22  Martin Rudalics  <rudalics@gmx.at>
4869         * window.el (quit-window): Undedicate window when switching to
4870         previous buffer.  Reported by Thierry Volpiatto
4871         <thierry.volpiatto@gmail.com>.
4872         (special-display-popup-frame): When popping up a new frame reset
4873         its previous buffers to nil.  Simplify code.
4875 2011-09-21  Michael Albinus  <michael.albinus@gmx.de>
4877         * net/tramp.el (tramp-handle-shell-command): Set process sentinel
4878         and process filter, as done also in `shell-command'.
4880 2011-09-21  Martin Rudalics  <rudalics@gmx.at>
4882         * window.el (set-window-buffer-start-and-point):
4883         Call set-window-start with NOFORCE argument t.
4884         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
4885         (quit-window): Reword doc-string.  Handle new format of
4886         quit-restore parameter.  Don't delete window if it has a
4887         previous buffer we can show instead of the present one.
4888         (display-buffer-record-window): Rewrite using a new format for
4889         the quit-restore window parameter
4890         (special-display-popup-frame, display-buffer-same-window)
4891         (display-buffer-reuse-window, display-buffer-pop-up-frame)
4892         (display-buffer-pop-up-window, display-buffer-use-some-window):
4893         Adapt symbol passed to display-buffer-record-window.
4894         * help.el (help-window-setup): Handle new format of quit-restore
4895         parameter.
4897 2011-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4899         * faces.el (face-list): Fix docstring (bug#9564).
4901         * window.el (display-buffer--action-function-custom-type):
4902         Don't include internal functions in the Custom interface.
4904 2011-09-20  Juri Linkov  <juri@jurta.org>
4906         * info.el (Info-history-skip-intermediate-nodes): New defcustom.
4907         (Info-forward-node, Info-backward-node, Info-next-preorder)
4908         (Info-last-preorder): Use it.  (Bug#9528)
4910 2011-09-20  Juri Linkov  <juri@jurta.org>
4912         * info.el (Info-last-preorder): Visit last menu item only when
4913         `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
4915 2011-09-20  Julien Danjou  <julien@danjou.info>
4917         * password-cache.el (password-cache-remove): Remove entries even if the
4918         value is nil, so that password with a nil value (negative caching) is
4919         possible to invalidate.
4921 2011-09-20  Lawrence Mitchell  <wence@gmx.li>
4923         * progmodes/f90.el (f90-break-line): If breaking inside comment delete
4924         all whitespace around breakpoint.  (Bug#9553)
4925         (f90-find-breakpoint): Only break at whitespace inside a comment.
4927 2011-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4929         * minibuffer.el (completion-file-name-table): Keep track of errors.
4930         (completion-table-with-predicate): Handle the case where pred1 is nil.
4931         * pcomplete.el (pcomplete-completions-at-point): Simplify.
4933 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4935         * emacs-lisp/debug.el (debugger-args): Give it a docstring.
4936         (debugger-return-value): Signal an error if the debugging context does
4937         not await any return value.
4939         * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
4940         * image-mode.el (image-toggle-display-text)
4941         (image-toggle-display-image): Stay away from evil `intangible'.
4943 2011-09-19  Leo Liu  <sdl.web@gmail.com>
4945         * replace.el (occur-revert-arguments): Make it permanent-local.
4946         (occur-mode): Don't call font-lock-defontify.
4948 2011-09-19  Chong Yidong  <cyd@stupidchicken.com>
4950         * net/ldap.el (ldap-search-internal): Don't push empty search
4951         result (Bug#9508).
4953 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4955         * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
4957 2011-09-19  Michael Albinus  <michael.albinus@gmx.de>
4959         * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
4960         Suggested by Liam Stitt <stittl@cuug.ab.ca>.
4962 2011-09-18  Juri Linkov  <juri@jurta.org>
4964         * buff-menu.el (Buffer-menu-mode-map):
4965         * dired.el (dired-mode-map):
4966         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
4967         (lisp-interaction-mode-map):
4968         * emacs-lisp/package.el (package-menu-mode-map):
4969         * epa.el (epa-key-list-mode-map):
4970         * menu-bar.el (menu-bar-showhide-tool-bar-menu)
4971         (menu-bar-options-menu):
4972         * outline.el (outline-mode-menu-bar-map):
4973         * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
4974         * vc/vc-dir.el (vc-dir-menu-map):
4975         * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
4976         Capitalize non-function content words in menu item strings.
4978         * dired.el (dired-mode-map): Add menu item for
4979         `image-dired-dired-toggle-marked-thumbs'.
4981 2011-09-18  Juri Linkov  <juri@jurta.org>
4983         * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
4984         to `isearch-case-fold-search' and restore its original value
4985         after the `isearch-mode' call.
4987 2011-09-18  Juri Linkov  <juri@jurta.org>
4989         * progmodes/grep.el (grep-process-setup): Don't check code for 1
4990         because `zgrep' returns 1 for successful matches (bug#9226).
4992 2011-09-18  Juri Linkov  <juri@jurta.org>
4994         * info.el (Info-extract-menu-node-name): Check the second match
4995         for empty string (second test-case of bug#9528).
4996         (Info-last-preorder): Let-bind `Info-history' to nil to not add
4997         intermediate nodes to the history (first test-case of bug#9528).
4999 2011-09-18  Juri Linkov  <juri@jurta.org>
5001         * info.el (Info-mode-syntax-table): New variable.
5002         (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
5004 2011-09-18  Juri Linkov  <juri@jurta.org>
5006         * info.el (Info-file-supports-index-cookies):
5007         Increment line-beginning-position's arg from 3 to 4 because makeinfo
5008         outputs one more line for long file names (bug#4142).
5010 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
5012         * newcomment.el (comment-normalize-vars): If prompting for
5013         comment-start, set comment-start-skip too (Bug#8424).
5015 2011-09-18  Johan BockgÃ¥rd  <bojohan@gnu.org>
5017         * icomplete.el: Fix previous fix of Bug#5849.
5018         (icomplete-mode): Don't set completion-show-inline-help.
5019         (icomplete-minibuffer-setup): Set completion-show-inline-help
5020         locally during icompletion.
5022 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
5024         * woman.el (woman2-process-escapes): Don't delete unrecognized
5025         escapes (Bug#7843).
5027         * files.el (inhibit-first-line-modes-regexps): Add image files.
5028         (hack-local-variables-prop-line): Return nil for malformed
5029         prop-lines (Bug#9044).
5031 2011-09-18  Michael Albinus  <michael.albinus@gmx.de>
5033         * net/tramp.el (top): Don't require 'shell.
5034         (tramp-methods): Fix docstring.
5035         (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
5036         Return complete remote file name.  Handle "smb" case.
5037         Use `tramp-tmpdir', if defined for the respective method.
5038         (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
5040         * net/tramp-compat.el (top): Require 'shell.
5042         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
5043         (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
5044         `tramp-current-host'.
5045         (tramp-get-remote-tmpdir): Remove.
5047         * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
5048         `tramp-tmpdir' entries.
5049         (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
5050         (tramp-smb-handle-file-attributes): Ignore errors.
5051         (tramp-smb-wait-for-output): Check also for process end.
5053 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5055         * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
5056         when sending QUIT (bug#9312).
5058 2011-09-17  Chong Yidong  <cyd@stupidchicken.com>
5060         * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
5061         (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
5062         occur-mode-display-occurrence.
5063         (occur-edit-mode): Add usage message.
5064         (occur-cease-edit): New command.
5065         (occur-after-change-function): Use text properties to find the
5066         position of the prefix text.
5067         (occur-engine): Set stickiness of prefix text properties.
5069 2011-09-17  Glenn Morris  <rgm@gnu.org>
5071         * progmodes/etags.el (complete-tag):
5072         Fix call to completion-in-region.  (Bug#9526)
5074 2011-09-17  Juri Linkov  <juri@jurta.org>
5076         * textmodes/ispell.el (ispell-word): Add to the error message
5077         the word, ispell program name and current dictionary (bug#9121).
5078         (ispell-tex-arg-end): Capitalize "error" in the error message.
5080 2011-09-17  Andreas Schwab  <schwab@linux-m68k.org>
5082         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
5083         check.  (Bug#4251)
5085 2011-09-17  Juri Linkov  <juri@jurta.org>
5087         * window.el (window-safe-min-height, window-safe-min-width):
5088         Fix typos (followup to bug#9522).
5090 2011-09-17  Sven Joachim  <svenjoac@gmx.de>
5092         * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
5094 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
5096         * simple.el (line-move): If goal-column is set, move by logical
5097         lines, not by display lines.  (Bug#971)
5098         (next-line, previous-line, goal-column, line-move-visual): Doc fix
5099         to reflect the above change.
5101 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
5103         * image.el (imagemagick-register-types): Use regexp-opt.
5105 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
5107         * window.el (display-buffer-base-action): Rename from
5108         display-buffer-default-action.  Make default value empty.
5109         (display-buffer-overriding-action): Convert to defvar.
5110         (display-buffer-fallback-action): New var.
5112 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
5114         * emacs-lisp/package.el (package-alist): Fix risky-local-variable
5115         declaration.
5116         (package--add-to-archive-contents): If there is a duplicate entry
5117         with an older version, remove it.
5118         (package-menu-mark-delete, package-menu-mark-install)
5119         (package-menu-mark-unmark): Make unused args optional.
5120         (package-menu-mark-obsolete-for-deletion):
5121         Use package-menu-get-status instead of a regexp search.
5122         (package-menu-get-status): Use tabulated-list-entry.
5123         (package-menu-mark-upgrades): New command.
5124         (package-menu-mode-map): Bind it to U.  Add it to menu bar.
5125         (package-menu-execute): Do installation before deletion.
5126         (package-menu-refresh, package-menu-execute): Use derived-mode-p
5127         instead of checking major-mode.
5128         (package-menu--find-upgrades): New function.
5130 2011-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5132         * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
5133         passwords in the log buffer.
5134         (smtpmail-process-filter): Update the process marker so that the
5135         "broken by peer" status message is inserted in the right place.
5137 2011-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5139         * textmodes/bibtex.el (bibtex-complete-string-cleanup)
5140         (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
5141         bibtex-completion-at-point-function.
5142         (bibtex-completion-at-point-function): Use them.
5144         * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
5146         * mpc.el (mpc-constraints-tag-lookup): New function.
5147         (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
5148         also to browser "album|playlist".
5150 2011-09-14  Juri Linkov  <juri@jurta.org>
5152         * isearch.el (isearch-fail-pos): Add new arg `msg'.  Doc fix.
5153         (isearch-edit-string): Use length of `isearch-string' when
5154         `isearch-fail-pos' returns nil.
5155         (isearch-message): Remove duplicate code and call
5156         `isearch-fail-pos' with arg `t'.
5158 2011-09-14  Chong Yidong  <cyd@stupidchicken.com>
5160         * replace.el (occur-mode-goto-occurrence): Don't force using other
5161         window (Bug#9499).
5163         * dired-aux.el (dired-do-chmod): Don't provide initial input.
5165 2011-09-14  Martin Rudalics  <rudalics@gmx.at>
5167         * window.el (display-buffer-window): Remove.
5168         (display-buffer-record-window): Use help-setup window parameter
5169         instead of variable display-buffer-window.
5170         (display-buffer-function, special-display-buffer-names)
5171         (special-display-function): Mention help-setup parameter instead
5172         of display-buffer-window in doc-string.
5173         * help.el (help-window-setup): New argument help-window.
5174         Use help-window-setup parameter instead of display-buffer-window.
5175         Reword some messages.
5176         (with-help-window): Pass window used for displaying the buffer
5177         to help-window-setup.  Don't set display-buffer-window.
5179 2011-09-13  Glenn Morris  <rgm@gnu.org>
5181         * emacs-lisp/debug.el (debugger-make-xrefs):
5182         Preserve point.  (Bug#9462)
5184 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
5186         * window.el (window-deletable-p): Use next-frame.
5188 2011-09-13  Martin Rudalics  <rudalics@gmx.at>
5190         * window.el (window-auto-delete): Remove.
5191         (window-deletable-p): Remove argument FORCE.  Don't deal with
5192         dedication and previous buffers.
5193         (switch-to-prev-buffer): Don't delete window.
5194         (delete-windows-on): Delete a window's frame if and only if the
5195         window is dedicated.
5196         (replace-buffer-in-windows): Delete buffer's window or frame if
5197         and only if window is dedicated.
5198         (quit-window): Handle quit-restore as before last change.
5199         (bury-buffer): Delete window only if window-deletable-p returns t.
5201 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
5203         * window.el (window-deletable-p): Never delete the last frame on a
5204         given terminal.
5206 2011-09-13  Glenn Morris  <rgm@gnu.org>
5208         * help.el (describe-key-briefly): Copy previous standard-output change.
5210 2011-09-13  PJ Weisberg  <pj@irregularexpressions.net>
5212         * help.el (where-is): Respect non-standard standard-output.  (Bug#9030)
5214 2011-09-13  Glenn Morris  <rgm@gnu.org>
5216         * emacs-lisp/lisp-mode.el (lisp-indent-function):
5217         * progmodes/scheme.el (scheme-indent-function): Doc fixes.
5219 2011-09-12  Chong Yidong  <cyd@stupidchicken.com>
5221         * dired-aux.el (dired-mark-read-string): Don't return default
5222         value on empty input (Bug#9361).
5223         (dired-do-chxxx): Treat empty input for "touch" as no -t option.
5224         Omit initial minibuffer contents.
5225         (dired-do-chmod): Signal an error on empty input.
5226         (dired-mark-read-string): Don't return default on empty input.
5228         * files.el (file-modes-symbolic-to-number): Doc fix.
5230 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5232         * international/mule-cmds.el (ucs-completions): Remove.
5233         (read-char-by-name): Use complete-with-action instead; add metadata.
5235 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
5237         * window.el (display-buffer--action-function-custom-type)
5238         (display-buffer--action-custom-type): New vars.
5239         (display-buffer-alist, display-buffer-default-action)
5240         (display-buffer-overriding-action): Add defcustom types.
5242         * frame.el (delete-other-frames): Doc fix (Bug#276).
5244 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5246         * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
5248 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
5250         Change modes that used same-window-* vars to use switch-to-buffer.
5252         * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
5253         Use switch-to-buffer.
5255         * cus-edit.el (customize-group, custom-buffer-create)
5256         (customize-browse, custom-buffer-create-other-window):
5257         Use switch-to-buffer or switch-to-buffer-other-window.
5259         * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
5260         (Info-prev, Info-up, Info-speedbar-goto-node)
5261         (info-display-manual): Use switch-to-buffer.
5262         (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
5264         * mail/sendmail.el (mail): Use switch-to-buffer.
5265         (mail-recover): Use switch-to-buffer-other-window.
5267         * cmuscheme.el (run-scheme, switch-to-scheme):
5268         * ielm.el (ielm):
5269         * shell.el (shell):
5270         * net/rlogin.el (rlogin):
5271         * net/telnet.el (telnet, rsh):
5272         * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
5274 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
5276         * dired.el (dired-sort-toggle-or-edit): Revert last changes.
5278 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5280         * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
5281         so don't mention it (bug#9301).
5282         (dired-sort-toggle-or-edit): Clarify string further.
5284         * faces.el (face-spec-set-match-display): Make `(type graphic)'
5285         match `x', `w32' and `ns', like the manual says (bug#9029).
5287         * subr.el (eval-after-load): Doc string clarification (bug#9125).
5288         (process-kill-buffer-query-function): Mention the buffer name in
5289         the query.
5291         * image-mode.el (image-next-line): The line parameter is mandatory
5292         (bug#9258).
5294         * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
5295         which can be useful (bug#9301).
5297         * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
5299         * subr.el (match-string): Mention that the current buffer should
5300         be the same as the search was done in (bug#9282).
5302         * facemenu.el: Disable the remove-* commands if the mark isn't
5303         active (bug#9162).
5305 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
5307         * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
5308         of display-buffer.
5309         (Buffer-menu-2-window): Use switch-to-buffer-other-window.
5311         * replace.el (occur-mode-goto-occurrence)
5312         (occur-mode-display-occurrence) Use second arg of pop-to-buffer
5313         and display-buffer.
5315         * mail/reporter.el (reporter-submit-bug-report): Use second arg of
5316         display-buffer.
5318         * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
5319         special-display and same-window variables.
5320         (mail-other-window): Use switch-to-buffer-other-window.
5321         (mail-other-frame): USe switch-to-buffer-other-frame.
5323         * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
5324         Use display-buffer-other-frame.
5325         (gdb-display-gdb-buffer): Use pop-to-buffer.
5327         * progmodes/gud.el (gud-goto-info): Use info-other-window.
5329         * progmodes/python.el: Don't set same-window-buffer-names.
5331         * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
5333         * window.el (display-buffer-alist): Add *Python*.
5335 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
5337         * window.el (display-buffer-alist): Add entry for buffers
5338         previously handled same-window-*.
5339         (display-buffer-alist, display-buffer-default-action)
5340         (display-buffer-overriding-action): Mark as risky.
5341         (display-buffer-alist): Document action function changes.
5342         (display-buffer--same-window-action)
5343         (display-buffer--other-frame-action): New variables.
5344         (switch-to-buffer, display-buffer-other-frame): Use them.
5345         (display-buffer): Rename reuse-frame entry to reusable-frames.
5346         (display-buffer-reuse-selected-window): Function deleted.
5347         (display-buffer-reuse-window): Handle reusable-frames alist entry.
5348         If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
5349         (display-buffer-special): New function.
5350         (display-buffer--maybe-pop-up-frame-or-window): Rename from
5351         display-buffer-reuse-or-pop-window.  Split off special-display
5352         part into display-buffer-special.
5353         (display-buffer-use-some-window): Don't perform any special
5354         pop-up-frames handling.
5355         (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
5356         (display-buffer--maybe-same-window): Rename from
5357         display-buffer-maybe-same-window.
5359         * info.el: Don't set same-window-regexps.
5360         (info-setup): New function.
5361         (info-other-window, info): Call it.
5363         * cus-edit.el: Don't set same-window-regexps.
5364         (customize-group): New argument.
5365         (customize-group-other-window): Use it.
5366         (customize-face, customize-face-other-window): Likewise.
5367         (custom-buffer-create-other-window): Use pop-to-buffer directly.
5369         * net/rlogin.el:
5370         * net/telnet.el:
5371         * progmodes/gud.el: Don't set same-window-regexps.
5373         * cmuscheme.el:
5374         * ielm.el:
5375         * shell.el:
5376         * mail/sendmail.el:
5377         * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
5379 2011-09-10  Juri Linkov  <juri@jurta.org>
5381         * isearch.el (isearch-edit-string): Remove obsolete mention of
5382         `C-w' (`isearch-yank-word-or-char') from docstring.
5383         (isearch-query-replace): Fix typo in docstring (bug#9466).
5385 2011-09-10  Juri Linkov  <juri@jurta.org>
5387         * paren.el (show-paren-function): Don't show escaped parens.
5388         Let-bind `unescaped' to `t' when paren is not escaped.  (Bug#9461)
5390 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
5392         * mail/sendmail.el (mml-to-mime, mml-attach-file)
5393         (mm-default-file-encoding): Remove autoload forms, they are
5394         replaced with autoload cookies in mml.el and mm-encode.el.
5395         (mail-add-attachment): New command.
5396         (mail-mode-map): Add a menu-bar item for mail-add-attachment.
5397         (mail-mode): Mention mail-insert-file and mail-add-attachment in
5398         the doc string.
5399         (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
5401 2011-09-10  Reuben Thomas  <rrt@sc3d.org>
5403         * simple.el (count-words-region): Use buffer if there's no region
5404         (bug#9429).
5406 2011-09-09  Juri Linkov  <juri@jurta.org>
5408         * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
5409         `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
5410         (wdired-isearch-filter-read-only): New function.  (Bug#6362)
5412 2011-09-09  Alan Mackenzie  <acm@muc.de>
5414         * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
5415         spuriously generating `awk-mode-syntax-table'.  (Bug #9448).
5417 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
5419         Fix for Savannah bug#9392.
5420         * simple.el (mail-encode-mml): New defvar.
5422         * mail/rmail.el (mail-encode-mml): Add a defvar.
5423         (rmail-enable-mime-composing): Default to t.
5424         (rmail-forward): Use MIME method of forwarding only if both
5425         rmail-enable-mime-composing and rmail-enable-mime are non-nil.
5426         Set mail-encode-mml non-nil if the MIME method was used.
5428         * mail/sendmail.el (mml-to-mime): Add autoload form.
5429         (mail-encode-mml): Add a defvar.
5430         (mail-mode): Make mail-encode-mml buffer-local and initialize it
5431         to nil.
5432         (mail-send): If mail-encode-mml is non-nil, run the outgoing
5433         message through mml-to-mime, and reset mail-encode-mml to nil.
5435 2011-09-09  Glenn Morris  <rgm@gnu.org>
5437         * woman.el (woman-if-body): When processing an .el block,
5438         do not delete the next .el block as well.  (Bug#9447)
5439         (woman-special-characters): Add oq, cq, and hy characters.
5441 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
5443         * window.el (window-deletable-p): Make sure window is live before
5444         invoking window-prev-buffers.
5446 2011-09-08  Leo Liu  <sdl.web@gmail.com>
5448         * net/rcirc.el (rcirc-cmd-invite): New rcirc command.  (Bug#9453)
5450 2011-09-08  Juri Linkov  <juri@jurta.org>
5452         * progmodes/compile.el (compilation-environment): Make it
5453         a defcustom (bug#8340).
5455 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
5457         * window.el (frame-auto-delete): Rename to window-auto-delete.
5458         Make it control auto-deletion of windows and/or frames.
5459         (window-deletable-p): New argument FORCE.  Rewrite conditions
5460         for deleting window/frame.  (Bug#9419)
5461         (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
5462         Rewrite handling of case when window/frame can be deleted.
5463         (delete-windows-on): Call window-deletable-p with new FORCE
5464         argument t.  (Bug#9456)
5466 2011-09-07  Chong Yidong  <cyd@stupidchicken.com>
5468         * help-mode.el (help-mode): Restore autoload.
5470 2011-09-07  Juri Linkov  <juri@jurta.org>
5472         * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
5473         `compilation-environment'.  Set buffer-local
5474         `compilation-environment' to `thisenv' later after (funcall mode).
5475         (Bug#8340)
5477         * vc/vc-git.el (vc-git-grep): Remove --no-color.  (Bug#9408)
5478         (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
5479         instead of replacing its value.  (Bug#8340)
5481 2011-09-07  Juri Linkov  <juri@jurta.org>
5483         * progmodes/grep.el (grep-regexp-alist): Calculate column positions
5484         based on text properties put by `grep-filter' instead of matching
5485         escape sequences.
5486         (grep-mode): Set buffer-local `compilation-error-screen-columns'
5487         to the value of `grep-error-screen-columns' (bug#9438).
5489 2011-09-07  Juri Linkov  <juri@jurta.org>
5491         * simple.el (next-error-highlight, next-error-highlight-no-select):
5492         Doc fix (bug#9432).
5494 2011-09-07  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
5496         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
5497         Check for null c-opt-block-decls-with-vars-key.  (Bug#9443)
5499 2011-09-07  Leo Liu  <sdl.web@gmail.com>
5501         * net/rcirc.el (rcirc-mode): Conditionally initialize
5502         rcirc-input-ring.
5504 2011-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5506         * emacs-lisp/find-func.el (find-function-C-source): Only set
5507         find-function-C-source-directory after checking that we found a source
5508         file there (bug#9440).
5510 2011-09-06  Alan Mackenzie  <acm@muc.de>
5512         * isearch.el (isearch-other-meta-char): Wherever a key list is
5513         unread, "unread" the prefix arg, too.  This fixes bug #8901.
5515 2011-09-05  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
5517         * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
5519 2011-09-05  Juri Linkov  <juri@jurta.org>
5521         * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
5523 2011-09-05  Juri Linkov  <juri@jurta.org>
5525         * progmodes/grep.el (grep-filter): Avoid incomplete processing by
5526         keeping point where processing of grep matches begins, and
5527         continue to delete remaining escape sequences from the same point.
5528         (grep-filter): Make leading zero optional in "0?1;31m" because
5529         git-grep emits "\033[1;31m" escape sequences unlike expected
5530         "\033[01;31m" as GNU Grep does (bug#9408).
5531         (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
5533 2011-09-05  Juri Linkov  <juri@jurta.org>
5535         * subr.el (y-or-n-p): Capitalize "yes".
5537 2011-09-04  Michael Albinus  <michael.albinus@gmx.de>
5539         * net/tramp.el (top): Require 'shell.  Use `tramp-unload-hook' but
5540         `tramp-cache-unload-hook' where appropriate.
5541         (tramp-methods): Rename `tramp-remote-sh' to
5542         `tramp-remote-shell'.  Add `tramp-remote-shell-args'.
5543         (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
5545         * net/tramp-sh.el (top): Don't require 'shell.
5546         (tramp-methods): Add `tramp-remote-shell' and
5547         `tramp-remote-shell-args' entries.
5548         (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
5549         (tramp-sh-handle-shell-command): Remove.
5550         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
5551         Use `tramp-remote-shell'.
5553 2011-09-03  Chong Yidong  <cyd@stupidchicken.com>
5555         * mail/sendmail.el (sendmail-query-once-function): Delete.
5556         (sendmail-query-once): Save directly to send-mail-function.
5557         Update message-send-mail-function too.
5559         * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
5561 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
5563         * progmodes/python.el (python-mode-map): Use correct function to
5564         start python interpreter from menu-bar (as reported by Geert
5565         Kloosterman).
5566         (inferior-python-mode-map): Fix typo.
5567         (python-shell-map): Remove.
5569 2011-09-03  Deniz Dogan  <deniz@dogan.se>
5571         * net/rcirc.el (rcirc-print): Simplify code for
5572         rcirc-scroll-show-maximum-output.  There is no need to walk
5573         through all windows to find the right one.
5575 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
5577         * help.el (help-return-method): Doc fix.
5579 2011-09-03  Martin Rudalics  <rudalics@gmx.at>
5581         * window.el (window-deletable-p): Don't return a non-nil value
5582         when there's a buffer that was shown in the window before.
5583         (Bug#9419)
5584         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
5585         Set window's previous buffers to nil.
5587 2011-09-03  Eli Zaretskii  <eliz@gnu.org>
5589         * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
5590         newline before and after the tag line, so it doesn't interfere
5591         with determining the paragraph direction of bidirectional text.
5593 2011-09-03  Leo Liu  <sdl.web@gmail.com>
5595         * files.el (find-file-not-true-dirname-list): Remove.  (Bug#9422)
5597 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
5599         * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
5600         (pop-to-buffer): Change interactive spec.  Pass second argument
5601         directly to display-buffer.
5602         (display-buffer): Fix interactive spec.  Use functionp to
5603         distinguish between a function and a list of functions.
5605         * abbrev.el (edit-abbrevs):
5606         * arc-mode.el (archive-extract):
5607         * autoinsert.el (auto-insert):
5608         * bookmark.el (bookmark-bmenu-list):
5609         * files.el (find-file):
5610         * view.el (view-buffer):
5611         * progmodes/compile.el (compilation-goto-locus):
5612         * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
5614 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
5616         * window.el (display-buffer-alist): Doc fix.
5617         (display-buffer): Add docstring.  Don't treat
5618         display-buffer-default specially.
5619         (display-buffer-reuse-selected-window)
5620         (display-buffer-same-window, display-buffer-maybe-same-window)
5621         (display-buffer-reuse-window, display-buffer-pop-up-frame)
5622         (display-buffer-pop-up-window)
5623         (display-buffer-reuse-or-pop-window)
5624         (display-buffer-use-some-window): New functions.
5625         (display-buffer-default-action): Use them.
5626         (display-buffer-default): Delete.
5627         (pop-to-buffer-1): Fix choice of actions.
5629 2011-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5631         * minibuffer.el (completion--insert-strings): Don't get confused by
5632         completion entries that end with an LF char.
5634 2011-09-01  Eli Zaretskii  <eliz@gnu.org>
5636         * window.el (frame-auto-delete, window-deletable-p): Doc fix.
5638 2011-09-01  Chong Yidong  <cyd@stupidchicken.com>
5640         * window.el (display-buffer): Restore interactive spec.
5641         (display-buffer-same-window, display-buffer-other-window):
5642         New functions.
5643         (pop-to-buffer-1): New function.  Use the above.
5644         (pop-to-buffer, pop-to-buffer-same-window): Use it.
5645         (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
5647         * view.el (view-buffer-other-window, view-buffer-other-frame):
5648         Just use pop-to-buffer.
5650 2011-09-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5652         * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories.  (Bug#9391)
5654 2011-09-01  Wilfred Hughes  <wilfred@potatolondon.com>  (tiny change)
5656         * vc/vc-git.el (vc-git-grep): Use --no-color.  (Bug#9408)
5658 2011-08-31  Richard Stallman  <rms@gnu.org>
5660         * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
5661         of the separation of rmail-view-buffer from rmail-buffer.
5662         If you say no to "replace original", the decrypt is in the
5663         view buffer.  If you say yes, the decrypt goes into the
5664         rmail buffer also.
5666 2011-08-31  Martin Rudalics  <rudalics@gmx.at>
5668         * window.el (display-buffer-window): Rewrite doc-string.
5669         (display-buffer-record-window): New function.
5670         (display-buffer-macro-specifiers)
5671         (display-buffer-even-window-sizes, display-buffer-set-height)
5672         (display-buffer-set-width, display-buffer-in-window)
5673         (display-buffer-reuse-window, display-buffer-split-specifiers)
5674         (display-buffer-side-specifiers, display-buffer-split-window-1)
5675         (display-buffer-split-window, display-buffer-split-atom-window)
5676         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
5677         (display-buffer-pop-up-side-window, display-buffer-in-side-window)
5678         (display-buffer-other-window-means-other-frame)
5679         (display-buffer-normalize-special)
5680         (display-buffer-normalize-default)
5681         (display-buffer-normalize-argument)
5682         (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
5683         (display-buffer-normalize-specifiers, display-buffer-frame)
5684         (display-buffer-same-window, display-buffer-same-frame)
5685         (display-buffer-other-window)
5686         (display-buffer-same-frame-other-window)
5687         (display-buffer-other-frame, pop-to-buffer-same-window)
5688         (pop-to-buffer-same-frame, pop-to-buffer-other-window)
5689         (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
5690         (switch-to-buffer-same-frame)
5691         (switch-to-buffer-other-window-same-frame)
5692         (display-buffer-alist-of-strings-p, display-buffer-alist-add)
5693         (display-buffer-alist-set-1, display-buffer-alist-set-2)
5694         (display-buffer-alist-set): Remove.
5695         (display-buffer-function, special-display-buffer-names)
5696         (special-display-regexps, special-display-function):
5697         In doc-string refer to display-buffer-window and quit-restore
5698         parameter.
5699         (pop-up-frame-alist, pop-up-frame-function, special-display-p)
5700         (special-display-frame-alist, special-display-popup-frame)
5701         (same-window-buffer-names, same-window-regexps, same-window-p)
5702         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
5703         (split-window-preferred-function, split-height-threshold)
5704         (split-width-threshold, window-splittable-p)
5705         (split-window-sensibly, window--try-to-split-window)
5706         (window--frame-usable-p, even-window-heights)
5707         (window--even-window-heights, window--display-buffer-1)
5708         (window--display-buffer-2, display-buffer-other-frame):
5709         Restore old Emacs 23 code, order and doc-strings where applicable.
5710         (display-buffer-default, display-buffer-assq-regexp): New functions.
5711         (display-buffer-alist): Rewrite doc-string.
5712         (display-buffer-default-action)
5713         (display-buffer-overriding-action): New variables.
5714         (display-buffer, switch-to-buffer): Rewrite.
5715         (pop-to-buffer): Restore Emacs 23 behavior but use
5716         window-normalize-buffer-to-display.
5717         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
5718         Restore Emacs 23 behavior but use
5719         window-normalize-buffer-to-switch-to.
5720         (pop-to-buffer-same-window): Rewrite.
5721         (pop-to-buffer-other-window, pop-to-buffer-other-frame):
5722         Rewrite using Emacs 23 options.
5724 2011-08-31  Michael Albinus  <michael.albinus@gmx.de>
5726         * net/tramp.el (tramp-root-regexp): Remove.
5727         (tramp-completion-file-name-regexp-unified)
5728         (tramp-completion-file-name-regexp-separate)
5729         (tramp-completion-file-name-regexp-url): Don't use leading volume
5730         letter on win32 systems.  (Bug#5303, Bug#9311)
5731         (tramp-drop-volume-letter): Simplify definition.
5732         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5734 2011-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5736         * subr.el (event-modifiers): Fix "missing modifier" part of docstring
5737         (bug#9356).
5739 2011-08-30  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
5741         * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5743 2011-08-29  Juri Linkov  <juri@jurta.org>
5745         * isearch.el (isearch-done): Don't display message "Mark saved"
5746         when arg `edit' is non-nil to prevent its flicker in the echo area.
5748 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
5750         * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
5751         obsolete packages for deletion.
5753 2011-08-28  Christoph Scholtes  <cschol2112@googlemail.com>
5755         * help-mode.el (help-mode-map): Add special-mode-map to parent.
5756         (help-mode): Derive help-mode from special-mode.  Don't invoke
5757         view-mode from help-mode.
5758         (help-xref-override-view-map): Remove.
5759         (help-make-xrefs): Remove minor-mode-overriding-map-alist since
5760         view-mode is not used anymore.
5762 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
5764         * server.el (server-port): Doc fix.
5766         * cus-theme.el (custom-theme-choose-mode): Inherit from
5767         special-mode (Bug#9124).
5768         (custom-theme-choose-mode-map): Add special-mode to parent.
5770 2011-08-28  Alan Mackenzie  <acm@muc.de>
5772         * progmodes/cc-fonts.el
5773         (c-make-font-lock-BO-decl-search-function): New function.
5774         (c-basic-matchers-after - "Fontify the clauses after various
5775         keywords"): Extract the three keyword lists for the 3 erroneous
5776         constructs from the list of four, and use the new function above
5777         in place of an old one.
5779 2011-08-28  Deniz Dogan  <deniz@dogan.se>
5781         * net/rcirc.el (rcirc-insert-prev-input)
5782         (rcirc-insert-next-input): Remove unused argument.
5784 2011-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5786         * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
5788 2011-08-27  Alan Mackenzie  <acm@muc.de>
5790         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
5791         handle function pointer parameters properly.
5793 2011-08-27  Martin Rudalics  <rudalics@gmx.at>
5795         * window.el (display-buffer-reuse-window): Fix case where
5796         selected window was reused with non-nil OTHER-WINDOW argument.
5797         (Bug#9381)
5799 2011-08-27  Deniz Dogan  <deniz@dogan.se>
5801         * net/rcirc.el (rcirc-check-auth-status): Adding support for
5802         oftc's NickServ messages.
5804 2011-08-27  Glenn Morris  <rgm@gnu.org>
5806         * saveplace.el (save-place-limit): Make it finite.  (Bug#9352)
5808 2011-08-26  Chong Yidong  <cyd@stupidchicken.com>
5810         * emacs-lisp/package.el (package-install): Call package-initialize
5811         if called interactively.
5813 2011-08-26  Leo Liu  <sdl.web@gmail.com>
5815         * emacs-lisp/cl-macs.el (defstruct): Fix format.  (Bug#9357)
5817 2011-08-25  Juri Linkov  <juri@jurta.org>
5819         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
5820         `search-whitespace-regexp' (bug#9364).
5822 2011-08-25  Juri Linkov  <juri@jurta.org>
5824         * isearch.el (isearch-edit-string): Let-bind `search-ring' and
5825         `regexp-search-ring' to their global values to protect from
5826         updating by `read-from-minibuffer' (bug#9185).
5828 2011-08-25  Juri Linkov  <juri@jurta.org>
5830         * textmodes/ispell.el (ispell-command-loop): Add newline
5831         at the end of the "Use option `i'..." line.
5833 2011-08-25  Juri Linkov  <juri@jurta.org>
5835         * battery.el (display-battery-mode): If `battery-status-function'
5836         or `battery-mode-line-format' is nil, display the message and set
5837         `display-battery-mode' to nil (bug#9363).
5839 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
5841         * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
5842         bidi-string-mark-left-to-right; they are unnecessary now.
5844 2011-08-25  Deniz Dogan  <deniz@dogan.se>
5846         * net/quickurl.el: Documentation typo fixes.
5848 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
5850         * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
5852 2011-08-25  Glenn Morris  <rgm@gnu.org>
5854         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
5856         * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
5857         (smtpmail-via-smtp): Handle nil response from smtp.
5859 2011-08-24  Juri Linkov  <juri@jurta.org>
5861         * proced.el (proced-marked): Inherit from `error' instead of
5862         `font-lock-warning-face'.
5864         * ibuffer.el (ibuffer-marked-face): Change default face from
5865         `font-lock-warning-face' to `warning'.
5866         (ibuffer-deletion-face): Change default face from
5867         `font-lock-type-face' to `error'.
5869         * battery.el (battery-update): Use the face `error' instead of
5870         `font-lock-warning-face' (bug#6117).
5872 2011-08-24  Juri Linkov  <juri@jurta.org>
5874         * faces.el (success): Change face color from "Green3" to
5875         "ForestGreen" on light background (bug#9353).
5877 2011-08-24  Chong Yidong  <cyd@stupidchicken.com>
5879         * window.el (quit-window): Rename from quit-restore-window.
5880         Use same arglist as old quit-window.
5881         (frame-auto-delete): Doc fix.
5883         * view.el (view-mode-exit): Use quit-window.
5885 2011-08-24  Juri Linkov  <juri@jurta.org>
5887         * isearch.el (isearch-ring-adjust1): Start visiting previous
5888         search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
5889         (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
5890         for empty search string (when the last search string is reused
5891         automatically) to adjust the isearch ring to the last element and
5892         prepare the correct index for further M-p commands (bug#9185).
5894 2011-08-24  Kenichi Handa  <handa@m17n.org>
5896         * international/ucs-normalize.el: If decomposition property of
5897         CHAR is the default one (i.e. a list of CHAR itself), treat it as
5898         nil.
5899         (nfd, nfkd): Likewise.
5901 2011-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5903         * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
5904         from process filters aren't reliably transmitted to the surrounding
5905         accept-process-output.
5906         (mpc-proc-check): New function.
5907         (mpc-proc-sync): Use it (bug#8293)
5909 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5911         * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
5912         Add compatibility functions (bug#9313).
5914 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
5916         * cus-start.el (all): Add entry for bidi-paragraph-direction.
5918         * international/uni-bidi.el: Regenerate.
5920 2011-08-23  Kenichi Handa  <handa@m17n.org>
5922         * international/charprop.el:
5923         * international/uni-bidi.el:
5924         * international/uni-category.el:
5925         * international/uni-combining.el:
5926         * international/uni-comment.el:
5927         * international/uni-decimal.el:
5928         * international/uni-decomposition.el:
5929         * international/uni-digit.el:
5930         * international/uni-lowercase.el:
5931         * international/uni-mirrored.el:
5932         * international/uni-name.el:
5933         * international/uni-numeric.el:
5934         * international/uni-old-name.el:
5935         * international/uni-titlecase.el:
5936         * international/uni-uppercase.el: Regenerate.
5938 2011-08-23  Martin Rudalics  <rudalics@gmx.at>
5940         * help.el (help-window-setup): Fix message displayed when other
5941         window is reused.  (Bug#9341)
5943 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5945         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
5946         * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
5948         * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
5949         Mark obsolete.
5950         * shell.el (shell-parse-pcomplete-arguments): New function.
5951         (shell-completion-vars): Use it instead (bug#9160).
5953 2011-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5955         * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
5956         strings and comments (bug#9333).
5958         * emacs-lisp/debug.el (debug-arglist): New function.
5959         (debug-convert-byte-code): Use it.  Handle lexical byte-codes.
5960         (debug-on-entry-1): Handle interpreted closures (bug#9120).
5962 2011-08-22  Juri Linkov  <juri@jurta.org>
5964         * progmodes/compile.el (compilation-mode-font-lock-keywords):
5965         Revert regexp that highlights output switches to its old
5966         pre-2010-10-28 value and remove one `?' from it (bug#9319).
5968         * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
5969         to check for empty output (bug#9226).
5971 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
5973         * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
5974         symbol-constituent as the default, as that stops font-lock from
5975         working properly (Bug#8843).
5977 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5979         * mail/smtpmail.el (smtpmail-via-smtp): Only bind
5980         `coding-system-for-*' around the process open call to avoid
5981         auth-source side effects.
5982         (smtpmail-try-auth-methods): Expand the secret password.
5983         (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
5984         probe hangs.
5986 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
5988         * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
5990         * emacs-lisp/find-func.el (find-function-noselect): New arg
5991         lisp-only.
5993         * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
5994         signal an error for built-in functions (Bug#6664).
5996 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5998         * mail/smtpmail.el (smtpmail-smtp-user): New variable.
5999         (smtpmail-try-auth-methods): Use it.
6001 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
6003         * font-lock.el (font-lock-fontify-region)
6004         (font-lock-unfontify-region, font-lock-default-fontify-buffer)
6005         (font-lock-default-unfontify-buffer)
6006         (font-lock-default-fontify-region)
6007         (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
6009         * progmodes/compile.el (compilation-error-properties):
6010         Fix confusion between file struct and message struct (Bug#9319).
6011         (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
6012         `ant' regexp.
6014         * net/browse-url.el (browse-url-firefox): Don't call
6015         browse-url-firefox-sentinel unless using -remote (Bug#9328).
6017 2011-08-20  Glenn Morris  <rgm@gnu.org>
6019         * tutorial.el (help-with-tutorial): Avoid an error on short screens.
6021         * tutorial.el (tutorial--default-keys): Update some default bindings.
6023         * files.el (hack-local-variables): Fully ignore case for "mode:".
6025 2011-08-20  Alan Mackenzie  <acm@muc.de>
6027         Resolve invalid use of a regexp in regexp-opt.
6029         * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
6030         detection for a java annotation.
6032         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
6033         detection for a java annotation.
6035         * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
6036         handling for java.
6037         (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
6039 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
6041         * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
6042         (Bug#9274).
6044 2011-08-20  Alan Mackenzie  <acm@muc.de>
6046         Fontify CPP expressions correctly when starting in the middle of
6047         such a construct.  Mainly for when jit-lock etc. starts a chunk
6048         here.
6050         * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
6051         variable.
6052         (c-make-font-lock-search-form): New function, extracted from
6053         c-make-font-lock-search-function.
6054         (c-make-font-lock-search-function): Use the above function.
6055         (c-make-font-lock-context-search-function): New function.
6056         (c-cpp-matchers): Enhance the preprocessor expression case with
6057         the above function
6058         (c-font-lock-complex-decl-prepare): Test for being in a CPP form
6059         which takes an expression.
6061         * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
6063 2011-08-20  Martin Rudalics  <rudalics@gmx.at>
6065         * window.el (display-buffer-reuse-window)
6066         (display-buffer-pop-up-window): Don't reuse or split a side
6067         window.
6069 2011-08-19  Glenn Morris  <rgm@gnu.org>
6071         * files.el (hack-local-variables-prop-line, hack-local-variables):
6072         Downcase "Mode:".  (Bug#9331)
6074 2011-08-18  Chong Yidong  <cyd@stupidchicken.com>
6076         * international/characters.el: Add L and R categories.
6078         * subr.el (bidi-string-mark-left-to-right): Rename from
6079         string-mark-left-to-right.  Use category search.
6081         * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
6083 2011-08-18  Juri Linkov  <juri@jurta.org>
6085         * faces.el (error, warning, success): New faces with definitions
6086         copied from old default values of `font-lock-warning-face',
6087         `compilation-warning', `compilation-info' (bug#6117).
6089         * font-lock.el (font-lock-warning-face): Inherit from `error'.
6091         * progmodes/compile.el (compilation-error): Inherit from `error'.
6092         (compilation-warning): Inherit from `warning'.
6093         (compilation-info): Inherit from `success'.
6095         * dired.el (dired-marked): Inherit from `warning'.
6096         (dired-flagged): Inherit from `error'.
6098 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6100         * mail/smtpmail.el (auth-source): Require to avoid problems with
6101         binding variables (bug#9298).  Also clean up some unused
6102         autoloads.
6104         * net/network-stream.el (network-stream-open-starttls):
6105         Support using starttls.el without using gnutls-cli.
6107 2011-08-17  Juri Linkov  <juri@jurta.org>
6109         * progmodes/grep.el (rgrep): Handle the case when
6110         `grep-find-command' is a cons cell (bug#9278).
6112 2011-08-17  Martin Rudalics  <rudalics@gmx.at>
6114         * window.el (display-buffer-pop-up-frame): Run frame creation
6115         function with BUFFER current (as special-display-popup-frame
6116         does).  Reported by Drew Adams.
6118 2011-08-17  Daiki Ueno  <ueno@unixuser.org>
6120         * epa-mail.el: Simplify GnuPG group expansion using
6121         epg-expand-group.
6122         (epa-mail-group-alist, epa-mail-group-modtime)
6123         (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
6124         (epa-mail-sync-groups, epa-mail-expand-recipient-1)
6125         (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
6126         Remove.
6128 2011-08-16  Feng Li  <fengli@gmail.com>  (tiny change)
6130         * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
6132 2011-08-16  Alan Mackenzie  <acm@muc.de>
6134         * progmodes/cc-engine.el (c-state-cache-non-literal-place):
6135         Correct, to avoid the inside of macros.
6137 2011-08-16  Richard Stallman  <rms@gnu.org>
6139         * epa-mail.el: Handle GnuPG group definitions.
6140         (epa-mail-group-alist, epa-mail-group-modtime)
6141         (epa-mail-gnupg-conf-file): New variables.
6142         (epa-mail-parse-groups, epa-mail-sync-groups)
6143         (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
6144         (epa-mail-expand-recipients): New functions.
6145         (epa-mail-encrypt): Call epa-mail-expand-recipients.
6147         * mail/rmail.el (rmail-epa-decrypt): New command.
6149         * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
6150         Don't bind buffer-read-only, just inhibit-read-only.
6151         (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
6152         (epa-decrypt-armor-in-region): Make error message clearer.
6154 2011-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6156         * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
6157         and "a2b" to "ab" for `prefix'.
6159 2011-08-14  Chong Yidong  <cyd@stupidchicken.com>
6161         * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
6162         filter groups.
6163         (ibuffer-included-in-filter-p-1): Use it.  Suggested by Rafaël
6164         Fourquet (Bug#8804).
6166 2011-08-12  Juanma Barranquero  <lekktu@gmail.com>
6168         * startup.el (argi): Declare as global variable (bug#9275).
6170 2011-08-12  Chong Yidong  <cyd@stupidchicken.com>
6172         * subr.el (string-mark-left-to-right): Search the entire string
6173         for RTL script, not just the terminating character.  Doc fix.
6175 2011-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6177         * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
6178         New function.
6179         (js--regexp-literal, js-syntax-propertize-function): Remove.
6180         (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
6181         (js-mode-map): Don't rebind electric keys.
6182         (js-insert-and-indent): Remove.
6183         (js-mode): Setup electric-layout and electric-indent instead.
6185         * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
6187 2011-08-12  Daiki Ueno  <ueno@unixuser.org>
6189         * epa.el (epa-progress-callback-function): Fix the logic of
6190         displaying progress.
6191         * epa-file.el (epa-file-insert-file-contents): Make progress
6192         display more user-friendly.
6193         (epa-file-write-region): Ditto.
6195 2011-08-10  Chong Yidong  <cyd@stupidchicken.com>
6197         * subr.el (string-mark-left-to-right): New function.
6199         * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
6200         Use string-mark-left-to-right.
6201         (list-buffers-noselect): Caller changed.
6203         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
6204         Use string-mark-left-to-right.
6205         (tabulated-list-print): Recenter after moving point.
6207 2011-08-10  Juri Linkov  <juri@jurta.org>
6209         * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
6210         This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
6211         intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
6213 2011-08-09  Chong Yidong  <cyd@stupidchicken.com>
6215         * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
6216         (Bug#7554).
6218 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
6220         * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
6221         character.  (Bug#6594)
6223 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
6225         * image-dired.el: Don't use find-file for temporary work (Bug#7895).
6226         (image-dired--with-db-file): New macro.
6227         (image-dired-write-tags, image-dired-remove-tag)
6228         (image-dired-create-gallery-lists, image-dired-write-comments)
6229         (image-dired-get-comment, image-dired-mark-tagged-files)
6230         (image-dired-list-tags, image-dired-gallery-generate): Use it.
6231         (image-dired-gallery-generate): Use insert-file-contents.
6233         * time.el (display-time-world-list, display-time-world-display):
6234         * time-stamp.el (time-stamp-string):
6235         * vc/add-log.el (add-change-log-entry): Use setenv instead of
6236         set-time-zone-rule (Bug#7337).
6238 2011-08-08  Daiki Ueno  <ueno@unixuser.org>
6240         * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
6241         (epg-error-to-string, epg-errors-to-string): New function.
6242         (epg-wait-for-completion): Reverse errors list.
6243         (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
6244         (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
6245         (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
6246         (epg-sign-keys, epg-generate-key-from-file)
6247         (epg-generate-key-from-string): Format errors by using
6248         epg-errors-to-string (bug#9255).
6249         (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
6251 2011-08-07  Juri Linkov  <juri@jurta.org>
6253         * faces.el (list-faces-display): Remove extra angle bracket
6254         from `help-mode-map'.
6256         * info.el (Info-history-toc-nodes): Doc fix.
6258         * longlines.el (longlines-mode): Doc fix.
6260 2011-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6262         * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
6263         of statements and in a few more cases (bug#9183).
6265         * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
6266         New functions.
6267         (cl-transform-lambda): Use them (bug#9239).
6269 2011-08-05  Martin Rudalics  <rudalics@gmx.at>
6271         * window.el (display-buffer-same-window)
6272         (display-buffer-same-frame, display-buffer-other-window)
6273         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
6274         (pop-to-buffer-other-window)
6275         (pop-to-buffer-same-frame-other-window)
6276         (pop-to-buffer-other-frame): Make them defuns.
6277         (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
6279 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6281         * subr.el (make-composed-keymap): Move from C.  Change calling
6282         convention, and improve docstring to bring attention to a subtle point.
6283         * minibuffer.el (completing-read-default): Adjust accordingly.
6285 2011-08-03  Michael Albinus  <michael.albinus@gmx.de>
6287         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
6288         (tramp-open-shell): Use `tramp-shell-quote-argument'.
6290         * net/trampver.el: Update release number.
6292 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6294         * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
6295         "in" (bug#9190).
6297 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6299         * mail/sendmail.el (sendmail-query-once): Restore the current
6300         buffer after querying (bug#9074).
6302         * dired.el (dired-flagged): Use different faces for marked and
6303         flagged files (bug#6117).
6305         * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
6306         (bug#4433).
6308         * ido.el (ido-mode): Switch off the message if called
6309         non-interactively.
6311         * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
6312         before 587, since it appears that that's more likely to work for
6313         more people.
6315         * cus-edit.el (custom-file): When running under emacs -q, always
6316         refuse to save the customizations, even if the .emacs file doesn't
6317         exist.
6319         * info.el: Remove the `Info-beginning-of-buffer' function
6320         (bug#8325).
6322         * net/network-stream.el (network-stream-open-starttls):
6323         Use `starttls-available-p' to see whether starttls.el can be used.
6325 2011-08-01  Martin Rudalics  <rudalics@gmx.at>
6327         * window.el (display-buffer-in-window): Don't set dedicated status
6328         of window here (Bug#9215).
6329         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
6330         (display-buffer-pop-up-side-window)
6331         (display-buffer-in-side-window): Set dedicated status of window here.
6333 2011-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6335         * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
6336         before binding generated-autoload-file.
6338 2011-08-01  Deniz Dogan  <deniz@dogan.se>
6340         * net/rcirc.el (rcirc-handler-333): Clarify docstring.
6342 2011-07-30  Michael Albinus  <michael.albinus@gmx.de>
6344         Sync with Tramp 2.2.2.
6346         * net/trampver.el: Update release number.
6348 2011-07-30  Juri Linkov  <juri@jurta.org>
6350         * dired-aux.el (dired-touch-initial): Remove function.
6351         (dired-do-chxxx): For op-symbol `touch', set `initial' to the
6352         current time, and `default' to the last modification time of the
6353         current marked file (bug#6887).
6355 2011-07-28  Jose E. Marchesi  <jemarch@gnu.org>
6357         * simple.el (goto-line): Use string-to-number to provide a
6358         numeric argument to read-number (bug#9163).
6360 2011-07-27  Michael Albinus  <michael.albinus@gmx.de>
6362         * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
6363         connection process, it could be nil.
6365 2011-07-27  Leo Liu  <sdl.web@gmail.com>
6367         Simplify url handling in rcirc-mode.
6369         * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
6370         (rcirc-browse-url-at-mouse): Remove.
6371         * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
6373 2011-07-26  Alan Mackenzie  <acm@muc.de>
6375         Fontify bitfield declarations properly.
6377         * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
6378         (c-symbol-chars): Now exported as a lang variable.
6379         (c-not-primitive-type-keywords): New lang variable.
6381         * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
6382         QT keyword "more" to prevent "more slots: ...." being spuriously
6383         parsed as a bitfield declaration.
6385         * progmodes/cc-engine.el (c-beginning-of-statement-1):
6386         Refactor and enhance to handle bitfield declarations.
6387         (c-punctuation-in): New function.
6388         (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
6389         declarations properly.
6391 2011-07-26  Ulf Jasper  <ulf.jasper@web.de>
6393         * calendar/icalendar.el (icalendar--all-events): Take care of
6394         multiple vcalendars in a single file.
6395         (icalendar--convert-float-to-ical): Checkdoc fixes.
6397 2011-07-25  Deniz Dogan  <deniz@dogan.se>
6399         * image.el (insert-image): Clarifying docstring.
6401 2011-07-24  Michael Albinus  <michael.albinus@gmx.de>
6403         * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
6404         `tramp-send-command-and-check' if there is no error.
6405         (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
6407 2011-07-22  Alan Mackenzie  <acm@muc.de>
6409         Prevent cc-langs.elc being loaded at run time.
6411         * progmodes/cc-mode.el: Remove two autoload forms which loaded
6412         cc-langs.
6414         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
6415         "(require 'cc-langs)".  Quote a form so it will evaluate at
6416         (cc-mode's) compilation time.
6418 2011-07-22  Michael Albinus  <michael.albinus@gmx.de>
6420         * net/tramp.el (tramp-file-name-handler): Avoid recursive
6421         loading.  (Bug#9114)
6423 2011-07-21  Martin Rudalics  <rudalics@gmx.at>
6425         * window.el (display-buffer-pop-up-window)
6426         (display-buffer-pop-up-side-window)
6427         (display-buffer-in-side-window): Call display-buffer-set-height
6428         and display-buffer-set-width after setting the new window's
6429         buffer so `fit-window-to-buffer' and friends work on the right buffer.
6431 2011-07-20  Sam Steingold  <sds@gnu.org>
6433         * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
6434         (etags-tags-included-tables): Call `convert-standard-filename' on
6435         the file names contained in TAGS so that windows Emacs can handle
6436         TAGS files created by cygwin ctags.
6438 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6440         * proced.el (proced-update): Revert yesterday's bug#1779 patch,
6441         which apparently didn't work.
6443 2011-07-19  Roland Winkler  <winkler@gnu.org>
6445         * proced.el (proced-send-signal): For *Marked Processes* buffer
6446         put point at beginning of buffer.
6448 2011-07-19  Stephen Berman  <stephen.berman@gmx.net>
6450         * proced.el (proced-format): Make header lines align with the text
6451         (bug#1779).
6453 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6455         * view.el (view-buffer): Allow running in `special' modes if we're
6456         visiting a file (bug#8615).
6458 2011-07-19  Martin Rudalics  <rudalics@gmx.at>
6460         * window.el (display-buffer-alist-of-strings-p)
6461         (display-buffer-alist-set-1, display-buffer-alist-set-2):
6462         New functions.
6463         (display-buffer-alist-set): Rewrite to handle Emacs 23 options
6464         more accurately.
6466 2011-07-18  Alan Mackenzie  <acm@muc.de>
6468         Fontify declarators properly when, e.g., a jit-lock chunk begins
6469         inside a declaration.
6471         * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
6473         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
6474         New function.
6475         (c-complex-decl-matchers): Insert reference to
6476         c-font-lock-enclosing-decls.
6478         * progmodes/cc-engine.el (c-backward-single-comment):
6479         (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
6480         to nil around calls to (forward-comment -1).
6482 2011-07-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6484         * image.el (put-image): Doc typo fix.
6486         * progmodes/etags.el (tags-search): Doc typo fix.
6488         * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
6489         password if we get errors 550 to 554.
6491 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6493         * net/gnutls.el (gnutls-log-level): Remove.
6495         * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
6496         indentation character (bug#6380).
6498         * files.el (buffer-offer-save): Made permanently local (bug#6241).
6500         * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
6501         to clarify what the problem is (bug#4291).
6503         * simple.el (current-kill): Clarify what
6504         `interprogram-paste-function' does (bug#7500).
6505         (auto-fill-mode): Document `auto-fill-function' in relation to
6506         `auto-fill-mode' (bug#2470).
6508 2011-07-16  Lawrence Mitchell  <wence@gmx.li>
6510         * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
6511         method if slot is read-only (bug#9035).
6513 2011-07-16  Martin Rudalics  <rudalics@gmx.at>
6515         * frame.el (select-frame-set-input-focus): New argument NORECORD.
6516         * window.el (pop-to-buffer): Select window used even if it was
6517         selected before, see discussion of (Bug#8615), (Bug#6954).
6518         Pass argument NORECORD on to select-frame-set-input-focus.
6520 2011-07-15  Glenn Morris  <rgm@gnu.org>
6522         * subr.el (read-char-choice): Allow quitting.  (Bug#9001)
6523         Respect help-form.
6525 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
6527         * net/gnutls.el (gnutls-min-prime-bits): New variable.
6528         (gnutls-negotiate): Use it.
6530 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6532         * net/gnutls.el (gnutls-negotiate):
6533         Upcase `gnutls-algorithm-priority'.
6535 2011-07-15  Glenn Morris  <rgm@gnu.org>
6537         * jka-compr.el (jka-compr-verbose): Move from here...
6538         * jka-cmpr-hook.el (jka-compr-verbose): ... to here.  (Bug#9090)
6539         Add missing :version tag.
6540         * info.el: No need to require jka-compr when compiling.
6542 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6544         * net/gnutls.el (gnutls-algorithm-priority): New variable.
6545         (gnutls-negotiate): Use it.
6547         * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
6549         * info.el (Info-beginning-of-buffer): New command.
6550         (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
6551         announcing `b' as the key (bug#8325).
6552         (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
6554         * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
6556         * international/mule-cmds.el
6557         (describe-specified-language-support): Make the error message
6558         clearer (bug#8905).
6560         * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
6562         * isearch.el (isearch-barrier): Add a doc string, since it's
6563         mentioned in a function doc string (bug#8678).
6565 2011-07-15  Martin Rudalics  <rudalics@gmx.at>
6567         * window.el (switch-to-buffer): Call pop-to-buffer with normalized
6568         buffer argument (Bug#9083) and self-identifying label argument.
6570 2011-07-15  Glenn Morris  <rgm@gnu.org>
6572         * emacs-lisp/debug.el (debug): Doc fix.  (Bug#8273)
6574 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6576         * man.el (Man-fontify-manpage): Fix message when formatting the
6577         man page (bug#7929).
6579 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
6581         * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
6582         argument LRM; if non-nil, append an invisible LRM character to the
6583         buffer name.
6584         (list-buffers-noselect): Call Buffer-menu-buffer+size with the
6585         last argument non-nil, when formatting buffer names.
6586         (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
6587         paragraph direction.
6589 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6591         * man.el (Man-bgproc-sentinel): Skip any arguments and only output
6592         the man page name (bug#7929).
6594         * image.el (put-image): Mention the `put-image' overlay property
6595         (bug#7834).
6597         * scroll-bar.el (set-scroll-bar-mode): Mention that
6598         `scroll-bar-mode' lists the values (bug#7772).
6600         * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
6601         command (bug#7729).
6603         * rect.el (apply-on-rectangle): Return the point after the last
6604         operation.
6605         (string-rectangle): Go to the point after the last operation
6606         (bug#7522).
6608         * printing.el (pr-toggle-region): Clarify the documentation
6609         slightly (bug#7493).
6611         * time.el (display-time-update):
6612         Allow `display-time-mail-function' to return nil (bug#7158).
6613         Fix suggested by Detlev Zundel.
6615         * vc/diff.el (diff): Clarify the order the file names are read
6616         (bug#7111).
6618         * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
6619         the doc string (bug#7015).
6621         * font-lock.el (font-lock-maximum-decoration): Mention what
6622         numeric levels mean (bug#6935).
6624         * startup.el (initial-buffer-choice): Don't mention the `none'
6625         selection, which is against policy.
6627 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
6629         * window.el (display-buffer-normalize-special):
6630         Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
6632 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
6634         * subr.el (version<, version<=, version=): Mention "-CVS" and
6635         "-12345" alpha version numbers.
6637 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
6639         * bindings.el: Add advertised binding for set-mark-command
6640         (Bug#5772).
6642 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
6644         * bindings.el (mode-line-other-buffer):
6645         * bookmark.el (bookmark-bmenu-2-window):
6646         * bs.el (bs-cycle-next, bs-cycle-previous):
6647         * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
6648         switch-to-buffer.
6650         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
6651         Delete.
6653 2011-07-14  Juanma Barranquero  <lekktu@gmail.com>
6655         * follow.el (follow-debug-message, follow-redisplay):
6656         * jka-cmpr-hook.el (with-auto-compression-mode):
6657         Fix typos in docstrings.
6659 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6661         * subr.el (with-silent-modifications): Clarify somewhat what the
6662         macro inhibits (bug#6525).
6664         * simple.el (eval-expression): Note what it does if called
6665         interactively (bug#6495).
6667 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
6669         * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
6670         Use pop-to-buffer buffer-or-name if it is nil.
6672         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6673         Remove switch-to-buffer.
6675 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6677         * files.el (make-directory): Clarify that an error will be raised
6678         if there's an error (bug#6397).
6680         * startup.el (initial-buffer-choice): Add `none' as a choice
6681         (bug#6234).
6683         * subr.el (add-hook): Clarify section about buffer-local hooks
6684         (bug#6218).
6686         * dired.el (dired-flagged): Clarify doc string (bug#6117).
6688 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
6690         * tabify.el (untabify): Preserve the current column so that point
6691         doesn't move (bug#6032).
6693 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6695         * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
6696         Rewrite to avoid awkward possessive "s" (bug#5986).
6698 2011-07-13  Glenn Morris  <rgm@gnu.org>
6700         * dired.el (dired-use-ls-dired): Doc fix.  (Bug#9039).
6701         (dired-insert-directory): Give a message the first time
6702         if ls is found not to support --dired.
6704 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6706         * simple.el (toggle-truncate-lines): Clarify what is toggled
6707         (bug#5580).  Text by Drew Adams.
6709 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
6711         * simple.el (blink-matching-open): Make the error message from the
6712         last change less verbose.
6714 2011-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
6716         * font-lock.el (font-lock-comment-face): Use the high contrast
6717         "yellow" color for font-lock-comment-face on low color terminals
6718         using a dark background color (bug#4221).
6720 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6722         * dired.el (dired-insert-set-properties): Make the doc string
6723         reflect what it does now (bug#5325).
6725         * simple.el (blink-matching-open): Say that we were unable to find
6726         the match within the limit, if we're limited (bug#5122).
6728         * international/mule-cmds.el (prefer-coding-system): Add an
6729         example (bug#4869).
6731         * progmodes/etags.el (tags-search): Document `file-list-form'
6732         (bug#4731).
6734 2011-07-13  Lawrence Mitchell  <wence@gmx.li>
6736         * net/browse-url.el (browse-url-default-browser)
6737         (browse-url-browser-function): Make the default browser choice a
6738         bit more logical (bug#4300).  Also clean up the doc string.
6740 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
6742         * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
6743         binary endings (bug#4440).
6745 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6747         * info.el (info-insert-file-contents): Inhibit jka-compr messages,
6748         which can be pretty annoying (bug#8971).
6750         * jka-compr.el (jka-compr-verbose): New variable, and use
6751         throughout (bug#8971).
6753         * info.el (Info-find-file): Fall back on the installation
6754         directory if we can't find the info node anywhere else.
6756 2011-07-13  Sergei Organov  <osv@javad.com>  (tiny change)
6758         * vc/vc.el (vc-revert-file):
6759         Don't set file time-stamp in the past.  (Bug#5181)
6761 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6763         * files.el (after-find-file): Give a better error message when
6764         trying to find a symlink that points to a file that doesn't exist
6765         (bug#4398).
6767         * progmodes/cc-vars.el: Remove (probably) misleading comment
6768         (bug#4396).
6770 2011-07-12  Johan BockgÃ¥rd  <bojohan@gnu.org>
6772         * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
6774 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
6776         * mouse-sel.el: Hack restoring functionality, while keeping
6777         compatibility with 2010-07-03 changes to mouse selection.
6778         (mouse-sel-primary-overlay): New var.
6779         (mouse-sel-selection-alist): Use it.
6780         (mouse-sel-mode): Doc fix; remove points that are default features
6781         of mouse.el.
6783 2011-07-12  Johan BockgÃ¥rd  <bojohan@gnu.org>
6785         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6786         Fix previous fix (bug#2490).
6788 2011-07-12  Roland Winkler  <winkler@gnu.org>
6790         * textmodes/bibtex.el (bibtex-initialize):
6791         Use pop-to-buffer-same-window.
6792         (bibtex-search-entries): Fix interactive call.
6794 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6796         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6797         Fontise bytecomp Error lines more correctly (bug#2490).
6798         Fix suggested by Johan BockgÃ¥rd.
6800         * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
6802         * dired-x.el (dired-guess-default): Use `delete-dups'.
6804 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
6806         * dired.el (dired-mark-prompt):
6807         * dired-aux.el (dired-read-shell-command): Doc fix.
6809 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6811         * mail/sendmail.el (sendmail-query-once):
6812         Use `customize-save-variable' unconditionally, now that it works under
6813         emacs -Q.
6815         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
6817         * cus-edit.el (custom-file): Take an optional no-error variable.
6818         (customize-save-variable): Set the variable, and give a warning if
6819         running under "emacs -q".
6821 2011-07-11  Juanma Barranquero  <lekktu@gmail.com>
6823         * loadhist.el (unload-feature-special-hooks):
6824         Add `auto-coding-functions', `fill-nobreak-predicate' and
6825         `find-directory-functions' (bug#5327).
6827 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6829         * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
6831         * cus-edit.el (custom-guess-name-alist): -alist variables should
6832         use the `alist' type (bug#3120).  Suggested by Drew Adams.
6834         * printing.el: Add documentation to all the `pr-toggle-' commands.
6836 2011-07-11  Leo Liu  <sdl.web@gmail.com>
6838         * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
6839         backends where it makes sense (bug#2623).
6841 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6843         * dired-x.el (dired-guess-default): Remove duplicate shell command
6844         entries (bug#2028).
6845         (dired-guess-default): Fix grammar in doc string (bug#2028).
6846         (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
6848         * subr.el (remove-duplicates): New conveniency function.
6850 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6852         * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
6853         (bug#1526).
6855 2011-07-10  Martin Rudalics  <rudalics@gmx.at>
6857         * window.el (display-buffer-normalize-default): Don't invert
6858         meaning of even-window-heights.  Reported by Eli Zaretskii
6859         <eliz@gnu.org>.
6861 2011-07-10  Bob Rogers  <rogers@rgrjr.dyndns.org>
6863         * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
6865 2011-07-10  Chong Yidong  <cyd@stupidchicken.com>
6867         * window.el (display-buffer): Fix arguments to
6868         display-buffer-reuse-window in last change.
6870         * faces.el (link): Use a less saturated blue on light backgrounds.
6872         * startup.el (fancy-startup-text, fancy-about-text)
6873         (fancy-startup-tail): Use font-lock faces, for background safety.
6875 2011-07-09  Bob Nnamtrop  <bobnnamtrop@gmail.com>  (tiny change)
6877         * emulation/viper-cmd.el (viper-change-state-to-vi):
6878         Limit triggering of abbrev expansion (Bug#9038).
6880 2011-07-09  Martin Rudalics  <rudalics@gmx.at>
6882         * window.el (display-buffer-default-specifiers): Remove.
6883         (display-buffer-macro-specifiers): Remove default specifiers.
6884         (display-buffer-alist): Default to nil.
6885         (display-buffer-reuse-window): New optional argument other-window.
6886         (display-buffer-pop-up-window): Allow splitting internal
6887         windows.  Check whether a live window was created.
6888         (display-buffer-other-window-means-other-frame)
6889         (display-buffer-normalize-arguments): Rename to
6890         display-buffer-normalize-argument and rewrite.  Set the
6891         other-window specifier.
6892         (display-buffer-normalize-special): New function.
6893         (display-buffer-normalize-options): Rename to
6894         display-buffer-normalize-default and rewrite.
6895         (display-buffer-normalize-options-inhibit): Remove.
6896         (display-buffer-normalize-specifiers): Rewrite.
6897         (display-buffer): Process other-window specifier and call
6898         display-buffer-reuse-window with it.  Emulate Emacs 23 behavior
6899         more faithfully.
6900         (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
6901         (display-buffer-alist-set): Don't handle 'unset default values.
6902         (display-buffer-in-window, display-buffer-alist-set):
6903         Replace symbol "dedicated" by "dedicate".  Reported by Tassilo Horn
6904         <tassilo@member.fsf.org>.
6906 2011-07-09  Leo Liu  <sdl.web@gmail.com>
6908         * register.el (insert-register): Restore accidental change on
6909         2011-06-26.  (Bug#9028)
6911 2011-07-09  Glenn Morris  <rgm@gnu.org>
6913         * subr.el (remq): Handle the empty list.  (Bug#9024)
6915 2011-07-08  Andreas Schwab  <schwab@linux-m68k.org>
6917         * mail/sendmail.el (send-mail-function): No longer delay custom
6918         initialization.
6919         * custom.el (custom-initialize-delay): Doc fix.
6921 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6923         * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
6925 2011-07-08  Michael Albinus  <michael.albinus@gmx.de>
6927         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
6928         human-friendly prompt.
6930 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6932         * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
6933         provided by a particular plugin.
6935 2011-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6937         * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
6938         save customizations (with "emacs -Q"), just set the variable
6939         instead of erroring out.
6941         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
6943 2011-07-08  Juri Linkov  <juri@jurta.org>
6945         * arc-mode.el (archive-zip-expunge, archive-zip-update)
6946         (archive-zip-update-case): Use 7z if found by `executable-find'.
6947         The order of searching the available programs is the same as in
6948         `archive-zip-extract' (bug#8968).
6950 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
6952         * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
6953         (menu-bar-options-menu): Tweak descriptions.
6955 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6957         * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
6958         menu items into verb phrases (bug#1421).  Also refill to fit under
6959         80 columns.
6961 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
6963         * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
6964         (Info-read-node-name): Doc fix (Bug#1084).
6966         * thingatpt.el (forward-thing, bounds-of-thing-at-point)
6967         (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
6968         (end-of-sexp, beginning-of-sexp)
6969         (thing-at-point-bounds-of-list-at-point, forward-whitespace)
6970         (forward-symbol, forward-same-syntax, word-at-point)
6971         (sentence-at-point): Doc fix (Bug#1144).
6973 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6975         * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
6976         should cover it (bug#1281).
6978         * cus-edit.el (custom-show): Mark as obsolete.
6980         * net/network-stream.el (network-stream-open-starttls): If GnuTLS
6981         negotiation fails, then possibly try again with a non-encrypted
6982         connection (bug#9017).
6984         * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
6985         be used.
6987 2011-07-07  Richard Stallman  <rms@gnu.org>
6989         * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
6990         property, and handle its changed format.
6991         Look for the correct line number.
6992         Use file's line contents (but not past first =) to find
6993         correct line in message.
6995 2011-07-07  Kenichi Handa  <handa@m17n.org>
6997         * international/characters.el (build-unicode-category-table):
6998         Delete it.
6999         (unicode-category-table): Set it by unicode-property-table-internal.
7001         * international/mule-cmds.el (char-code-property-alist): Move to
7002         to src/chartab.c.
7003         (get-char-code-property): Call unicode-property-table-internal to
7004         load a file.  Call get-unicode-property-internal where necessary.
7005         (put-char-code-property): Call unicode-property-table-internal to
7006         load a file.  Call put-unicode-property-internal where necessary.
7007         put-unicode-property-internal where necessary.
7008         (char-code-property-description):
7009         Call unicode-property-table-internal to load a file.
7011         * international/charprop.el:
7012         * international/uni-bidi.el:
7013         * international/uni-category.el:
7014         * international/uni-combining.el:
7015         * international/uni-comment.el:
7016         * international/uni-decimal.el:
7017         * international/uni-decomposition.el:
7018         * international/uni-digit.el:
7019         * international/uni-lowercase.el:
7020         * international/uni-mirrored.el:
7021         * international/uni-name.el:
7022         * international/uni-numeric.el:
7023         * international/uni-old-name.el:
7024         * international/uni-titlecase.el:
7025         * international/uni-uppercase.el: Regenerate.
7027         * loadup.el: Load international/charprop.el before
7028         international/characters.
7030 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
7032         * window.el (next-buffer, previous-buffer): Signal an error if
7033         called from a minibuffer window.
7035         * bindings.el: Revert 2011-07-04 change.
7037 2011-07-06  Richard Stallman  <rms@gnu.org>
7039         * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
7040         (rmail-mime-insert-bulk, rmail-mime-insert-text):
7041         Treat markers like ints.
7042         (rmail-mime-entity): Doc fix.
7044 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7046         * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
7047         defcustom again for backwards compatibility.
7049         * simple.el (shell-command-on-region): Fill.
7051         * dired-aux.el (dired-kill-line): Add a doc string.
7053         * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
7054         to "\\sw\\|\\s_" (bug#358).
7056         * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
7057         (dired-unmark-backward): Ditto.
7058         (dired-flag-backup-files): Ditto.
7060         * dired-x.el (dired-mark-sexp): Ditto.
7062 2011-07-06  Richard Stallman  <rms@gnu.org>
7064         * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
7065         (rmail-mime-entity): New arg TRUNCATED.
7066         (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
7067         New functions.
7068         (rmail-mime-save): Warn if entity is truncated.
7069         (rmail-mime-toggle-hidden): Likewise, for showing.
7070         (rmail-mime-process-multipart): Record when an entity is truncated.
7072         * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
7073         if ENTITY is a string.
7075 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7077         * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
7078         of faces when `M-C-x'-ing their definitions (bug#8378).
7079         Also clean up the code slightly.
7081         * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
7082         because that makes the colors go away.
7084         * mail/sendmail.el (send-mail-function): Change the default to
7085         `sendmail-query-once'.
7086         (sendmail-query-once): Add an autoload cookie.
7088         * net/network-stream.el (network-stream-open-starttls): Try using
7089         a plain connection even if the server offered STARTTLS, and we
7090         kinda wanted to use it, if Emacs doesn't have any STARTTLS
7091         capability.  This should make smtpmail.el work in slightly more
7092         configurations.
7094 2011-07-06  Michael Albinus  <michael.albinus@gmx.de>
7096         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
7097         New defun.
7098         * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
7100 2011-07-06  Michael R. Mauger  <mmaug@yahoo.com>
7102         * progmodes/sql.el: Version 3.0
7103         (sql-product-alist): Add product :completion-object,
7104         :completion-column, and :statement attributes.
7105         (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
7106         (sql-mode-syntax-table): Mark all punctuation.
7107         (sql-font-lock-keywords-builder): Temporarily remove fallback on
7108         ansi keywords.
7109         (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
7110         (sql-mode-oracle-font-lock-keywords): Improve.
7111         (sql-oracle-show-reserved-words): New function for development.
7112         (sql-product-font-lock): Simplify for source code buffers.
7113         (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
7114         New functions.
7115         (sql-highlight-product): Set product specific syntax table.
7116         (sql-mode-map): Add statement movement functions.
7117         (sql-ansi-statement-starters, sql-oracle-statement-starters):
7118         New variable.
7119         (sql-statement-regexp, sql-beginning-of-statement)
7120         (sql-end-of-statement, sql-signum): New functions.
7121         (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
7122         (sql-show-sqli-buffer): Bug fix.
7123         (sql-interactive-mode): Store connection data as buffer local.
7124         (sql-connect): Add NEW-NAME parameter.  Redesign interaction
7125         with sql-interactive-mode.
7126         (sql-save-connection): Save buffer local settings.
7127         (sql-connection-menu-filter): Change menu entry name.
7128         (sql-product-interactive): Bug fix.
7129         (sql-preoutput-hold): New variable.
7130         (sql-interactive-remove-continuation-prompt): Bug fixes.
7131         (sql-debug-redirect): New variable.
7132         (sql-str-literal): New function.
7133         (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
7134         Redesign.
7135         (sql-oracle-save-settings, sql-oracle-restore-settings)
7136         (sql-oracle-list-all, sql-oracle-list-table): New functions.
7137         (sql-completion-object, sql-completion-column)
7138         (sql-completion-sqlbuf): New variables.
7139         (sql-build-completions-1, sql-build-completions)
7140         (sql-try-completion): New functions.
7141         (sql-read-table-name): Use them.
7142         (sql-contains-names): New buffer local variable.
7143         (sql-list-all, sql-list-table): Use it.
7144         (sql-oracle-completion-types): New variable.
7145         (sql-oracle-completion-object, sql-sqlite-completion-object)
7146         (sql-postgres-completion-object): New functions.
7148 2011-07-06  Glenn Morris  <rgm@gnu.org>
7150         * window.el (pop-to-buffer): Doc fix.
7152 2011-07-06  Markus Heiser  <markus.heiser@darmarit.de>  (tiny change)
7154         * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
7156 2011-07-06  Chong Yidong  <cyd@stupidchicken.com>
7158         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
7160         * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
7162 2011-07-05  Chong Yidong  <cyd@stupidchicken.com>
7164         * button.el (button): Inherit from link face.  Suggested by Dan
7165         Nicolaescu.
7167 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7169         * progmodes/gdb-mi.el: Fit in 80 columns.
7170         (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
7171         switch-to-buffer.
7173         * progmodes/which-func.el (which-func-ff-hook): Don't output a message
7174         if imenu is simply not configured (bug#8941).
7176 2011-07-05  Ken Manheimer  <ken.manheimer@gmail.com>
7178         * allout.el (allout-post-undo-hook): New allout outline-change
7179         event hook to signal undo activity.
7180         (allout-post-command-business): Run allout-post-undo-hook if an
7181         undo just occurred.
7182         (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
7183         * allout-widgets.el (allout-widgets-after-undo-function):
7184         Ensure the integrity of the current item's decoration after it has been
7185         in the vicinity of an undo.
7186         (allout-widgets-mode): Include allout-widgets-after-undo-function
7187         on the new allout-post-undo-hook.
7189 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7191         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
7192         Let define-derived-mode define it.
7193         * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
7194         cycles of abbrev-table inheritance (bug#8998).
7196 2011-07-05  Roland Winkler  <winkler@gnu.org>
7198         * textmodes/bibtex.el: Add support for biblatex.
7199         (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
7200         (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
7201         (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
7202         (bibtex-entry-alist, bibtex-field-alist): New variables.
7203         (bibtex-entry-field-alist): Obsolete alias for
7204         bibtex-BibTeX-entry-alist.
7205         (bibtex-entry-alist, bibtex-field-alist): New widgets.
7206         (bibtex-set-dialect): New command.
7207         (bibtex-entry-type, bibtex-entry-head)
7208         (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
7209         Bind via bibtex-set-dialect.
7210         (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
7211         (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
7212         (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
7213         (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
7214         Define via bibtex-set-dialect.
7215         (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
7216         Obey bibtex-no-opt-remove-re.
7217         (bibtex-vec-push, bibtex-vec-incr): New functions.
7218         (bibtex-format-entry, bibtex-field-list)
7219         (bibtex-print-help-message, bibtex-validate)
7220         (bibtex-search-entries): Use new format of bibtex-entry-alist.
7222 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7224         * progmodes/compile.el (compilation-goto-locus):
7225         * net/tramp-cmds.el (tramp-append-tramp-buffers):
7226         * bs.el (bs-cycle-next, bs-cycle-previous):
7227         * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
7228         * bindings.el (mode-line-other-buffer):
7229         * autoinsert.el (auto-insert):
7230         * arc-mode.el (archive-extract):
7231         * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
7233 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
7235         * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
7236         Fix check of `emacs-lock-unlockable-modes'.
7237         Coerce true values of `emacs-lock--try-unlocking' to t.
7239 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
7241         * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
7242         * emacs-lock.el: New file.
7244 2011-07-05  Julien Danjou  <julien@danjou.info>
7246         * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
7247         than `boundp' to check if face is set.
7249 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
7251         * register.el (registerv-make):
7252         * window.el (window-min-height): Fix typos in docstrings.
7254 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
7256         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
7257         Update doc string.
7259 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
7261         * server.el (server-execute): Catch quit and call
7262         `server-return-error' to pass the error back to emacsclient and
7263         close the connection (bug#8942).
7265 2011-07-04  Ken Manheimer  <ken.manheimer@gmail.com>
7267         * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
7268         insecure exception for current topic.  Also note that auto-saves
7269         are handled differently.
7271         (allout-auto-save-temporarily-disabled), (allout-just-did-undo):
7272         State variables for tracking auto-save inhibition situation.
7274         (allout-write-contents-hook-handler): Rename from
7275         'allout-write-file-hook-handler', and describe how it depends on
7276         write-contents-functions sensitivity to non-nil value to prevent
7277         file write.
7279         (allout-auto-save-hook-handler): Remove.  auto-save does not check
7280         this in individual buffers, only in the starting buffer, so this
7281         is not the right way for us to inhibit auto-save in a buffer
7282         according to its condition.
7284         (allout-mode): Use new allout-write-contents-hook-handler, and
7285         only with write-contents-functions.  Remove auto-save provisions -
7286         they're implemented elsewhere.
7288         (allout-before-change-handler): If undo is in progress, note that
7289         for attention of allout-post-command-business.
7291         (allout-post-command-business): If the command we're following was
7292         an undo, check for change in the status of encrypted items and
7293         adjust auto-save inhibitions accordingly.
7295         (allout-toggle-subtree-encryption): Adjust auto-save inhibition
7296         according to whether there are or aren't any plain-text topics
7297         pending encryption.
7299         (allout-inhibit-auto-save-info-for-decryption):
7300         Adjust buffer-saved-size and some allout state to inhibit auto-saves
7301         if there are plain-text topics pending encryption.
7303         (allout-maybe-resume-auto-save-info-after-encryption): Adjust
7304         buffer-saved-size and some allout state to not inhibit auto-saves
7305         if there are no longer any plain-text topics pending encryption.
7307         (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
7308         No longer provide for exemption of the current topic.
7310 2011-07-04  Juri Linkov  <juri@jurta.org>
7312         Add 7z operations to delete and save changed members (bug#8968).
7313         * arc-mode.el (archive-7z-expunge, archive-7z-update):
7314         New defcustoms.
7315         (archive-7z-write-file-member): New function.
7316         (archive-7z-summarize): Fix the number of dashes in the
7317         listing output.
7319 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7321         * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
7322         (bug#8958).
7324 2011-07-04  Chong Yidong  <cyd@stupidchicken.com>
7326         * bindings.el: Ignore next-buffer and previous-buffer in
7327         minibuffer-local-map.
7329         * font-lock.el (font-lock-builtin-face): Change light background
7330         color to dark slate blue (Bug#6693).
7332 2011-07-04  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
7334         * progmodes/gdb-mi.el (gdb): Use completion-at-point.
7336 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7338         * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
7339         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7340         Add switch-to-buffer.
7342 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7344         * isearch.el (isearch-search-fun-function): Clarify further the
7345         meaning of the function returned.
7347 2011-07-04  Michael Albinus  <michael.albinus@gmx.de>
7349         * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
7351         * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
7352         (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
7353         Use it.
7354         (tramp-remote-path): Add "/bin" and "/usr/bin".  On busyboxes,
7355         `tramp-default-remote-path' does not exist.
7356         (tramp-send-command-and-read): New optional argument NOERROR.
7357         (tramp-open-connection-setup-interactive-shell)
7358         (tramp-get-remote-path, tramp-get-remote-stat): Use it.
7359         (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
7360         (tramp-process-sentinel): Flush also process' connection property.
7361         (tramp-sh-handle-start-file-process): Do not set process
7362         sentinel.  It is done now ...
7363         (tramp-maybe-open-connection): ... here.  (Bug#8929)
7365 2011-07-04  MON KEY  <monkey@sandpframing.com>
7367         * play/animate.el (animate-string): Doc fixes and allow changing
7368         the buffer name (bug#5417).
7370 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7372         * play/animate.el (animation-buffer-name): Rename from *animate*.
7374 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7376         * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
7377         This is simpler and helps future-proof the code.
7378         (timer-until): Use time-subtract and float-time.
7379         (timer--time-less-p): Use time-less-p.
7381 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
7383         * type-break.el (timep): Use the value of `float-time' to avoid a
7384         byte-compiler warning.
7386         * server.el (server-eval-and-print): Return any result, even nil.
7388 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7390         * type-break.el: Accept time formats that the builtins accept.
7391         (timep, type-break-time-difference): Accept any format that
7392         float-time accepts, rather than insisting on (HIGH LOW USECS) format.
7393         This is simpler and helps future-proof the code.
7394         (type-break-time-difference): Round rather than ignoring
7395         subseconds components.
7397 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7399         * info.el (Info-apropos-matches): Make non-interactive, since it
7400         doesn't seem to do anything useful as a command (bug#8829).
7402 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
7404         * frame.el (frame-background-mode, frame-set-background-mode):
7405         Move from faces.el.
7406         (frame-default-terminal-background): New function.
7408         * custom.el (custom-push-theme): Don't record faces in `changed'
7409         theme; this doesn't work correctly for per-frame face settings.
7410         (disable-theme): Use face-set-after-frame-default to reset faces.
7411         (custom--frame-color-default): New function.
7413 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7415         * dired.el (dired-flagging-regexp): Remove unused variable
7416         (bug#8769).
7418 2011-03-29  Kevin Ryde  <user42@zip.com.au>
7420         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7421         `perl-Test2' extend to match possible "fail #N" rep count
7422         (bug#8377).
7424 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7426         * mail/feedmail.el (feedmail-buffer-to-smtpmail):
7427         `smtpmail-via-smtp' now returns the error instead of nil.
7429         * isearch.el (isearch-search-fun-function): Clarify the doc string
7430         (bug#8101).
7432 2011-07-03  Richard Kim  <emacs18@gmail.com>  (tiny change)
7434         * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
7435         unnecessary spaces (bug#8987).
7437 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7439         * net/network-stream.el (open-network-stream): Use the
7440         :end-of-capability command thoughout.
7442 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
7444         * net/network-stream.el (open-network-stream): Add the
7445         :end-of-capability command parameter, used by pop3.el.
7447 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7449         * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
7451         * fringe.el (fringe-query-style): Remove redundant text " (type ?
7452         for list)" (bug#6475).
7454         * files.el (file-expand-wildcards): Ignore non-readable
7455         sub-directories while trying to find matches instead of signaling
7456         an error (bug#6297).
7458         * man.el (Man-reference-regexp): Allow matching possible
7459         word-wrapped references (bug#6289).
7461         * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
7462         for consistency with the other vc buffers (bug#6197).
7463         (vc-checkin): Ditto.
7465         * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
7467         * longlines.el (longlines-mode): Document what ARG does (bug#6150).
7469 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7471         * custom.el (defcustom): Clarify that :set is only used in the
7472         Customize user interface (bug#6089).
7474         * progmodes/flymake.el (flymake-mode): If the buffer isn't
7475         associated with a file, refuse to run instead of erroring out
7476         (bug#6084).
7478         * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
7479         the doc string, since it appears that using `fill-column' always
7480         controls the width (bug#7845).
7482         * simple.el (shell-command-on-region): Say where the error output
7483         went if `shell-command-default-error-buffer' is set (bug#6857).
7485 2011-07-02  Ken Manheimer  <ken.manheimer@gmail.com>
7487         * allout.el (allout-yank-processing): Adjust cursor position for
7488         backwards-deleted space.
7490         (allout-rebullet-heading): Register changes with
7491         allout-exposure-changed-hook, so the modified topic is properly
7492         decorated.
7494 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7496         * minibuffer.el (completion-in-region): Document PREDICATE
7497         (bug#7136).
7499         * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
7500         of keyword/argument pairs (bug#6904).
7502         * replace.el (multi-occur):
7503         Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
7505 2011-07-02  Drew Adams  <drew.adams@oracle.com>
7507         * dired.el (dired-mark-if): Make the message about whether it's
7508         marking or unmarking clearer (bug#8523).
7510 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7512         * disp-table.el (display-table-print-array): New function.
7513         (describe-display-table): Use it to print the vectors more pretty
7514         (Bug#8859).
7516 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
7518         * window.el (window-state-get-1): Don't assign clone numbers.
7519         Add clone-of item to list of window parameters.
7520         (window-state-put-2): Don't process clone numbers.
7521         (display-buffer-alist): Fix doc-string.
7523 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7525         * subr.el (remq): Don't allocate if it's not needed.
7526         (keymap--menu-item-binding, keymap--menu-item-with-binding)
7527         (keymap--merge-bindings): New functions.
7528         (keymap-canonicalize): Use them to refine the canonicalization.
7529         * minibuffer.el (minibuffer-local-completion-map)
7530         (minibuffer-local-must-match-map): Move initialization from C.
7531         (minibuffer-local-filename-completion-map): Move initialization from C;
7532         don't inherit from anything here.
7533         (minibuffer-local-filename-must-match-map): Make obsolete.
7534         (completing-read-default): Use make-composed-keymap to combine
7535         minibuffer-local-filename-completion-map with either
7536         minibuffer-local-must-match-map or
7537         minibuffer-local-filename-completion-map.
7539 2011-07-01  Glenn Morris  <rgm@gnu.org>
7541         * type-break.el (type-break-time-sum): Use dolist.
7543         * textmodes/flyspell.el (flyspell-word-search-backward):
7544         Replace CL function.
7546 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7548         * mouse.el (mouse--strip-first-event): New function.
7549         (function-key-map): Use it to map fringe clicks to normal clicks
7550         by default.
7552         * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
7553         (vc-bzr-revision-completion-table): Add support for annotate and date.
7555         * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
7556         inherit from parent.
7558 2011-07-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7560         * dired-aux.el (dired-diff): Doc fixup (bug#8816).
7561         (dired-show-file-type): Doc fixup (bug#8818).
7563         * dired.el (dired-mode): Fix up the doc string as suggested by
7564         Drew Adams (bug#8817).
7566         * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
7567         cookie, since the manual says that it should be possible to add
7568         this function to `find-file-hook' (bug#8709).
7570 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
7572         * progmodes/cfengine.el: Moved all cfengine3.el functionality
7573         here.  Noted Ted Zlatanov as the maintainer.
7574         (cfengine-common-settings, cfengine-common-syntax): New functions
7575         to set up common things between `cfengine-mode' and
7576         `cfengine3-mode'.
7577         (cfengine3-mode): New mode.
7578         (cfengine3-defuns cfengine3-defuns-regex
7579         (cfengine3-class-selector-regex cfengine3-category-regex)
7580         (cfengine3-vartypes cfengine3-font-lock-keywords)
7581         (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
7582         (cfengine3-indent-line): Add from cfengine3.el.
7584 2011-07-01  Michael Albinus  <michael.albinus@gmx.de>
7586         * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
7588         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
7590 2011-07-01  Martin Rudalics  <rudalics@gmx.at>
7592         * window.el (same-window-buffer-names, same-window-regexps)
7593         (same-window-p, special-display-frame-alist)
7594         (special-display-popup-frame, special-display-function)
7595         (special-display-buffer-names, special-display-regexps)
7596         (special-display-p, pop-up-frame-alist, pop-up-frame-function)
7597         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
7598         (split-window-preferred-function, split-height-threshold)
7599         (split-width-threshold, even-window-heights)
7600         (display-buffer-mark-dedicated, window-splittable-p)
7601         (split-window-sensibly, window-safely-shrinkable-p):
7602         Un-obsolete.
7603         (display-buffer): Don't spread args with function specifier
7604         because special-display-popup-frame won't like it.
7606 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7608         Time-stamp simplifications and fixes.
7609         These improve accuracy slightly, and future-proof the code
7610         against some potential changes to current-time format.
7612         * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
7613         by using time-since and float-time.
7615         * vc/ediff-util.el (ediff-calc-command-time): Use time-since
7616         and float-time.  Say "NNN.NNN seconds" rather than "NNN seconds
7617         + NNN microseconds".
7619         * type-break.el (type-break-time-sum): Rewrite using time-add.
7621         * play/hanoi.el (hanoi-current-time-float): Remove.
7622         All uses replaced by float-time.
7624         * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
7625         This yields a more-accurate answer.
7626         (rng-time-to-float): Remove; no longer needed.
7628         * emacs-lisp/timer.el (timer-relative-time): Use time-add.
7630         * calendar/timeclock.el (timeclock-seconds-to-time):
7631         Defalias to seconds-to-time, since they're the same thing.
7633         * emacs-lisp/elp.el (elp-elapsed-time):
7634         * emacs-lisp/benchmark.el (benchmark-elapse):
7635         * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
7637 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7639         * window.el (bury-buffer): Don't iconify the only frame.
7640         (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
7641         to pop-to-buffer.  Use pop-to-buffer-same-frame if you don't like that.
7643 2011-07-01  Chong Yidong  <cyd@stupidchicken.com>
7645         * eshell/em-smart.el (eshell-smart-display-navigate-list):
7646         Add mouse-yank-primary.
7648 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
7650         * progmodes/cfengine3.el: New file to support CFEngine 3.x.
7652 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7654         * emacs-lisp/find-func.el (find-library--load-name): New fun.
7655         (find-library-name): Use it to find relative load names when provided
7656         absolute file name (bug#8803).
7658 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7660         * textmodes/flyspell.el (flyspell-word): Consider words that
7661         differ only in case as potential doublons (bug#5687).
7663         * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
7664         Remove two rather uninteresting debugging-like messages to make
7665         debbugs.el more silent.
7667         * comint.el (comint-password-prompt-regexp): Accept "Response" as
7668         a password-like phrase.
7670 2011-06-30  Masatake YAMATO  <yamato@redhat.com>
7672         * progmodes/cc-guess.el: New file.
7674         * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
7676         * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
7677         derived from `c-basic-common-init'.
7679         * progmodes/cc-mode.el (top-level): Require cc-guess.
7680         (c-basic-common-init): Use `cc-choose-style-for-mode'.
7682 2011-06-30  Lawrence Mitchell  <wence@gmx.li>
7684         * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
7686 2011-06-30  Alan Mackenzie  <acm@muc.de>
7688         * progmodes/cc-engine.el (c-guess-continued-construct):
7689         Correct the handling of template-args-cont, particularly for when font
7690         lock is disabled.  Name this case as "CASE G".
7692 2011-06-30  Ken Manheimer  <ken.manheimer@gmail.com>
7694         * allout.el (allout-yank-processing): Fix injection of extra space
7695         between bullet and non-whitespace character in first topic when
7696         pasting, ensuring that the actual spacing in the pasted topic
7697         following the bullet char is preserved.  This extra space was
7698         causing pasted encrypted topics to get a decrypted status even
7699         when the content was actually still encrypted.  Now the decryption
7700         status from before the paste is preserved.
7702         (allout-flag-region): Set all allout overlays so they evaporate
7703         when reduced to zero length (evanescent), to prevent overlay
7704         leakage.
7706 2011-06-30  Glenn Morris  <rgm@gnu.org>
7708         * w32-fns.el (w32-charset-info-alist): Declare.
7710         * find-dired.el (find-grep-options): Simplify.
7712         * term/ns-win.el (ns-set-resource): Declare.
7714         * ses.el (row, col): Declare dynamic variables honestly.
7716         * textmodes/reftex-parse.el (index-tags): Declare.
7718 2011-06-30  Chong Yidong  <cyd@stupidchicken.com>
7720         * cus-edit.el (customize-push-and-save): New function.
7722         * files.el (hack-local-variables-confirm): Use it.
7724         * custom.el (load-theme): New arg NO-CONFIRM.
7725         Use customize-push-and-save (Bug#8720).
7726         (custom-enabled-themes): Doc fix.
7728         * cus-theme.el (customize-create-theme)
7729         (custom-theme-merge-theme): Callers to load-theme changed.
7731 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7733         * thingatpt.el (thing-at-point-short-url-regexp): Require that
7734         short URLs have at least one dot in them (bug #7614).
7736         * progmodes/grep.el (rgrep): Bind `process-connection-type' to
7737         nil, because using a pty is apparently too slow (bug #895).
7739 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7741         * mail/sendmail.el (sendmail-query-once): New function.
7742         (sendmail-query-once-function): New variable.
7744 2011-06-29  Glenn Morris  <rgm@gnu.org>
7746         * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
7748         * ses.el (top-level): Require cl when compiling.
7749         (ses-set-localvars): Fix error statement.
7750         Call it at compile time to silence a storm of warnings.
7752 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
7754         * window.el (normalize-live-buffer): Rename to
7755         window-normalize-buffer.
7756         (normalize-live-frame): Rename to window-normalize-frame.
7757         (normalize-any-window): Rename to window-normalize-any-window.
7758         (normalize-live-window): Rename to window-normalize-live-window.
7759         (make-window-atom): Rename to window-make-atom.
7760         (window-resize-reset): Rename to window--resize-reset.
7761         (window-resize-reset-1): Rename to window--resize-reset-1.
7762         (resize-mini-window): Rename to window--resize-mini-window.
7763         (resize-subwindows-skip-p): Rename to
7764         window--resize-subwindows-skip-p.
7765         (resize-subwindows-normal): Rename to
7766         window--resize-subwindows-normal.
7767         (resize-subwindows): Rename to window--resize-subwindows.
7768         (resize-other-windows): Rename to window--resize-siblings.
7769         (resize-this-window): Rename to window--resize-this-window.
7770         (resize-root-window): Rename to window--resize-root-window.
7771         (resize-root-window-vertically): Rename to
7772         window--resize-root-window-vertically.
7773         (normalize-buffer-to-display): Rename to
7774         window-normalize-buffer-to-display.
7775         (normalize-buffer-to-switch-to): Rename to
7776         window-normalize-buffer-to-switch-to.
7777         Correspondingly update all callers of the functions listed
7778         above.
7779         (display-buffer-alist, display-buffer-normalize-arguments)
7780         (display-buffer-normalize-options, display-buffer)
7781         (display-buffer-alist-set): Use "function" instead of
7782         "fun-with-args".
7784 2011-06-28  Chong Yidong  <cyd@stupidchicken.com>
7786         * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
7787         addresses more clearly.  Add hyperlinks for bug-gnu-emacs and
7788         debbugs.gnu.org.  Mention acknowledgment email.
7790 2011-06-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7792         * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
7793         buffer multibyteness, since it shouldn't matter.
7795 2011-06-28  Martin Rudalics  <rudalics@gmx.at>
7797         * window.el (display-buffer-in-side-window): Handle dedicated
7798         windows as in display-buffer-reuse-window.
7799         (display-buffer-normalize-alist): Use value of override
7800         specifier.
7801         (display-buffer-normalize-specifiers): Use value of
7802         other-window-means-other-frame specifier.
7803         (display-buffer-alist): Rewrite some texts in widgets.
7804         (display-buffer): Spread arguments when calling function
7805         specified by fun-with-args.
7807 2011-06-28  Deniz Dogan  <deniz@dogan.se>
7809         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
7810         Unnest `let'.
7812         * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
7813         selectors (Bug#5732).
7814         (css-proprietary-nmstart-re): Use `regexp-opt'.
7816 2011-06-27  Jari Aalto  <jari.aalto@cante.net>
7818         * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
7819         (eshell-ls-date-format): New defcustom.
7820         (eshell-ls-file): Use it.
7822 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7824         * help-fns.el (describe-variable): Fix message for terminal-local vars.
7826 2011-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7828         * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
7829         (ange-ftp-make-tmp-name): New arg.
7830         (ange-ftp-file-local-copy): Use it.
7832 2011-06-27  Jambunathan K  <kjambunathan@gmail.com>
7834         * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
7835         no-conversion (Bug#8870).
7837 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
7839         * window.el (window-right, window-left, window-child)
7840         (window-child-count, window-last-child)
7841         (window-iso-combination-p, walk-window-tree-1)
7842         (window-atom-check-1, window-tree-1, delete-window)
7843         (window-state-get-1, display-buffer-even-window-sizes): Adapt to
7844         new naming conventions - window-vchild, window-hchild,
7845         window-next and window-prev are now called window-top-child,
7846         window-left-child, window-next-sibling and window-prev-sibling
7847         respectively.
7848         (resize-window-reset): Rename to window-resize-reset.
7849         (resize-window-reset-1): Rename to window-resize-reset-1.
7850         (resize-window): Rename to window-resize.
7851         (window-min-height, window-min-width)
7852         (resize-mini-window, resize-this-window, resize-root-window)
7853         (resize-root-window-vertically, adjust-window-trailing-edge)
7854         (enlarge-window, shrink-window, maximize-window)
7855         (minimize-window, delete-window, quit-restore-window)
7856         (split-window, balance-windows, balance-windows-area-adjust)
7857         (balance-windows-area, window-state-put-2)
7858         (display-buffer-even-window-sizes, display-buffer-set-height)
7859         (display-buffer-set-width, set-window-text-height)
7860         (fit-window-to-buffer): Rename all "resize-window" prefixed
7861         calls to use the "window-resize" prefix convention.
7862         (display-buffer-alist): Fix symbol for label specifier.
7863         (display-buffer-reuse-window): Set reuse-dedicated to cdr of
7864         corresponding specifier.
7865         Reported by Juanma Barranquero <lekktu@gmail.com>.
7867 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
7869         * ses.el (ses-destroy-cell-variable-range): Fix heading comment
7870         convention.
7871         (ses-call-printer): Does not pass an empty string to formatter when the
7872         cell is empty to keep from barking printer Calc math-format-value.
7874 2011-06-27  Richard Stallman  <rms@gnu.org>
7876         * battery.el (battery-mode-line-limit): New variable.
7877         (battery-update): Handle it.
7879         * mail/rmailmm.el (rmail-mime-process-multipart):
7880         Handle truncated messages.
7882 2011-06-27  Glenn Morris  <rgm@gnu.org>
7884         * progmodes/flymake.el (flymake-err-line-patterns):
7885         Allow for column numbers in the ant/javac pattern.  (Bug#8866)
7887 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
7889         * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
7890         (ses--clean-!, ses--clean-_): New functions.
7891         (ses-range): Add configurability of readout order, and conversion
7892         to Calc vector.
7894         * ses.el (ses-repair-cell-reference-all): New function.
7895         (ses-cell-symbol): Set macro as safe, so that it can be used in
7896         formulas.
7898         * ses.el: Update cycle detection algorithm.
7899         (ses-localvars): Add ses--Dijkstra-attempt-nb and
7900         ses--Dijkstra-weight-bound, and initial values thereof when applicable.
7901         (ses-set-localvars): New function.
7902         (ses-make-cell): Add property-list as a cell element.
7903         (ses-cell-property-get-fun, ses-cell-property-get)
7904         (ses-cell-property-delq-fun, ses-cell-property-set-fun)
7905         (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
7906         New functions.
7907         (ses-cell-property-set, ses-cell-property-pop)
7908         (ses-cell-property-get-handle): New macro.
7909         (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
7910         New aliases, used for code readability.
7911         (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
7912         cycle detection.
7913         (ses-self-reference-early-detection): New defcustom.
7914         (ses-formula-references): Robustify against self-referring cells.
7915         (ses-mode): Use ses-set-localvars.
7916         (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
7917         before lauching the update processing.
7918         (ses-initialize-Dijkstra-attempt): New function.
7919         (ses-recalculate-cell): Update for cycle detection based on
7920         Dijkstra algorithm.
7922         * ses.el: Fix commenting and indenting convention.
7924 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7926         * bs.el (bs-cycle-next): Complete last change.
7928 2011-06-27  Drew Adams  <drew.adams@oracle.com>
7930         * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
7932 2011-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7934         * net/network-stream.el (network-stream-open-starttls):
7935         Don't re-get capabilities unless we've reestablished connection.
7936         (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
7938         * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
7939         to binary to possibly avoid line encoding issues on Windows (among
7940         other things).
7942 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7944         * net/network-stream.el (open-network-stream): Return an :error
7945         saying what the problem was, if possible.
7947         * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
7948         server.
7950         * net/network-stream.el (network-stream-open-starttls): If we
7951         wanted to use STARTTLS, and the server offered it, but we weren't
7952         able to because we had no STARTTLS support, then close the connection.
7953         (open-network-stream): Return an :error element, if present.
7955 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
7957         * hl-line.el (hl-line-sticky-flag): Doc fix.
7958         (global-hl-line-sticky-flag): New option (Bug#8323).
7959         (global-hl-line-highlight): Obey it.
7961         * vc/vc.el (vc-revert-show-diff): Default to t.
7963 2011-06-26  Ken Manheimer  <ken.manheimer@gmail.com>
7965         * allout-widgets.el (allout-widgets-post-command-business):
7966         Stop decorating intermediate isearch matches.  They're not being
7967         undecorated when an isearch is continued past, and isearch
7968         automatically collapses them.  This leads to "widget leaks", where
7969         decorated items accumulate in collapsed areas.  Lines with lots of
7970         hidden widgets can slow down cursor travel, substantially.
7971         Too much complicated machinery would be needed to ensure undecoration,
7972         so we're doing without this nicety.
7974         (allout-widgets-tally-string): Don't try to do a hash-table-count
7975         of allout-widgets-tally when it's nil.  This eliminates spurious "Error
7976         during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
7977         *Messages* when allout-widgets-maintain-tally is t.
7979 2011-06-26  Martin Rudalics  <rudalics@gmx.at>
7981         * window.el (display-buffer-normalize-argument): Rename to
7982         display-buffer-normalize-arguments.  Handle special meaning of
7983         LABEL argument.  Respect special-display-function when popping up
7984         a new frame.  Fix code searching for a window showing the buffer
7985         on another frame.
7986         (display-buffer-normalize-specifiers):
7987         Call display-buffer-normalize-arguments.
7988         (display-buffer-in-window): Don't undedicate the window if its
7989         buffer remains the same.
7990         Reported by Drew Adams <drew.adams@oracle.com>.
7991         (display-buffer-alist): Add choice for same-window macro
7992         specfier.
7993         (display-buffer): Mention special meaning of LABEL argument in
7994         doc-string.  Fix quoting.  Don't pop up a new frame even as
7995         fallback.
7997 2011-06-26  Juanma Barranquero  <lekktu@gmail.com>
7999         * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
8000         avoid deleting the current window in some cases (bug#8911).
8002 2011-06-26  Andreas Schwab  <schwab@linux-m68k.org>
8004         * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
8005         (Bug#8934)
8007 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8009         * net/network-stream.el (network-stream-open-starttls):
8010         Use built-in TLS support if `gnutls-available-p' is true.
8011         (network-stream-open-tls): Ditto.
8013 2011-06-26  Leo Liu  <sdl.web@gmail.com>
8015         * register.el (registerv): New struct.
8016         (registerv-make): New function.
8017         (jump-to-register, describe-register-1, insert-register):
8018         Support the jump-func, print-func and insert-func slot of a registerv
8019         struct.  (Bug#8415)
8021 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
8023         * vc/vc.el (vc-revert-show-diff): New defcustom.
8024         (vc-diff-internal): New arg specifying diff buffer.
8025         (vc-revert): Obey vc-revert-show-diff.  If we show a diff, don't
8026         reuse an existing *vc-diff* buffer (Bug#8927).
8028         * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
8030 2011-06-26  Glenn Morris  <rgm@gnu.org>
8032         * progmodes/f90.el (f90-critical-indent): New option.
8033         (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
8034         (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
8035         (f90-mode): Doc fix.
8036         (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
8037         (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
8038         (f90-beginning-of-block, f90-next-block, f90-indent-region)
8039         (f90-match-end): Handle block, critical.
8041 2011-06-25  Glenn Morris  <rgm@gnu.org>
8043         * calendar/diary-lib.el (diary-included-files): Doc fix.
8044         (diary-include-files): New function, extracted from
8045         diary-include-other-diary-files and diary-mark-included-diary-files.
8046         (diary-include-other-diary-files, diary-mark-included-diary-files):
8047         Just call diary-include-files.
8048         (diary-mark-entries): Reset diary-included-files on first call.
8050         * calendar/diary-lib.el (diary-mark-entries)
8051         (diary-mark-included-diary-files):
8052         Visit included diary-files in temp buffers.
8054         * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
8055         (f90-blocks-re, f90-program-block-re, f90-end-block-re)
8056         (f90-start-block-re, f90-imenu-generic-expression)
8057         (f90-looking-at-program-block-start, f90-no-block-limit):
8058         Add support for submodules.
8060         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
8061         (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
8063 2011-06-25  Eli Zaretskii  <eliz@gnu.org>
8065         * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
8066         buffer-file-type before setting its value, to avoid disastrous
8067         global effects on decoding files for DOS/Windows systems.  (Bug#8780)
8069 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
8071         * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
8073         * ses.el (ses-unload-function):
8074         * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
8076         * proced.el (proced-unload-function):
8077         * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
8079 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
8081         * server.el (server-create-window-system-frame): Add parameters arg.
8082         (server-process-filter): Doc fix.  Handle frame-parameters.
8084 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
8086         Fix bug#8730, bug#8781.
8088         * loadhist.el (unload--set-major-mode): New function.
8089         (unload-feature): Use it.
8091         * progmodes/python.el (python-after-info-look): Add autoload cookie.
8092         (python-unload-function): New function.
8094 2011-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8096         * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
8098 2011-06-25  Giuseppe Scrivano  <gscrivano@gnu.org>
8100         * net/browse-url.el (browse-url-firefox-program): Add icecat to
8101         the candidates list.
8103 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
8105         * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
8107 2011-06-23  Richard Stallman  <rms@gnu.org>
8109         * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
8110         (rmail-variables): Set next-error-move-function.
8111         (rmail-what-message): Take argument POS.
8112         (rmail-next-error-move): New function.
8114 2011-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8116         * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
8117         messages for adjacent non-terminals.
8119 2011-06-23  Richard Stallman  <rms@gnu.org>
8121         * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
8122         (rmail-show-message-1): Preserve buffer modified flag.
8123         (rmail-start-mail): Don't specify use of rmail-mail-return;
8124         that's done by mail-bury now.
8125         (rmail-mail-return): Handle arg NEWBUF.
8127 2011-06-23  Michael Albinus  <michael.albinus@gmx.de>
8129         * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
8130         SIZE is a number.
8132 2011-06-23  Martin Rudalics  <rudalics@gmx.at>
8134         * window.el (get-lru-window, get-mru-window)
8135         (get-largest-window): Never return a minibuffer window.
8136         (display-buffer-pop-up-window): Fix a bug that could lead to
8137         reusing the minibuffer window.
8138         (display-buffer): Pass original specifier argument to
8139         display-buffer-function instead of the normalized one.
8140         Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
8142 2011-06-22  Leo Liu  <sdl.web@gmail.com>
8144         * minibuffer.el (completing-read-function)
8145         (completing-read-default): Move from minibuf.c
8147 2011-06-22  Richard Stallman  <rms@gnu.org>
8149         * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
8150         to Rmail even if not started by a special Rmail command.
8152         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
8153         Copy the buffer currently showing just one message.
8155 2011-06-22  Roland Winkler  <winkler@gnu.org>
8157         * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
8158         (bibtex-clean-entry): First delete the old key so that a
8159         customized algorithm for generating the new key does not get
8160         confused by the old key.
8161         (bibtex-url): Obey regexp of first step.
8162         (bibtex-search-entries): Do not use add-to-list with local
8163         list-var.
8165 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8167         * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
8168         stored a user name, then query for the password first, instead of
8169         waiting for SMTP to give an error message and the trying again.
8171 2011-06-22  Lawrence Mitchell  <wence@gmx.li>
8173         * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
8174         BUFFER in call-process.
8176 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8178         * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
8179         QUIT twice.
8180         (smtpmail-try-auth-methods): Require user name and password from
8181         auth-source.
8183 2011-06-22  Martin Rudalics  <rudalics@gmx.at>
8185         * window.el (display-buffer-default-specifiers)
8186         (display-buffer-alist): Remove entries for pop-up-frame-alist.
8187         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
8188         (split-window): Normalize SIDE argument (Bug#8916).
8190         * frame.el (pop-up-frame-alist, pop-up-frame-function)
8191         (special-display-frame-alist, special-display-popup-frame):
8192         Remove duplicate declarations.  These are now in window.el.
8194 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8196         * mail/smtpmail.el (smtpmail-via-smtp):
8197         Set :use-starttls-if-possible so that we always use STARTTLS if the
8198         server supports it.  SMTP servers that support STARTTLS commonly
8199         require it.
8201         * net/network-stream.el (network-stream-open-starttls): Support
8202         upgrading to STARTTLS always, even if we don't have built-in support.
8203         (open-network-stream): Add the :always-query-capabilities keyword.
8205         * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
8206         upgrades with `open-network-stream', and rely solely on
8207         auth-source for all credentials.  Big changes throughout the file,
8208         but in particular:
8209         (smtpmail-auth-credentials): Remove.
8210         (smtpmail-starttls-credentials): Remove.
8211         (smtpmail-via-smtp): Check for servers saying they want AUTH after
8212         MAIL FROM, too.
8214         * net/network-stream.el (network-stream-open-starttls):
8215         Provide support for client certificates both for external and built-in
8216         STARTTLS.
8217         (auth-source): Require.
8218         (open-network-stream): Document the :client-certificate keyword.
8219         (network-stream-certificate): Change cert-cert to cert and
8220         cert-key to key.
8222 2011-06-21  Michael Albinus  <michael.albinus@gmx.de>
8224         * net/tramp-cache.el (top): Don't load the persistency file when
8225         "emacs -Q" has been called.
8227 2011-06-21  Tim Harper  <timcharper@gmail.com>
8229         * term/ns-win.el (ns-initialize-window-system):
8230         Set application-specific `ApplePressAndHoldEnabled' system
8231         resource to NO as it is not yet supported by the NS port.
8233 2011-06-21  Juanma Barranquero  <lekktu@gmail.com>
8235         * misc.el (list-dynamic-libraries--refresh): Compute header here...
8236         (list-dynamic-libraries): ...not here.
8238 2011-06-21  Leo Liu  <sdl.web@gmail.com>
8240         * subr.el (sha1): Implement sha1 using secure-hash.
8242 2011-06-21  Martin Rudalics  <rudalics@gmx.at>
8244         * window.el (display-buffer-alist): In default value do not
8245         enforce searching a window on any but the selected frame.
8246         Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
8247         (display-buffer-select-window): Remove function.
8248         (display-buffer-in-window): When a window on another frame gets
8249         reused, do not select it any more but just raise its frame if
8250         necessary (Bug#8851) and (Bug#8856).
8251         (display-buffer-normalize-options): Handle pop-up-frames related
8252         options more faithfully.
8253         (pop-to-buffer): Don't rely on `display-buffer' selecting the
8254         window if it is on another frame.
8255         (display-buffer-alist, display-buffer-default-specifiers):
8256         Don't make new frame unsplittable by default.
8257         (display-buffer-normalize-argument): Fix doc-string typo and use
8258         'same-frame-other-window instead of 'other-window when associating
8259         with display-buffer-macro-specifiers.
8261 2011-06-21  Vincent Belaïche  <vincent.b.1@hotmail.fr>
8263         * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
8264         New functions.
8265         (5x5-mode-map, 5x5-mode-menu): Bind them.
8266         (5x5-draw-grid): Tweak the solver's rendering.
8268 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8270         * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
8271         `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
8273 2011-06-21  Drew Adams  <drew.adams@oracle.com>
8275         * menu-bar.el: Use function variable instead of switch-to-buffer.
8276         (menu-bar-select-buffer-function): New variable.
8277         (menu-bar-update-buffers): Use it (bug#8876).
8279 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8281         * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
8282         variable's status.
8284 2011-06-20  Jan Djärv  <jan.h.d@swipnet.se>
8286         * x-dnd.el (x-dnd-version-from-flags)
8287         (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
8288         and long as number (Bug#8899).
8289         (x-dnd-handle-xdnd): Call functions above (Bug#8899).
8291 2011-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
8293         * minibuffer.el (completion-metadata): Add `metadata' to the alist.
8294         (completion-try-completion, completion-all-completions): Compute the
8295         metadata argument if it's missing; make it optional (bug#8795).
8297         * wid-edit.el: Use lex-bind and move towards completion-at-point.
8298         (widget-complete): Use new :completion-function property.
8299         (widget-completions-at-point): New function.
8300         (default): Use :completion-function instead of :complete.
8301         (widget-default-completions): Rename from widget-default-complete;
8302         Rewrite.
8303         (widget-string-complete, widget-file-complete, widget-color-complete):
8304         Remove functions.
8305         (file, symbol, function, variable, coding-system, color):
8306         * international/mule-cmds.el (default-input-method, charset)
8307         (language-info-custom-alist):
8308         * cus-edit.el (face): Use new property :completions.
8310         * progmodes/pascal.el (pascal-completions-at-point): New function.
8311         (pascal-mode): Use it.
8312         (pascal-mode-map): Use completion-at-point.
8313         (pascal-toggle-completions): Make obsolete.
8314         (pascal-complete-word, pascal-show-completions):
8315         * progmodes/octave-mod.el (octave-complete-symbol):
8316         Redefine as obsolete alias.
8317         * progmodes/octave-inf.el (inferior-octave-completion-at-point):
8318         Signal absence of completion info for old Octave,
8319         (inferior-octave-complete): Redefine as obsolete alias.
8320         * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
8321         (meta-completions-at-point): Rename from meta-complete-symbol and
8322         adapt it for use on completion-at-point-functions.
8323         (meta-common-mode): Use it.
8324         (meta-looking-at-backward, meta-match-buffer): Remove.
8325         (meta-complete-symbol): Redefine as obsolete alias.
8326         (meta-common-mode-map): Use completion-at-point.
8327         * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
8328         (makefile-mode-map): Use completion-at-point.
8329         (makefile-completions-at-point): Rename from makefile-complete and
8330         adapt it for use on completion-at-point-functions.
8331         (makefile-mode): Use it.
8332         (makefile-complete): Redefine as obsolete alias.
8334 2011-06-20  Deniz Dogan  <deniz@dogan.se>
8336         * net/rcirc.el: Delete trailing whitespaces once and for all.
8338 2011-06-20  Daniel Colascione  <dan.colascione@gmail.com>
8340         * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
8342 2011-06-19  Chong Yidong  <cyd@stupidchicken.com>
8344         * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
8346         * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
8348 2011-06-19  Martin Rudalics  <rudalics@gmx.at>
8350         * window.el (display-buffer-other-window-means-other-frame):
8351         Call display-buffer-normalize-alist.
8352         (display-buffer-normalize-specifiers-1): Rename to
8353         display-buffer-normalize-argument.  New argument other-frame.
8354         Rewrite.
8355         (display-buffer-normalize-specifiers-2): Rename to
8356         display-buffer-normalize-options.
8357         (display-buffer-normalize-alist-1): New function.
8358         (display-buffer-normalize-specifiers-3): Rename to
8359         display-buffer-normalize-alist.
8360         Call display-buffer-normalize-alist-1.
8361         (display-buffer-normalize-options-inhibit): New variable.
8362         (display-buffer-normalize-specifiers): Rewrite calling
8363         display-buffer-normalize-alist,
8364         display-buffer-normalize-argument, and
8365         display-buffer-normalize-options.  Don't call the latter if
8366         display-buffer-normalize-options-inhibit is non-nil.
8367         (frame-auto-delete): New option.
8368         (window-deletable-p): Use frame-auto-delete.
8369         (window-list-no-nils, window-state-ignored-parameters)
8370         (window-state-get-1, window-state-get, window-state-put-list)
8371         (window-state-put-1, window-state-put-2, window-state-put):
8372         New functions.
8373         (display-buffer-normalize-options): Move special-display-p group
8374         after pop-up-frame group (Bug#8851) and (Bug#8856).
8376 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
8378         * emacs-lisp/rx.el (rx-constituents): Add support for numbered
8379         groups (Bug#8776).
8380         (rx-submatch-n): New function.
8381         (rx): Document it.
8383         * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
8384         (Bug#8768).
8386         * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
8388         * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
8390         * cus-face.el (custom-declare-face): Call custom-theme-recalc face
8391         anytime existing face settings are present (Bug#8889).
8393         * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
8394         (delphi-mode): Use define-derived-mode to inherit from prog-mode.
8395         Remove unused argument.
8397 2011-06-18  Martin Rudalics  <rudalics@gmx.at>
8399         * window.el (display-buffer-default-specifiers):
8400         Remove pop-up-frame.  Add pop-up-window-min-height,
8401         pop-up-window-min-width, and another reuse-window specifier
8402         (Bug#8882).  Reported by Dan Nicolaescu <dann@gnu.org>.
8403         (display-buffer-normalize-specifiers-2):
8404         Handle split-height-threshold and split-width-threshold also when
8405         pop-up-windows is unset.  Add a reuse-window specifier for the
8406         case popping up a new window fails.
8407         (special-display-popup-frame): Remove double quoting.
8408         (display-buffer-normalize-specifiers-1): Fix thinko.
8410 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8412         * shell.el (shell-completion-vars): Set pcomplete-termination-string
8413         according to comint-completion-addsuffix.
8415         * pcomplete.el: Convert to lexical binding and fix bug#8819.
8416         (pcomplete-suffix-list): Mark as obsolete.
8417         (pcomplete-completions-at-point): Capture pcomplete-norm-func and
8418         pcomplete-seen in the closure.
8419         (pcomplete-comint-setup): Setup completion-at-point as well.
8420         (pcomplete--entries): New function.
8421         (pcomplete--env-regexp): New var.
8422         (pcomplete-entries): Rewrite to work with partial-completion and
8423         without relying on pcomplete-suffix-list.
8424         (pcomplete-pare-list): Remove, unused.
8426 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
8428         * window.el (display-buffer-alist): Set pop-up-window-min-height
8429         and pop-up-window-min-width in default value.  Reported by
8430         Thierry Volpiatto <thierry.volpiatto@gmail.com>.  New specifier
8431         other-window-means-other-frame.
8432         (display-buffer-macro-specifiers): Comment out entry for
8433         other-window specifier.
8434         (display-buffer-other-window-means-other-frame): New function.
8435         (display-buffer-normalize-specifiers-1): New arguments
8436         buffer-name and label.  Treat other-window case specially.
8437         (display-buffer-normalize-specifiers-2): Treat other-window case
8438         specially.
8439         (display-buffer-normalize-specifiers-3): New function.
8440         (display-buffer-normalize-specifiers):
8441         Call display-buffer-normalize-specifiers-3.
8443 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
8445         * window.el (same-window-p): Fix two typos introduced when
8446         adding with-no-warnings.
8447         (display-buffer-normalize-specifiers-1): Don't check
8448         pop-up-frames for 'unset initialization.
8449         (display-buffer-normalize-specifiers-2): Major rewrite using
8450         special-display-p and same-window-p (Bug#8851) and (Bug#8856).
8451         (pop-up-frames, display-buffer-reuse-frames)
8452         (display-buffer-mark-dedicated): Don't initialize to 'unset.
8453         Suggested by David Engster <deng@randomsample.de>.
8454         (even-window-heights): Initialize to 'unset.
8455         (display-buffer-alist-set): Handle new 'unset initializations.
8456         (display-buffer-macro-specifiers): Don't pop up a new frame in the
8457         other window case.
8459 2011-06-16  Martin Rudalics  <rudalics@gmx.at>
8461         * window.el (display-buffer-normalize-specifiers-1):
8462         Respect current value of pop-up-frames for most reasonable values of
8463         second argument of display-buffer (Bug#8865).
8464         (switch-to-buffer-same-frame, switch-to-buffer-other-window)
8465         (switch-to-buffer-other-window-same-frame)
8466         (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
8467         Adams (Bug#8875).
8468         (display-buffer): Don't check noninteractive when calling
8469         display-buffer-pop-up-frame.
8470         (display-buffer-pop-up-frame): Never pop up a frame in
8471         noninteractive mode (Bug#8857).
8472         (enlarge-window, shrink-window): Don't report an error when the
8473         window can't be resized as requested (Bug#8862).
8475 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8477         * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
8479         * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
8481         * abbrev.el (define-abbrev-table): Don't add a table multiple times.
8483 2011-06-15  Alan Mackenzie  <acm@muc.de>
8485         * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
8486         for declarators, disable knr checking to speed up for normal files.
8487         2: Refactor, replacing a sequence of nested if forms by a cond form.
8489 2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8491         * net/network-stream.el (open-network-stream): Add the keyword
8492         :always-query-capabilities for the case where you want to force a
8493         `plain' network connection, but the protocol still requires the
8494         capabilitiy command (i.e., SMTP and EHLO).
8496         * subr.el (process-live-p): Rename from `process-alive-p' for
8497         consistency with other `-live-p' functions.
8499 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8501         * window.el (same-window-buffer-names, same-window-regexps)
8502         (special-display-frame-alist, special-display-popup-frame)
8503         (special-display-function, special-display-buffer-names)
8504         (special-display-regexps, pop-up-frame-alist)
8505         (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
8506         (pop-up-windows, split-window-preferred-function)
8507         (split-height-threshold, split-width-threshold, even-window-heights)
8508         (display-buffer-mark-dedicated): Don't encourage the use of
8509         display-buffer-alist from Elisp code.
8511 2011-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
8513         * progmodes/python.el (python-mode): Derive from prog-mode.
8514         * progmodes/ps-mode.el (ps-mode):
8515         * progmodes/mixal-mode.el (mixal-mode):
8516         * progmodes/cfengine.el (cfengine-mode):
8517         * progmodes/ld-script.el (ld-script-mode): Likewise.
8519 2011-06-15  Martin Rudalics  <rudalics@gmx.at>
8521         * window.el (display-buffer-alist): Trim default value to avoid
8522         popping up a new frame (Bug#8857) or reusing an arbitrary window
8523         on another frame.
8524         (display-buffer): Do not fall back on popping up a new frame in
8525         batch mode (Bug#8857).
8527 2011-06-14  Chong Yidong  <cyd@stupidchicken.com>
8529         * cus-theme.el (describe-theme-1): Use custom-theme-p.
8530         (custom-theme-summary): New function.
8531         (customize-themes): Use it.
8533 2011-06-13  Glenn Morris  <rgm@gnu.org>
8535         * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
8537 2011-06-13  Martin Rudalics  <rudalics@gmx.at>
8539         * help.el (help-window): Remove variable.
8540         (help-window-point-marker, temp-buffer-max-height)
8541         (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
8542         (help-print-return-message): Don't set help-window.
8543         (resize-temp-buffer-window): Rewrite cod eand doc-string.
8544         (help-window-setup-finish): Remove.
8545         (help-window-display-message, help-window-setup)
8546         (with-help-window): Major rewrite based on new
8547         display-buffer-window variable.
8549         * help-mode.el (help-mode-finish): Remove help-window related
8550         code.
8552         * view.el (view-exits-all-viewing-windows): Remove reference to
8553         view-return-to-alist in doc-string.
8554         (view-return-to-alist): Make obsolete.
8555         (view-buffer): Call pop-to-buffer-same-window and remove
8556         undo-window code.
8557         (view-buffer-other-window): Call pop-to-buffer-other-window and
8558         simplify code.  Ignore second argument.
8559         (view-buffer-other-frame): Call pop-to-buffer-other-frame and
8560         simplify code.  Ignore second argument.
8561         (view-return-to-alist-update): Make obsolete.
8562         (view-mode-enter): Rename second argument to QUIT-RESTORE.
8563         Rewrite using quit-restore window parameters.
8564         (view-mode-exit): Rename second argument to EXIT-ONLY.
8565         Rewrite using quit-restore-window.
8566         (View-exit, View-exit-and-edit, View-leave, View-quit)
8567         (View-quit-all, View-kill-and-leave): Call view-mode-exit with
8568         appropriate arguments.
8569         (view-end-message): Use quit-restore window parameter.
8571         * window.el (display-buffer-function): Rewrite doc-string.
8572         (display-buffer-window, display-buffer-alist): New variables.
8573         (display-buffer-split-specifiers)
8574         (display-buffer-side-specifiers)
8575         (display-buffer-macro-specifiers): New constants.
8576         (display-buffer-even-window-sizes, display-buffer-set-height)
8577         (display-buffer-set-width, display-buffer-select-window)
8578         (display-buffer-in-window, display-buffer-reuse-window)
8579         (display-buffer-split-window-1, display-buffer-split-window)
8580         (display-buffer-split-atom-window, display-buffer-pop-up-window)
8581         (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
8582         (display-buffer-in-side-window, normalize-buffer-to-display)
8583         (display-buffer-normalize-specifiers-1)
8584         (display-buffer-normalize-specifiers-2)
8585         (display-buffer-normalize-specifiers, display-buffer-frame):
8586         New functions.
8587         (display-buffer): Major rewrite.
8588         (display-buffer-other-window, display-buffer-other-frame)
8589         (pop-to-buffer, switch-to-buffer-other-window)
8590         (switch-to-buffer-other-frame): Rewrite.
8591         (display-buffer-same-window, display-buffer-same-frame)
8592         (display-buffer-same-frame-other-window)
8593         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
8594         (pop-to-buffer-other-window)
8595         (pop-to-buffer-same-frame-other-window)
8596         (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
8597         (switch-to-buffer-other-window-same-frame): New functions.
8598         (same-window-p, special-display-p): Rewrite disabling warnings.
8599         Make obsolete.
8600         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
8601         (display-buffer-mark-dedicated): Initialize to symbol 'unset.
8602         Make obsolete
8603         (same-window-buffer-names, same-window-regexps)
8604         (special-display-frame-alist, special-display-popup-frame)
8605         (special-display-function, special-display-buffer-names)
8606         (special-display-regexps, pop-up-frame-alist)
8607         (pop-up-frame-function, split-window-preferred-function)
8608         (split-height-threshold, split-width-threshold)
8609         (even-window-heights): Make obsolete.
8611 2011-06-12  Glenn Morris  <rgm@gnu.org>
8613         * term/xterm.el (terminal-init-xterm): `version' may be nil.  (Bug#8838)
8614         Misc simplifications.
8616 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
8618         * window.el (window-safely-shrinkable-p): Restore function which
8619         was inadvertently removed in change from 2011-06-11.  Declare as
8620         obsolete.
8622         * calendar/calendar.el (calendar-generate-window):
8623         Use window-iso-combined-p instead of combination of one-window-p and
8624         window-safely-shrinkable-p.
8626 2011-06-12  Glenn Morris  <rgm@gnu.org>
8628         * progmodes/fortran.el (fortran-mode-syntax-table):
8629         * progmodes/f90.el (f90-mode-syntax-table):
8630         Set % to punctuation.  (Bug#8820)
8631         (f90-find-tag-default): Remove, no longer needed.
8633 2011-06-12  Daniel Colascione  <dan.colascione@gmail.com>
8635         * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
8637 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
8639         * image.el (image-animated-p): Return animation delay in seconds.
8640         Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
8641         (image-animate-timeout): Remove DELAY argument.  Don't assume
8642         every subimage has the same delay; get it from image-animated-p.
8643         (image-animate): Caller changed.
8645 2011-06-11  Michael Albinus  <michael.albinus@gmx.de>
8647         * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
8648         to ignored backtrace functions.
8650 2011-06-11  Glenn Morris  <rgm@gnu.org>
8652         * calendar/appt.el (appt-disp-window-function): Doc fix.
8653         (appt-check): Handle overlapping appointments.  (Bug#8337)
8655 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
8657         * window.el (window-tree-1, window-tree): New functions, moving
8658         the latter to window.el.
8659         (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
8660         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
8661         (bw-refresh-edges): Remove.
8662         (balance-windows-1, balance-windows-2): New functions.
8663         (balance-windows): Rewrite in terms of window tree functions,
8664         balance-windows-1 and balance-windows-2.
8665         (bw-adjust-window): Remove.
8666         (balance-windows-area-adjust): New function with functionality of
8667         bw-adjust-window but using resize-window.
8668         (set-window-text-height): Rewrite doc-string.
8669         Use normalize-live-window and resize-window.
8670         (enlarge-window-horizontally, shrink-window-horizontally):
8671         Rename argument to DELTA.
8672         (window-buffer-height): New function.
8673         (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
8674         Rewrite using new window resize routines.
8675         (kill-buffer-and-window, mouse-autoselect-window-select):
8676         Use ignore-errors instead of condition-case.
8677         (quit-window): Call delete-frame instead of delete-windows-on
8678         for the only buffer on frame.
8680 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
8682         * loadup.el (top-level): Load window before files for the sake
8683         of replace-buffer-in-windows.
8685         * files.el (read-buffer-to-switch)
8686         (switch-to-buffer-other-window)
8687         (switch-to-buffer-other-frame, display-buffer-other-frame):
8688         Move to window.el.
8690         * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
8691         (previous-buffer): Move to window.el.
8693         * bindings.el (unbury-buffer): Move to window.el.
8695         * window.el (delete-other-windows-vertically): Move after
8696         definition of delete-other-windows.
8697         (other-window, delete-windows-on, replace-buffer-in-windows):
8698         Move here from window.c.
8699         (record-window-buffer, unrecord-window-buffer)
8700         (set-window-buffer-start-and-point, switch-to-prev-buffer)
8701         (switch-to-next-buffer): New functions.
8702         (get-next-valid-buffer, last-buffer, next-buffer): Move here
8703         from simple.el.  Call switch-to-next-buffer.
8704         (previous-buffer): Move here from simple.el.
8705         Call switch-to-prev-buffer.
8706         (bury-buffer): Move here from buffer.c.  Switch to previous
8707         buffer when window cannot be deleted.
8708         (unbury-buffer): Move here from bindings.el.
8709         (ctl-x-map): Move binding for other-window from window.c to
8710         here.
8711         (read-buffer-to-switch, switch-to-buffer-other-window)
8712         (switch-to-buffer-other-frame): Move here from files.el.
8713         (normalize-buffer-to-switch-to): New functions.
8714         (switch-to-buffer): Move here from buffer.c.
8715         Use read-buffer-to-switch and normalize-buffer-to-switch-to.
8717 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
8719         * window.el (window-min-height, window-min-width): Move here
8720         from window.c.  Add defcustoms and rewrite doc-strings.
8721         (resize-mini-window, resize-window): New functions.
8722         (adjust-window-trailing-edge, enlarge-window, shrink-window):
8723         Move here from window.c.
8724         (maximize-window, minimize-window): New functions.
8725         (delete-window, delete-other-windows, split-window): Move here
8726         from window.c.
8727         (window-split-min-size): New function.
8728         (split-window-keep-point): Mention split-window-above-each-other
8729         instead of split-window-vertically.
8730         (split-window-above-each-other, split-window-vertically):
8731         Rename split-window-vertically to split-window-above-each-other
8732         and provide defalias for old definition.
8733         (split-window-side-by-side, split-window-horizontally):
8734         Rename split-window-horizontally to split-window-side-by-side
8735         and provide defalias for the old definition.
8736         (ctl-x-map): Move bindings for delete-window,
8737         delete-other-windows and enlarge-window here from window.c.
8738         Replace bindings for split-window-vertically and
8739         split-window-horizontally by bindings for
8740         split-window-above-each-other and split-window-side-by-side.
8742         * cus-start.el (all): Remove entries for window-min-height and
8743         window-min-width.  Add entries for window-splits and
8744         window-nest.
8746 2011-06-09  Glenn Morris  <rgm@gnu.org>
8748         * calendar/appt.el (appt-mode-line): New function.
8749         (appt-check, appt-disp-window): Use it.
8751         * files.el (hack-one-local-variable-eval-safep):
8752         Allow minor-modes with explicit +/-1 arguments.
8754 2011-06-09  Teodor Zlatanov  <tzz@lifelogs.com>
8756         * term/xterm.el (xterm): Add defgroup.
8757         (xterm-extra-capabilities): Add defcustom to supply known xterm
8758         capabilities, skip querying them, or query them (default).
8759         (terminal-init-xterm): Use it.
8760         (terminal-init-xterm-modify-other-keys): New function to set up
8761         modifyOtherKeys support to simplify `terminal-init-xterm'.
8763 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
8765         * window.el (resize-window-reset, resize-window-reset-1)
8766         (resize-subwindows-skip-p, resize-subwindows-normal)
8767         (resize-subwindows, resize-other-windows, resize-this-window)
8768         (resize-root-window, resize-root-window-vertically)
8769         (window-deletable-p, window-or-subwindow-p)
8770         (frame-root-window-p): New functions.
8772 2011-06-09  Glenn Morris  <rgm@gnu.org>
8774         * net/ange-ftp.el (ange-ftp-switches-ok): New function.
8775         (ange-ftp-get-files): Use it.
8777 2011-06-09  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
8779         * mail/sendmail.el (mail-recover-1, mail-recover):
8780         * files.el (recover-file, recover-session):
8781         Handle dired-listing-switches not being just a single short option.
8783 2011-06-09  Glenn Morris  <rgm@gnu.org>
8785         * calendar/appt.el (appt-display-message, appt-disp-window):
8786         Handle lists of appointments.
8788 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
8790         * window.el (one-window-p): Move down in code.
8791         Rewrite doc-string.
8792         (window-current-scroll-bars): Rewrite doc-string.
8793         Normalize live window argument.
8794         (walk-windows, get-window-with-predicate, count-windows):
8795         Rewrite doc-string.  Use window-list-1.
8796         (window-in-direction-2, window-in-direction, get-mru-window):
8797         New functions.
8799 2011-06-08  Reuben Thomas  <rrt@sc3d.org>
8801         * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
8802         Doc fix (Bug#8713).
8804 2011-06-08  Chong Yidong  <cyd@stupidchicken.com>
8806         * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
8808 2011-06-08  Juanma Barranquero  <lekktu@gmail.com>
8810         * loadhist.el (unload-feature-special-hooks):
8811         Add `comint-output-filter-functions'.
8813 2011-06-08  Ivan Kanis  <gnu@kanis.fr>
8815         * calendar/appt.el (appt-check): Move some initializations into the let.
8817 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
8819         * window.el (window-height): Defalias to window-total-height.
8820         (window-width): Defalias to window-body-width.
8822 2011-06-07  Chong Yidong  <cyd@stupidchicken.com>
8824         * image-mode.el (image-toggle-animation): New command.
8825         (image-mode-map): Bind it to RET.
8826         (image-mode): Update message.
8827         (image-toggle-display-image): Avoid a spurious cache flush.
8828         (image-transform-rotation): Doc fix.
8829         (image-transform-properties): Return quickly in the normal case.
8830         (image-animate-loop): Rename from image-animate-max-time.
8832         * image.el (image-animate-max-time): Move to image-mode.el.
8833         (create-animated-image): Remove unnecessary function.
8834         (image-animate): Rename from image-animate-start.  New arg.
8835         (image-animate-stop): Remove; just use image-animate-timer.
8836         (image-animate-timer): Use car-safe.
8837         (image-animate-timeout): Rename argument.
8839 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
8841         * window.el (get-lru-window, get-largest-window): Move here from
8842         window.c.  Rename first argument to ALL-FRAMES.
8843         Rephrase doc-strings.
8844         (get-buffer-window-list): Rewrite using window-list-1.
8845         Rephrase doc-string.
8846         (window-safe-min-height, window-safe-min-width): New constants.
8847         (window-size-ignore, window-min-size, window-min-size-1)
8848         (window-sizable, window-sizable-p, window-size-fixed-1)
8849         (window-size-fixed-p, window-min-delta-1, window-min-delta)
8850         (window-max-delta-1, window-max-delta, window-resizable)
8851         (window-resizable-p, window-total-height, window-total-width)
8852         (window-body-width): New functions.
8853         (window-full-height-p, window-full-width-p): Rewrite using
8854         window-total-size.
8855         (window-body-height): Rewrite using window-body-size.
8857 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
8859         * window.el (window-right, window-left, window-child)
8860         (window-child-count, window-last-child, window-any-p)
8861         (normalize-live-buffer, normalize-live-frame)
8862         (normalize-any-window, normalize-live-window)
8863         (window-iso-combination-p, window-iso-combined-p)
8864         (window-iso-combinations)
8865         (walk-window-tree-1, walk-window-tree, walk-window-subtree)
8866         (windows-with-parameter, window-with-parameter)
8867         (window-atom-root, make-window-atom, window-atom-check-1)
8868         (window-atom-check, window-side-check, window-check):
8869         New functions.
8870         (ignore-window-parameters, window-sides, window-sides-vertical)
8871         (window-sides-slots): New variables.
8872         (window-size-fixed): Move down in code.  Minor doc-string fix.
8874 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
8876         * comint.el (comint-dynamic-complete-as-filename)
8877         (comint-dynamic-complete-filename): Correctly call
8878         completion-in-region.
8880 2011-06-05  Deniz Dogan  <deniz@dogan.se>
8882         * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
8883         in last change.
8885 2011-06-05  Deniz Dogan  <deniz@dogan.se>
8887         * net/rcirc.el (rcirc-prompt-for-encryption): New function.
8888         (rcirc): Use it to prompt for encryption.
8890 2011-06-05  Roland Winkler  <winkler@gnu.org>
8892         * textmodes/bibtex.el (bibtex-search-buffer): New variable.
8893         (bibtex-search-entries): New command bound to C-c C-a.
8894         (bibtex-display-entries): New function.
8896 2011-06-05  Roland Winkler  <winkler@gnu.org>
8898         * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
8899         (bibtex-insert-kill): After yanking insert newline if necessary.
8900         (bibtex-initialize): Call bibtex-string-files-init only once.
8901         (bibtex-mode): Do not call easy-menu-add.
8902         (bibtex-validate-globally): Use save-excursion in bibtex buffers.
8903         (bibtex-yank): Set arg properly if nil.
8905 2011-06-05  Roland Winkler  <winkler@gnu.org>
8907         * textmodes/bibtex.el (bibtex-search-entry-globally):
8908         New variable.
8909         (bibtex-search-entry): Use it.
8911 2011-06-05  Roland Winkler  <winkler@gnu.org>
8913         * textmodes/bibtex.el (bibtex-entry-format): New option
8914         sort-fields.
8915         (bibtex-format-entry, bibtex-reformat): Honor this option.
8916         (bibtex-parse-entry): Return fields in proper order.
8918 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
8920         * doc-view.el (doc-view-remove-if): Move computation of result out
8921         of `dolist' to silence misleading lexical-binding warning.
8923 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
8925         * emacs-lisp/timer.el (timer-activate): Remove unused arg.
8926         (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
8928 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
8930         * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
8931         "SunOS 5.10".
8933 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
8935         * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
8936         (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
8937         (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
8938         (tramp-parse-putty):
8939         * net/tramp-sh.el (tramp-completion-function-alist-rsh)
8940         (tramp-completion-function-alist-ssh)
8941         (tramp-completion-function-alist-telnet)
8942         (tramp-completion-function-alist-su)
8943         (tramp-completion-function-alist-putty): Set `tramp-autoload'
8944         cookie.
8946         * net/tramp-ftp.el:
8947         * net/tramp-sh.el:
8948         * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
8949         load "tramp.el" `tramp-set-completion-function'.
8951 2011-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8953         * shell.el: Require and use pcomplete.
8954         (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
8955         (shell-completion-vars): Set pcomplete-default-completion-function.
8957 2011-06-04  Deniz Dogan  <deniz@dogan.se>
8959         * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
8960         `memq' (Bug#8799).
8962 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8964         * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
8966 2011-06-02  Juanma Barranquero  <lekktu@gmail.com>
8968         * bs.el (bs--mark-unmark, bs--nth-wrapper):
8969         * mpc.el (mpc-select-extend, mpc-songpointer-context):
8970         * vc/log-view.el (log-view-beginning-of-defun):
8971         * vc/smerge-mode.el (smerge-apply-resolution-patch)
8972         (smerge-refine-forward, smerge-refine-chopup-region):
8973         Silence warning for unused `dotimes' counter variables.
8975 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8977         * net/tramp.el (tramp-with-progress-reporter): Rename from
8978         with-progress-reporter.  Use `declare'.
8979         * net/tramp-smb.el:
8980         * net/tramp-sh.el:
8981         * net/tramp-gvfs.el: Update all uses.
8983 2011-06-02  Jay Belanger  <jay.p.belanger@gmail.com>
8985         * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
8986         buffer isn't killed before making it current.
8988 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8990         Silence various byte-compiler warnings.
8991         * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
8992         `access-type' and new obsolescence format.
8993         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
8994         new format.
8995         (byte-compile-check-variable): New `access-type' argument.
8996         Only warn if the access-type is obsolete.
8997         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
8998         (byte-compile-variable-set): Adjust callers.
8999         * help-fns.el (describe-variable): Adjust to new obsolescence format.
9000         * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
9001         setting it as obsolete.
9002         * simple.el (minibuffer-completing-symbol):
9003         * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
9004         access as obsolete.
9005         * minibuffer.el (minibuffer-completing-file-name): Don't make it
9006         obsolete yet.
9007         * international/quail.el (quail-mouse-choose-completion): Remove unused
9008         code referring to obsolete var.
9009         (quail-choose-completion-string): Remove.
9010         * server.el (server-clients-with, server-kill-buffer-query-function)
9011         (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
9012         * proced.el (proced-send-signal):
9013         * emacs-lisp/lisp.el (lisp-complete-symbol):
9014         Replace completion-annotate-function with completion-extra-properties.
9016 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9018         * simple.el (goto-line): Use read-number.
9019         (overriding-map-is-bound): Remove.
9020         (saved-overriding-map): Change default.
9021         (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
9022         Take the map as argument.
9023         (universal-argument, negative-argument, digit-argument): Use it.
9024         (restore-overriding-map): Adjust.
9025         (do-auto-fill): Use fill-forward-paragraph.
9026         (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
9028         * minibuffer.el (minibuffer-inactive-mode-map): New var.
9029         (minibuffer-inactive-mode): New major mode.
9030         * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
9031         the *Messages* buffer" hack.
9032         (mouse-popup-menubar): Don't burp if the event is a normal key.
9034         Miscellaneous tweaks.
9035         * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
9036         lexical scoping as in subr.el's dolist and dotimes.
9037         * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
9038         Silence compiler warning.
9039         * thingatpt.el (forward-whitespace): Trivial coding style fix.
9040         * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
9041         * international/ccl.el (ccl-compile): Trivial simplification.
9042         * help-fns.el (help-do-arg-highlight): Silence compiler warning.
9043         * emacs-lisp/testcover.el (testcover-end): Remove spurious
9044         `printflag' argument.
9045         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
9046         Purecopy the whole obsolescence data.
9048 2011-06-01  Leo Liu  <sdl.web@gmail.com>
9050         * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
9051         improve doc-string as suggested by Marco Pessotto
9052         <melmothx@gmail.com>.
9053         (rcirc-print): Fix last change.
9055 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
9057         * minibuffer.el (complete-with-action): Return nil for the metadata and
9058         boundaries of non-functional tables.
9059         (completion-table-dynamic): Return nil for the metadata.
9060         (completion-table-with-terminator): Add default case, using
9061         complete-with-action.
9062         (completion--metadata): New function.
9063         (completion-all-sorted-completions, minibuffer-completion-help): Use it
9064         to try and avoid pathological performance problems.
9065         (completion--embedded-envvar-table): Return `category' metadata.
9067 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9069         * subr.el (process-alive-p): New tiny convenience function.
9071 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
9073         * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
9074         content but also its previous major mode.
9076 2011-05-31  Helmut Eller  <eller.helmut@gmail.com>
9078         * emacs-lisp/debug.el (debug): Restore the previous content of the
9079         *Backtrace* buffer when we exit with C-M-c.
9081 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
9083         * minibuffer.el: Add metadata method to completion tables.
9084         (completion-category-overrides): New defcustom.
9085         (completion-metadata, completion--field-metadata)
9086         (completion-metadata-get, completion--styles)
9087         (completion--cycle-threshold): New functions.
9088         (completion-try-completion, completion-all-completions):
9089         Add `metadata' argument to choose completion-styles.
9090         (completion--do-completion): Use metadata to choose cycling.
9091         (completion-all-sorted-completions): Use metadata for sorting.
9092         Remove :completion-cycle-penalty which is not needed any more.
9093         (completion--try-word-completion): Add `metadata' argument.
9094         (minibuffer-completion-help): Check metadata for annotation function
9095         and sorting.
9096         (completion-file-name-table): Return `category' metadata.
9097         (minibuffer-completing-file-name): Make obsolete.
9098         * simple.el (minibuffer-completing-symbol): Make obsolete.
9099         * icomplete.el (icomplete-completions): Pass new `metadata' param to
9100         completion-try-completion.
9102 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9104         * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
9106 2011-05-30  Leo Liu  <sdl.web@gmail.com>
9108         * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
9109         (rcirc-print): Decode all incoming messages (bug#8744).
9110         (rcirc-decode-coding-system): Allow value nil for automatic coding
9111         system detection.
9113 2011-06-01  Glenn Morris  <rgm@gnu.org>
9115         * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
9117 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
9119         * image.el (image-animate-max-time): Allow nil and t values.
9120         Default to nil.
9121         (create-animated-image): Doc fix.
9122         (image-animate-start): Remove second arg; just use
9123         image-animate-max-time.
9124         (image-animate-timeout): Doc fix.  Args changed.
9126         * image-mode.el (image-toggle-display-image): Ensure that the
9127         image spec passed to the animate timer is the same object as in
9128         the buffer's display property (Bug#6981).
9129         (image-transform-properties): Doc fix.
9131         * image.el (image-animate-max-time): Default to nil.
9133 2011-05-29  Martin Rudalics  <rudalics@gmx.at>
9135         * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
9136         entire buffer list (Bug#8184).
9138 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
9140         * image.el (imagemagick-types-inhibit)
9141         (imagemagick-register-types): Doc fix.
9143 2011-05-29  Deniz Dogan  <deniz@dogan.se>
9145         * net/rcirc.el (rcirc): Use the user's stored encryption method by
9146         default.
9148 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
9150         * select.el: Don't perform clipboard-manager saving in hooks;
9151         leave the hooks empty.
9153 2011-05-28  Leo Liu  <sdl.web@gmail.com>
9155         * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
9156         (occur-mode-map): Bind occur-edit-mode.  Use occur-menu-map.
9157         (occur-edit-mode): New major mode (Bug#8463).
9158         (occur-after-change-function): New function.
9159         (occur-engine): Give Occur tags a read-only property.
9161 2011-05-28  Kevin Ryde  <user42@zip.com.au>
9163         * subr.el (def-edebug-spec): Doc fix (Bug#8430).
9165 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
9167         * bindings.el (help-echo): Make the initial non-indicator dash
9168         empty on graphical terminals (Bug#7295).
9170         * files.el (auto-mode-alist): Move config rule after the
9171         in-stripping one (Bug#8547).
9173         * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
9175         * startup.el (normal-splash-screen): Remove gratuitous mode-line
9176         setting (Bug#8740).
9178 2011-05-28  Alp Aker  <aker@pitt.edu>  (tiny change)
9180         * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
9181         (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
9182         (Bug#8539).
9184 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
9186         * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
9188 2011-05-28  Dima Kogan  <dkogan@cds.caltech.edu>  (tiny change)
9190         * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
9191         (hs-hide-block-at-point, hs-find-block-beginning)
9192         (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
9193         (Bug#8279).
9195 2011-05-28  Glenn Morris  <rgm@gnu.org>
9197         * startup.el (fancy-about-screen): Use standard mode line.  (Bug#8740)
9199 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
9201         * help-fns.el (describe-function-1): If the function is a derived
9202         major mode, print the parent mode.
9204         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
9205         (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
9207 2011-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9209         * minibuffer.el (completion--capf-wrapper): Check applicability before
9210         returning non-nil for non-exclusive completion data.
9211         * progmodes/etags.el (tags-completion-at-point-function):
9212         * info-look.el (info-lookup-completions-at-point): Mark as
9213         non-exclusive.
9214         (info-complete): Adjust accordingly.
9216         * info-look.el: Convert to lexical-binding and completion-at-point.
9217         (info-lookup-completions-at-point): New function.
9218         (info-complete): Use it and completion-in-region.
9220 2011-05-28  Drew Adams  <drew.adams@oracle.com>
9222         * isearch.el: Let M-e start with point at the first mismatched char.
9223         (isearch-fail-pos): New function.
9224         (isearch-edit-string): Use it.
9226 2011-05-28  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
9228         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
9230 2011-05-27  Toby Cubitt  <toby-predictive@dr-qubit.org>
9232         * emacs-lisp/avl-tree.el: New avl-tree-stack datatype.  Add new
9233         traversal functions for avl-trees.
9234         (avl-tree--stack): New struct.
9235         (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
9236         (avl-tree-enter): Add optional `updatefun' arg.
9237         (avl-tree--do-enter): Add optional `updatefun' arg.
9238         Change return value.
9239         (avl-tree-delete): Add optional `test' and `nilflag' args.
9240         (avl-tree--do-delete): Add `test' and `nilflag' args.
9241         Change return value.
9242         (avl-tree-member): Add optional `nilflag'
9243         (avl-tree-member-p): New function.
9244         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
9245         (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
9246         (avl-tree-stack-empty-p): New functions.
9248         * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
9249         avl-tree--del-balance1 and make it work both ways.
9250         (avl-tree--del-balance2): Remove.
9251         (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
9252         make it work both ways.
9253         (avl-tree--enter-balance2): Remove.
9254         (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
9255         New macros.
9256         (avl-tree--mapc, avl-tree-map): Add direction argument.
9258 2011-05-27  David Michael  <fedora.dm0@gmail.com>  (tiny change)
9260         * files.el (interpreter-mode-alist): Add rbash (bug#8745).
9262 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
9264         * select.el: Support clipboard managers with built-in function
9265         x-clipboard-manager-save, via delete-frame-functions and
9266         kill-emacs-hook.
9267         (xselect-convert-to-targets): Add MULTIPLE target to list.
9268         (xselect-convert-to-save-targets): New function.
9270 2011-05-27  Kenichi Handa  <handa@m17n.org>
9272         * mail/sendmail.el (mail-encode-header): Avoid double encoding by
9273         let-binding rfc2047-encode-encoded-words to nil.
9275 2011-05-27  Glenn Morris  <rgm@gnu.org>
9277         * mail/emacsbug.el: Don't require url-util.
9279         * shell.el (shell-directory-tracker): Case matters.  (Bug#8735)
9281         * files.el (set-auto-mode):
9282         Also respect mode: entries at the end of the file.  (Bug#8586)
9284 2011-05-26  Glenn Morris  <rgm@gnu.org>
9286         * files.el (hack-local-variables-prop-line, hack-local-variables):
9287         Downcase mode names, as seems to be traditional.
9288         (hack-local-variables, hack-local-variables-apply): Doc fixes.
9290         * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
9291         (report-emacs-bug-hook): Try to validate the From address.  (Bug#8038)
9293 2011-05-25  Julien Danjou  <julien@danjou.info>
9295         * textmodes/rst.el (rst-define-level-faces): Do not define face
9296         symbol if it is already defined.
9298 2011-05-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
9300         * play/5x5.el (5x5-new-game, 5x5-randomize):
9301         Reset 5x5-solver-output to nil when a new grid is cast.
9302         (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
9303         these debugging traces, as defmacro breaks the compiled code.
9305 2011-05-24  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
9307         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
9309 2011-05-24  Leo Liu  <sdl.web@gmail.com>
9311         * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
9312         (vc-bzr-sha1): Adapt.
9314         * sha1.el: Remove.  Function `sha1' is now builtin.
9316         * bindings.el: Provide sha1 feature.
9318 2011-05-24  Kenichi Handa  <handa@m17n.org>
9320         * mail/sendmail.el: Require `rfc2047'.
9321         (mail-insert-from-field): Do not perform RFC2047 encoding.
9322         (mail-encode-header): New function.
9323         (sendmail-send-it): Set buffer-file-coding-system of the work
9324         buffer to the return value of select-message-coding-system.
9325         Call mail-encode-header.
9327         * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
9329 2011-05-24  Sean Neakums  <sneakums@zork.net>  (tiny change)
9331         * mail/supercite.el (sc-default-cite-frame):
9332         Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
9334 2011-05-24  Glenn Morris  <rgm@gnu.org>
9336         * progmodes/python.el (brm-menu): Declare.
9338         * emulation/viper.el (viper-set-hooks): Declare.
9340         * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
9341         (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
9342         (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
9343         (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
9344         (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
9345         (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
9347 2011-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9349         Add an :exit-function for completion-at-point.
9351         * minibuffer.el (completion--done): New fun.
9352         (completion--do-completion): Use it.  New arg `expect-exact'.
9353         (minibuffer-complete, minibuffer-complete-word): Don't output message,
9354         since completion--do-completion does it for us now.
9355         (minibuffer-force-complete): Use completion--done and
9356         completion--replace.  Handle sole-completion case with more care.
9357         (minibuffer-complete-and-exit): Use new `expect-exact' arg.
9358         (completion-extra-properties): New var.
9359         (completion-annotate-function): Make obsolete.
9360         (minibuffer-completion-help): Adjust accordingly.
9361         Use completion-list-insert-choice-function.
9362         (completion-at-point, completion-help-at-point):
9363         Bind completion-extra-properties.
9364         (completion-pcm-word-delimiters): Add | (for uniquify, for example).
9365         * simple.el (completion-list-insert-choice-function): New var.
9366         (completion-setup-function): Preserve it.
9367         (choose-completion): Pay attention to it, shuffle the code a bit.
9368         (choose-completion-string): New arg `insert-function'.
9370         * textmodes/bibtex.el: Convert to lexical binding.
9371         (bibtex-mode-map): Use completion-at-point.
9372         (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
9373         (bibtex-completion-at-point-function): New fun, from bibtex-complete.
9374         (bibtex-complete): Define as obsolete alias.
9375         (bibtex-complete-internal): Remove.
9376         (bibtex-format-entry): Remove unused sub-group in regexp.
9377         * shell.el (shell--command-completion-data)
9378         (shell-environment-variable-completion):
9379         * pcomplete.el (pcomplete-completions-at-point):
9380         * comint.el (comint--complete-file-name-data): Use :exit-function
9381         instead of completion-table-with-terminator so it also works for
9382         choose-completion.
9384 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9386         * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
9388         * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
9389         (bug#8710).
9391         * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
9393 2011-05-23  Ken Manheimer  <ken.manheimer@gmail.com>
9395         * allout.el (allout-inhibit-auto-fill-on-headline): Create new
9396         customization variable and implement: If non-nil, auto-fill will
9397         be inhibited while on topic's header line.
9399 2011-05-23  Vincent Belaïche  <vincentb1@users.sourceforge.net>
9401         * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
9402         click on.  II/ Make 5x5 multisession.  III/ Ensure that random grids
9403         always have a solution in grid size = 5 cases.
9404         (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
9405         (5x5-solver-output, 5x5-log-buffer): New vars.
9406         (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
9407         Make these variables buffer local to achieve 5x5 multi-session-ness.
9408         (5x5): Set 5x5-grid-size only if SIZE is non-negative.
9409         (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
9410         (5x5-solve-suggest): New funs.
9411         (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
9412         randomize a grid so that we ensure that there is always a solution.
9413         (5x5-make-random-grid): Allow other movement than flipping.
9415 2011-05-23  Kevin Ryde  <user42@zip.com.au>
9417         * emacs-lisp/advice.el (ad-read-advised-function):
9418         Use `function-called-at-point' as the default, if it has
9419         advice and passes PREDICATE.
9421 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9423         * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
9424         byte-compile-lambda if it's actually a lambda.
9426         * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
9427         Fix function quoting.  Use backquote better.
9429 2011-05-22  Yuanle Song  <sylecn@gmail.com>
9431         * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
9432         matching (Bug#8516).
9434 2011-01-22  Jari Aalto  <jari.aalto@cante.net>
9436         * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
9437         different face (Bug#8178).
9439 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
9441         * vc/diff-mode.el (diff-changed): Don't use terminal specs for
9442         defface (Bug#8144).
9444 2011-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9446         * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
9447         funcall as well (bug#8712).  Warn when performing those conversions.
9448         * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
9450         * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
9452 2011-05-22  Glenn Morris  <rgm@gnu.org>
9454         * files.el (hack-local-variables-prop-line): Small simplifications.
9455         (hack-local-variables, hack-local-variables-prop-line):
9456         If MODE-ONLY, return the mode, rather than just `t'.
9458 2011-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9460         * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
9462 2011-05-21  Glenn Morris  <rgm@gnu.org>
9464         * files.el (hack-local-variables-prop-line, hack-local-variables):
9465         If only interested in the mode, don't bother doing the other stuff.
9467         * image-mode.el (image-after-revert-hook):
9468         Redraw all frames on which the image is visible.  (Bug#8567)
9470         * dired-aux.el (dired-touch-initial): Just use current-time.  (Bug#6887)
9472         * wid-edit.el (widget-checklist-match-inline):
9473         Fix 2011-04-19 change.  (Bug#8649)
9475 2011-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9477         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
9478         Also allow singlespace after single-letter capitals followed by a dot.
9480         * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
9481         enabled.  Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
9483 2011-05-20  Nix  <nix@esperi.org.uk>
9485         * files.el (basic-save-buffer-2):
9486         Fix handling of break-hardlink-on-save with non-existent files.
9488 2011-05-19  Deniz Dogan  <deniz@dogan.se>
9490         * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9491         (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
9493 2011-05-19  Glenn Morris  <rgm@gnu.org>
9495         * progmodes/f90.el (f90-type-def-re):
9496         Handle "type, bind(c)".  (Bug#8691)
9498         * emacs-lisp/autoload.el (batch-update-autoloads):
9499         Set autoload-excludes by parsing loadup.el rather than Makefiles.
9501 2011-05-18  Michael Albinus  <michael.albinus@gmx.de>
9503         * net/tramp.el (tramp-process-actions): Set "first-password-request"
9504         property for the correct connection in case of multihops.
9506 2011-05-18  Glenn Morris  <rgm@gnu.org>
9508         * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
9509         * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
9511         Rationalize calendar handling of day and month abbrev-arrays.
9512         * calendar/calendar.el (calendar-customized-p): New function.
9513         (calendar-abbrev-construct, calendar-make-alist): Change what it does.
9514         (calendar-day-name-array, calendar-month-name-array): Doc fix.
9515         Add :set function.
9516         (calendar-abbrev-length, calendar-day-abbrev-array)
9517         (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
9518         (calendar-day-abbrev-array, calendar-month-abbrev-array):
9519         Elements may no longer be nil.
9520         (calendar-day-name, calendar-month-name):
9521         Update for changed nature of abbrev arrays.
9522         * calendar/diary-lib.el (diary-name-pattern):
9523         Update for changed nature of abbrev arrays.
9524         (diary-mark-entries-1): Update calendar-make-alist calls.
9525         (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
9526         * calendar/cal-html.el (cal-html-day-abbrev-array):
9527         Simply inherit from calendar-day-abbrev-array.
9529 2011-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9531         * progmodes/grep.el (grep-mode): Disable default
9532         compilation-directory-matcher setting (bug#8684).
9534 2011-05-17  Michael Albinus  <michael.albinus@gmx.de>
9536         * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
9537         instead of "head" and "tail".  There were problems with SunOS 5.9,
9538         and it performs better.
9540 2011-05-17  Glenn Morris  <rgm@gnu.org>
9542         * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
9544         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
9545         Replace obsolete function.
9547         * shell.el (pcomplete-parse-arguments-function): Declare.
9549         * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
9550         (appt-display-diary, appt-display-interval, appt-prev-comp-time)
9551         (appt-check): Doc fixes.
9552         (appt-disp-window-function, appt-delete-window-function):
9553         Remove needless special case in custom :type.
9554         (appt-display-count): Default to 0, not nil.
9555         (appt-check): Reset appt-display-count to 0, not nil.
9557 2011-05-17  Juanma Barranquero  <lekktu@gmail.com>
9559         * progmodes/python.el (python-font-lock-keywords):
9560         Add the Python 3.X keyword "nonlocal" (bug#8639).
9562 2011-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9564         * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
9566 2011-05-16  Kevin Ryde  <user42@zip.com.au>
9568         * info-look.el (makefile-automake-mode): New setups, looking in
9569         automake manual, then makefile-mode.
9570         (makefile-mode): Remove automake manual, have it just in
9571         makefile-automake-mode since there's various things different or
9572         not relevant to plain make.
9573         (makefile-mode): Remove "other-modes" non-existent automake-mode,
9574         believe a hypothetical automake-mode would go to makefile-mode,
9575         not the other way around.
9577 2011-05-15  Chong Yidong  <cyd@stupidchicken.com>
9579         * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
9580         hunk-end tags (Bug#8672).
9582         * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
9583         vc-annotate-show-diff-revision-at-line (Bug#8671).
9585 2011-05-14  Glenn Morris  <rgm@gnu.org>
9587         * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
9588         in the middle of an existing one with multiple authors.  (Bug#8645)
9589         (change-log-font-lock-keywords): Also handle multiple author lines
9590         with leading tabs.  (Bug#8644)
9592         * calendar/appt.el (appt-check): Rename some local variables.
9593         Some simplification/reordering.
9595         * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
9596         (feedmail-sendmail-f-doesnt-sell-me-out)
9597         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
9598         (feedmail-debug-sit-for, feedmail-queue-express-hook)
9599         (feedmail-queue-runner-message-sender): Set :version.
9600         (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
9601         (bbdb-dwim-net-address, vm-mail): Declare.
9602         (feedmail-binmail-gnulinuxish-template):
9603         Rename from feedmail-binmail-linuxish-template.
9604         (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
9605         Use insert-buffer-substring.
9607 2011-05-14  Bill Carpenter  <bill@carpenter.org>
9609         * mail/feedmail.el (feedmail-patch-level): Increase.
9610         (feedmail-debug): New custom group.
9611         (feedmail-confirm-outgoing-timeout)
9612         (feedmail-sendmail-f-doesnt-sell-me-out)
9613         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
9614         (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
9615         (feedmail-sender-line, feedmail-from-line)
9616         (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
9617         (feedmail-spray-this-address)
9618         (feedmail-spray-address-fiddle-plex-list)
9619         (feedmail-queue-use-send-time-for-date)
9620         (feedmail-queue-use-send-time-for-message-id)
9621         (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
9622         (feedmail-buffer-eating-function):
9623         Doc fixes.
9624         (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
9625         (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
9626         (feedmail-message-action-scroll-down): New functions.
9627         (feedmail-queue-directory, feedmail-queue-draft-directory):
9628         Use expand-file-name.
9629         (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
9630         Remove C-v help entry.
9631         (feedmail-queue-buffer-file-name): New variable.
9632         (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
9633         (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
9634         (feedmail-message-action-send-strong, feedmail-message-action-edit)
9635         (feedmail-message-action-draft, feedmail-message-action-draft-strong)
9636         (feedmail-message-action-queue, feedmail-message-action-queue-strong)
9637         (feedmail-message-action-toggle-spray)
9638         (feedmail-run-the-queue-no-prompts)
9639         (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
9640         (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
9641         (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
9642         (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
9643         (feedmail-envelope-deducer, feedmail-fiddle-from)
9644         (feedmail-fiddle-sender, feedmail-default-date-generator)
9645         (feedmail-fiddle-date, feedmail-fiddle-message-id)
9646         (feedmail-fiddle-spray-address)
9647         (feedmail-fiddle-list-of-spray-fiddle-plexes)
9648         (feedmail-fiddle-list-of-fiddle-plexes)
9649         (feedmail-fill-to-cc-function, feedmail-fill-this-one)
9650         (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
9651         (feedmail-queue-runner-message-sender, feedmail-binmail-template):
9652         Change default.  Doc fix.
9653         (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
9654         (feedmail-binmail-linuxish-template): New constant.
9655         (feedmail-buffer-to-sendmail): Doc fix.  Add debug call.
9656         Respect feedmail-sendmail-f-doesnt-sell-me-out.
9657         (feedmail-send-it): Add debug call.
9658         Use feedmail-queue-buffer-file-name, and
9659         feedmail-send-it-immediately-wrapper.
9660         (feedmail-message-action-send): Add debug call.
9661         Use feedmail-send-it-immediately-wrapper.
9662         (feedmail-queue-express-to-queue): Add debug call.
9663         Run feedmail-queue-express-hook.
9664         (feedmail-message-action-help): Add debug call.  Use feedmail-p-h-b-n.
9665         (feedmail-message-action-help-blat):
9666         Rename from feedmail-queue-send-edit-prompt-help-first.
9667         (feedmail-run-the-queue): Add debug call.  Set buffer-file-type.
9668         Check line-endings.  Handle errors better.
9669         (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
9670         Doc fix.  Add debug call.
9671         (feedmail-queue-send-edit-prompt): Doc fix.  Add debug call.
9672         Use feedmail-queue-send-edit-prompt-inner.
9673         (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
9674         (feedmail-queue-send-edit-prompt-inner): New function, extracted
9675         from feedmail-queue-send-edit-prompt.
9676         (feedmail-queue-send-edit-prompt-help)
9677         (feedmail-queue-send-edit-prompt-help-later): Remove functions.
9678         (feedmail-tidy-up-slug): Add debug call.
9679         Respect feedmail-queue-slug-suspect-regexp.
9680         (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
9681         (feedmail-dump-message-to-queue): Add debug call.
9682         Expand queue-directory.
9683         (feedmail-dump-message-to-queue): Change message slightly.
9684         Use feedmail-say-chatter.
9685         (feedmail-rfc822-date): Add debug call.  Bind system-time-locale.
9686         (feedmail-send-it-immediately-wrapper): New function.
9687         (feedmail-send-it-immediately): Add debug calls.  Use let not let*.
9688         Insert empty string rather than newline.  Handle full-frame case.
9689         Use catch/throw.  Use feedmail-say-chatter.
9690         (feedmail-fiddle-from): Try mail-host-address.
9691         (feedmail-default-message-id-generator): Doc fix.
9692         Bind system-time-locale.  Handle missing end.
9693         (feedmail-fiddle-x-mailer): Add debug call.
9694         Handle feedmail-x-mailer-line being nil.
9695         (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
9696         Add debug call.  Use buffer-substring-no-properties.
9697         (feedmail-say-debug, feedmail-say-chatter): New functions.
9698         (feedmail-find-eoh): Give an explicit error.
9700 2011-05-13  Ulf Jasper  <ulf.jasper@web.de>
9702         * net/newst-treeview.el (newsticker-treeview-face): Change default
9703         family from helvetica to sans.
9704         (newsticker-treeview-tool-bar-map): Move tool-bar icons to
9705         etc/images/newsticker.
9707         * net/newst-reader.el (newsticker-feed-face): Change default
9708         family from helvetica to sans.
9710         * net/newst-plainview.el (newsticker-new-item-face)
9711         (newsticker-old-item-face, newsticker-immortal-item-face)
9712         (newsticker-obsolete-item-face, newsticker-date-face)
9713         (newsticker-statistics-face): Change default family from
9714         helvetica to sans.
9715         (newsticker--plainview-tool-bar-map): Move tool-bar icons to
9716         etc/images/newsticker.
9718         * net/newst-backend.el (newsticker--do-run-auto-mark-filter),
9719         (newsticker--process-auto-mark-filter-match): : Tell user about
9720         auto-marking.
9722 2011-05-13  Didier Verna  <didier@xemacs.org>
9724         Common Lisp indentation improvements on defmethod and lambda-lists.
9725         * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
9726         TODO entries.
9727         (lisp-lambda-list-keyword-parameter-indentation)
9728         (lisp-lambda-list-keyword-parameter-alignment)
9729         (lisp-lambda-list-keyword-alignment): New customizable user options.
9730         (lisp-indent-defun-method): Improve docstring.
9731         (extended-loop-p): Fix comment.
9732         (lisp-indent-lambda-list-keywords-regexp): New variable.
9733         (lisp-indent-lambda-list): New function.
9734         (lisp-indent-259): Use it.
9735         (lisp-indent-defmethod): Support for more than one
9736         method qualifier and properly indent methods lambda-lists.
9737         (defgeneric): Provide a missing common-lisp-indent-function property.
9739 2011-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9741         * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
9742         bounds for the empty string (bug#8667).
9744 2011-05-13  Glenn Morris  <rgm@gnu.org>
9746         * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
9748         * mail/sendmail.el (sendmail-program): Try executable-find first.
9749         (sendmail-send-it): `sendmail-program' cannot be unbound.
9751         * calendar/appt.el (appt-make-list): Simplify.
9752         (appt-time-msg-list): Doc fix.
9753         (appt-check): Change mode-line message at the time of the appointment.
9755 2011-05-12  Andreas Schwab  <schwab@linux-m68k.org>
9757         * progmodes/ld-script.el (ld-script-keywords)
9758         (ld-script-builtins): Update keywords list.
9760 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9762         * progmodes/grep.el (grep-filter): Don't trip on partial lines.
9764         * shell.el (shell-completion-vars): New function.
9765         (shell-mode):
9766         * simple.el (read-shell-command): Use it.
9767         (blink-matching-open): No need for " [...]" in minibuffer-message.
9769 2011-05-12  Glenn Morris  <rgm@gnu.org>
9771         * calendar/appt.el (appt-now-displayed): Remove pointless variable.
9772         (appt-check): Simplify.
9774 2011-05-12  Eli Zaretskii  <eliz@gnu.org>
9776         * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
9777         literal "/dev/null".
9779 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9781         * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
9782         Fix typo.
9784 2011-05-12  Ralph Schleicher  <rs@ralph-schleicher.de>
9786         * progmodes/which-func.el (which-function):
9787         Use add-log-current-defun instead of add-log-current-defun-function,
9788         which might not be defined (Bug#8260).
9790 2011-05-12  Glenn Morris  <rgm@gnu.org>
9792         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
9793         Let byte-compile-initial-macro-environment always take precedence.
9795 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9797         * net/rcirc.el: Add support for SSL/TLS connections.
9798         (rcirc-server-alist): New field `encryption'.
9799         (rcirc): Check `encryption' settings.
9800         (rcirc-connect): New arg `encryption'.  Use open-network-stream.
9801         Merge make-local-variable into `set'.
9802         (rcirc--connection-open-p): New function.
9803         (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
9804         the process is not a network process (e.g. running gnutls-cli).
9805         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
9806         Make rcirc-(en|de)code-coding-system local here.
9807         (rcirc-mode): Merge make-local-variable into `set'.
9808         (rcirc-parent-buffer): Make permanent buffer-local.
9809         (rcirc-multiline-minor-mode): Don't do it here.
9810         (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
9811         there's no server buffer.
9813 2011-05-11  Glenn Morris  <rgm@gnu.org>
9815         * newcomment.el (comment-kill): Prefix "unused" local.
9817         * term/w32console.el (get-screen-color): Declare.
9819         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
9820         Handle symbol elements of byte-compile-initial-macro-environment.
9822 2011-05-10  Leo Liu  <sdl.web@gmail.com>
9824         * bookmark.el (bookmark-bmenu-mode-map):
9825         Bind bookmark-bmenu-search to `/'.
9827         * mail/footnote.el: Convert to utf-8 encoding.
9828         (footnote-unicode-string, footnote-unicode-regexp): New variable.
9829         (Footnote-unicode): New function.
9830         (footnote-style-alist): Add unicode style to the list.
9831         (footnote-style): Doc fix.
9833 2011-05-10  Jim Meyering  <meyering@redhat.com>
9835         Fix doubled-word typos.
9836         * international/quail.el (quail-insert-kbd-layout): and and -> and
9837         * kermit.el: and and -> and
9838         * net/ldap.el (ldap-search-internal): to to -> to
9839         * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
9840         * progmodes/js.el (js-mode): and and -> and
9841         * textmodes/artist.el (artist-move-to-xy): at at -> at
9842         (artist-draw-region-trim-line-endings): if if -> if
9843         And Safetyc -> Safety.
9844         * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
9846 2011-05-10  Glenn Morris  <rgm@gnu.org>
9847             Stefan Monnier  <monnier@iro.umontreal.ca>
9849         * files.el (hack-one-local-variable-eval-safep):
9850         Consider "eval: (foo-mode)" to be safe.  (Bug#8613)
9852 2011-05-10  Glenn Morris  <rgm@gnu.org>
9854         * calendar/diary-lib.el (diary-list-entries-hook)
9855         (diary-mark-entries-hook, diary-nongregorian-listing-hook)
9856         (diary-nongregorian-marking-hook, diary-list-entries)
9857         (diary-include-other-diary-files, diary-mark-entries)
9858         (diary-mark-included-diary-files): Doc fixes.
9860 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
9862         * misc.el: Require tabulated-list.el during compilation.
9864 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
9866         * progmodes/compile.el (compilation-start):
9867         Run compilation-filter-hook for the async case too.
9868         (compilation-filter-hook): Doc fix.
9870 2011-05-09  Deniz Dogan  <deniz@dogan.se>
9872         * wdired.el: Remove outdated installation comment.  Fix usage
9873         comment.
9875 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
9877         * misc.el: Implement new command `list-dynamic-libraries'.
9878         (list-dynamic-libraries--loaded-only-p): New variable.
9879         (list-dynamic-libraries--refresh): New function.
9880         (list-dynamic-libraries): New command.
9882 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
9884         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9885         Fix the ant regexp to handle end-line and end-column info from jikes.
9886         Re-introduce maven regexp.  Give the ruby-Test::Unit regexp a
9887         higher priority to avoid clobbering by gnu.
9889 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
9891         * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
9892         if the face has existing theme settings (Bug#8454).
9894 2011-05-08  Ralph Schleicher  <rs@ralph-schleicher.de>
9896         * progmodes/perl-mode.el (perl-imenu-generic-expression):
9897         Only match variables declared via `my' or `our' (Bug#8261).
9899         * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
9900         special file names `.' and `..' (Bug#8259).
9902 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
9904         * progmodes/grep.el (grep-mode-font-lock-keywords):
9905         Remove buffer-changing entries.
9906         (grep-filter): New function.
9907         (grep-mode): Add it to compilation-filter-hook.
9909         * progmodes/compile.el (compilation-filter-hook)
9910         (compilation-filter-start): New defvars.
9911         (compilation-filter): Call compilation-filter-hook prior to
9912         updating the process mark.
9914 2011-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9916         * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
9918 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
9920         * mail/sendmail.el (send-mail-function): On MS-Windows, default to
9921         mailclient-send-it even if window-system is nil.  (Bug#8595)
9923         * term/w32console.el (terminal-init-w32console):
9924         Call get-screen-color and use its output to set the frame
9925         background-mode.  (Bug#8597)
9927 2011-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9929         Make bytecomp.el understand that defmethod defines funs (bug#8631).
9930         * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
9931         New functions.
9932         (defgeneric, eieio--defmethod): Use them.
9933         (eieio-defgeneric): Remove.
9934         (defmethod): Call defgeneric in a way visible to the byte-compiler.
9936 2011-05-07  Glenn Morris  <rgm@gnu.org>
9938         * calendar/timeclock.el (timeclock-log-data): Remove unused local.
9939         Use let rather than let*.
9940         (timeclock-find-discrep): Remove unused local.
9942         * calendar/diary-lib.el (diary-comment-start): Doc fix.
9944         * calendar/appt.el (appt-time-msg-list): Doc fix.
9946 2011-05-06  Noah Friedman  <friedman@splode.com>
9948         * apropos.el (apropos-print-doc): Only use
9949         emacs-lisp-docstring-fill-column when it is bound to an integer,
9950         per that variable's documentation.
9952 2011-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9954         * lpr.el (print-region-1): Echo lpr-program's output, so error messages
9955         and warnings are not silently discarded (e.g. use -d instead of -P).
9957 2011-05-06  Glenn Morris  <rgm@gnu.org>
9959         * calendar/appt.el (appt-message-warning-time): Doc fix.
9960         (appt-warning-time-regexp): New option.
9961         (appt-make-list): Respect appt-message-warning-time.
9963         * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
9964         New options.
9965         (diary-add-to-list): Strip comments from the displayed string.
9966         (diary-mode): Set comment-start and comment-end.
9968         * vc/diff-mode.el (smerge-refine-subst): Declare.
9969         (diff-refine-hunk): Don't require smerge-mode when compiling.
9971 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
9973         * simple.el (list-processes): Return nil as the docstring says.
9975 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
9977         * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
9978         to "".
9979         (ange-ftp-write-region, ange-ftp-insert-file-contents)
9980         (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
9981         determining of binary transfer.  (Bug#7383)
9983 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
9985         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
9986         Fix port computation bug.  (Bug#8618)
9988 2011-05-05  Glenn Morris  <rgm@gnu.org>
9990         * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
9992         * simple.el (shell-dynamic-complete-functions)
9993         (comint-dynamic-complete-functions): Declare.
9995         * net/network-stream.el (gnutls-negotiate):
9996         * simple.el (tabulated-list-print): Fix declarations.
9998         * progmodes/gud.el (syntax-symbol, syntax-point):
9999         Remove unnecessary and incorrect declarations.
10001         * emacs-lisp/check-declare.el (check-declare-scan):
10002         Handle byte-compile-initial-macro-environment in bytecomp.el
10004 2011-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10006         Fix earlier half-done eieio-defmethod change (bug#8338).
10007         * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
10008         Streamline and change calling convention.
10009         (defmethod): Adjust accordingly and simplify.
10010         (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
10011         new eieio--defmethod.
10012         (slot-boundp): Minor CSE simplification.
10014 2011-05-05  Milan Zamazal  <pdm@zamazal.org>
10016         * progmodes/glasses.el (glasses-separate-capital-groups): New option.
10017         (glasses-make-readable): Use glasses-separate-capital-groups.
10019 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
10021         * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
10022         (warning-series): Doc fix.
10023         (display-warning): Don't try to create the buffer if we just found it.
10025 2011-05-04  Chong Yidong  <cyd@stupidchicken.com>
10027         * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
10028         (autoload-find-generated-file): New function.
10029         (generate-file-autoloads): Bind generated-autoload-file to
10030         buffer-file-name.
10031         (update-file-autoloads, update-directory-autoloads):
10032         Use autoload-find-generated-file.  If called interactively, prompt for
10033         output file (Bug#7989).
10034         (batch-update-autoloads): Doc fix.
10036 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
10038         * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
10040 2011-05-04  Glenn Morris  <rgm@gnu.org>
10042         * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
10043         function, so it follows changes in calendar-date-style.
10044         (diary-fancy-date-matcher): New function.
10045         (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
10046         (diary-fancy-font-lock-fontify-region-function):
10047         Use diary-fancy-date-pattern as a function.
10049         * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
10050         non-numbers for `year' etc pseudo-variables.  (Bug#8583)
10052 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
10054         * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
10055         instead of positional arguments.  Allow :keylist and :crlfiles
10056         arguments.
10057         (open-gnutls-stream): Call it.
10059         * net/network-stream.el (network-stream-open-starttls): Adjust to
10060         call `gnutls-negotiate' with :process and :hostname arguments.
10062 2011-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10064         * minibuffer.el (completion--message): New function.
10065         (completion--do-completion, minibuffer-complete)
10066         (minibuffer-force-complete, minibuffer-complete-word): Use it.
10067         (completion--do-completion): Don't ignore completion-auto-help when in
10068         icomplete-mode.
10070         * whitespace.el (whitespace-trailing-regexp): Don't rely on the
10071         internal encoding (e.g. tibetan zero is not whitespace).
10072         (global-whitespace-mode): Prefer save-current-buffer.
10073         (whitespace-trailing-regexp): Remove useless save-match-data.
10074         (whitespace-empty-at-bob-regexp): Minor simplification.
10076 2011-05-03  Chong Yidong  <cyd@stupidchicken.com>
10078         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
10080 2011-05-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
10082         * textmodes/ispell.el (ispell-add-per-file-word-list):
10083         Use `concat' to create string for insertion.
10085 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10087         * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
10088         Avoid open-line which runs post-self-insert-hook.
10089         (bibtex-fill-entry): Remove unused `end' var.
10091 2011-05-03  Dirk Ullrich  <dirk.ullrich@googlemail.com>  (tiny change)
10093         * textmodes/ispell.el (ispell-add-per-file-word-list):
10094         Protect against `nil' value of `comment-start' (Bug#8579).
10096 2011-05-03  Leo Liu  <sdl.web@gmail.com>
10098         * isearch.el (isearch-yank-pop): New command.
10099         (isearch-mode-map): Bind it to `M-y'.
10100         (isearch-forward): Mention it.
10102 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10104         * simple.el (minibuffer-complete-shell-command): Remove.
10105         (minibuffer-local-shell-command-map): Use completion-at-point.
10106         (read-shell-command): Setup completion vars here instead.
10107         (read-expression-map): Bind TAB to symbol completion.
10109         * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
10110         error directly rather via storing it into `results'.
10112 2011-05-02  Leo Liu  <sdl.web@gmail.com>
10114         * vc/diff.el: Fix description.
10116 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10118         * server.el (server-eval-at): New function.
10120 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10122         * net/network-stream.el (open-network-stream): Take a :nowait
10123         parameter and pass it on to `make-network-process'.
10124         (network-stream-open-plain): Ditto.
10126 2011-04-30  Andreas Schwab  <schwab@linux-m68k.org>
10128         * faces.el (face-spec-set-match-display): Don't match toolkit
10129         options on terminal frames.
10131 2011-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
10133         * progmodes/pascal.el: Use lexical binding.
10134         (pascal-mode-map): Remove author preferences.
10136         * pcomplete.el (pcomplete-std-complete): Don't abuse
10137         completion-at-point.
10139 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
10141         * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
10142         removing code that has been dead since 1991 or so.
10144         * startup.el (command-line): When warning about "_emacs", use a
10145         delayed warning to allow the user to filter it out.
10147 2011-04-28  Deniz Dogan  <deniz@dogan.se>
10149         * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
10150         user has not joined.
10152 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10154         * pcomplete.el (pcomplete-completions-at-point): Return nil if there
10155         aren't any completions at point.
10157 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
10159         * subr.el (display-delayed-warnings): New function.
10160         (delayed-warnings-hook): New variable.
10162 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10164         * minibuffer.el (completion-at-point, completion-help-at-point):
10165         Don't presume that a given completion-at-point-function will always
10166         use the same calling convention.
10168         * pcomplete.el (pcomplete-completions-at-point):
10169         Obey pcomplete-ignore-case.  Don't call pcomplete-norm-func unless
10170         pcomplete-seen is non-nil.
10171         (pcomplete-comint-setup): Also recognize the new comint/shell
10172         completion functions.
10173         (pcomplete-do-complete): Don't call pcomplete-norm-func unless
10174         pcomplete-seen is non-nil.
10176 2011-04-27  Niels Giesen  <niels.giesen@gmail.com>
10178         * calendar/icalendar.el (diary-lib): Add require statement.
10179         (icalendar--create-uid): Read out a uid from a text-property on
10180         the first character in the entry.  This allows for code to add its
10181         own uid to the entry.
10182         (icalendar--convert-float-to-ical): Add export of
10183         `diary-float'-entries save for those with the optional DAY
10184         argument.
10186 2011-04-27  Daniel Colascione  <dan.colascione@gmail.com>
10188         * subr.el (shell-quote-argument): Use alternate escaping strategy
10189         when we spot a variable reference in a string.
10191 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
10193         * cus-start.el (all): Define customization for debug-on-event.
10195 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
10197         * subr.el (shell-quote-argument): Escape correctly under Windows.
10199 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10201         * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
10203 2011-04-25  Michael Albinus  <michael.albinus@gmx.de>
10205         * net/tramp.el (tramp-process-actions): Add POS argument.
10206         Delete region between POS and (pos).
10208         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
10209         Use `nil' position in `tramp-process-actions' call.
10210         (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
10212         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
10213         position in `tramp-process-actions' call.
10215         * net/trampver.el: Update release number.
10217 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10219         * custom.el (defcustom): Obey lexical-binding.
10221         Fix octave-inf completion problems reported by Alexander Klimov.
10222         * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
10223         Inherit from octave-mode-syntax-table.
10224         (inferior-octave-mode): Set info-lookup-mode.
10225         (inferior-octave-completion-at-point): New function.
10226         (inferior-octave-complete): Use it and completion-in-region.
10227         (inferior-octave-dynamic-complete-functions): Use it as well, and use
10228         comint-filename-completion.
10229         * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
10230         symbol elements which shouldn't be word elements.
10231         (octave-font-lock-keywords, octave-beginning-of-defun)
10232         (octave-function-header-regexp): Adjust regexps accordingly.
10233         (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
10235 2011-04-25  Juanma Barranquero  <lekktu@gmail.com>
10237         * net/gnutls.el (gnutls-errorp): Declare before first use.
10239 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
10241         * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
10242         verify-error, and verify-hostname-error parameters.  Check whether
10243         default trustfile exists before going to use it.  Add missing
10244         argument to gnutls-message-maybe call.  Return value.
10245         Reported by Claudio Bley <claudio.bley@gmail.com>.
10246         (open-gnutls-stream): Add usage example.
10248         * net/network-stream.el (network-stream-open-starttls): Give host
10249         parameter to `gnutls-negotiate'.
10250         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
10251         * subr.el (shell-quote-argument): Escape correctly under Windows.
10253 2011-04-24  Daniel Colascione  <dan.colascione@gmail.com>
10255         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
10256         Use correct match group (bug#8438).
10258 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
10260         * emacs-lisp/package.el (package-built-in-p): Fix typo.
10261         (package-menu--generate): New arg specifying packages to show.
10262         (package-menu-refresh, package-menu-execute, list-packages):
10263         Callers changed.
10264         (package-show-package-list): New function, replacing deleted
10265         package--list-packages (renamed because it is non-internal).
10267         * finder.el (finder-list-matches): Use package-show-package-list
10268         instead of deleted package--list-packages.
10270         * vc/vc-annotate.el (vc-annotate-goto-line): New command.
10271         Based on a previous implementation by Juanma Barranquero (Bug#8366).
10272         (vc-annotate-mode-map): Bind it to RET.
10274 2011-04-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
10276         * progmodes/etags.el (next-file): Don't use set-buffer to change
10277         buffers (Bug#8478).
10279 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
10281         * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
10283         * apropos.el (apropos-label-face): Avoid variable-pitch face.
10284         (apropos-accumulator): Doc fix.
10285         (apropos-function, apropos-macro, apropos-command)
10286         (apropos-variable, apropos-face, apropos-group, apropos-widget)
10287         (apropos-plist): Add face property.
10288         (apropos-symbols-internal): Fix indentation.
10289         (apropos-print): Simplify help, and recognize apropos-multi-type.
10290         (apropos-print-doc): Use button-type-get to extract the button's
10291         face property.  Fill docstring (Bug#8352).
10293 2011-04-23  Juanma Barranquero  <lekktu@gmail.com>
10295         * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
10297         * play/mpuz.el (mpuz-silent): Doc fix.
10298         (mpuz-mode-map): Use mapc.
10299         (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
10300         (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
10301         Fix typos in docstrings.
10303         * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
10304         (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
10306         * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
10308 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
10310         * minibuffer.el (completion--do-completion): Avoid the "Next char
10311         not unique" prompt if icomplete-mode is enabled (Bug#5849).
10313         * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
10314         mouse-2 into unread-command-events, it is interpreted correctly.
10316         * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
10317         (image-toggle-display): Doc fix.
10319 2011-04-23  Stephen Berman  <stephen.berman@gmx.net>
10321         * textmodes/page.el (what-page): Use line-number-at-pos to
10322         calculate line number (Bug#6825).
10324 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
10326         * eshell/esh-mode.el (find-tag-interactive): Declare function.
10327         (eshell-find-tag): Remove `with-no-warnings', unneeded now.
10328         Pass argument NO-DEFAULT to `find-tag-interactive'.
10330 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
10332         Lexical-binding cleanup.
10334         * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
10335         (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
10336         * progmodes/ada-prj.el (ada-prj-initialize-values)
10337         (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
10338         (ada-prj-show-value):
10339         * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
10340         * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
10341         (antlr-invalidate-context-cache, antlr-options-menu-filter)
10342         (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
10343         * progmodes/bug-reference.el (bug-reference-push-button):
10344         * progmodes/fortran.el (fortran-line-length):
10345         * progmodes/glasses.el (glasses-change):
10346         * progmodes/octave-mod.el (octave-fill-paragraph):
10347         * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
10348         (python-pdbtrack-grub-for-buffer, python-sentinel):
10349         * progmodes/sql.el (sql-save-connection):
10350         * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
10351         * progmodes/xscheme.el (xscheme-enter-debugger-mode):
10352         Mark unused parameters.
10354         * progmodes/compile.el (compilation--flush-directory-cache)
10355         (compilation--flush-parse, compile-internal): Mark unused parameters.
10356         (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
10357         (compilation-next-error-function): Remove unused variable `timestamp'.
10359         * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
10360         (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
10362         * progmodes/dcl-mode.el (dcl-end-of-command):
10363         Remove unused variable `start'.
10364         (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
10365         (dcl-option-value-basic, dcl-option-value-offset)
10366         (dcl-option-value-margin-offset, dcl-option-value-comment-line):
10367         Mark unused parameters.
10368         (dcl-save-local-variable): Remove unused variable `val'.
10369         (mode): Declare.
10371         * progmodes/delphi.el (delphi-save-state, delphi-after-change):
10372         Mark unused parameters.
10373         (delphi-ignore-changes): Move before first use.
10374         (delphi-charset-token-at): Remove unused variable `start'.
10375         (delphi-else-start): Remove unused variable `if-count'.
10376         (delphi-comment-block-start, delphi-comment-block-end):
10377         Remove unused variable `kind'.
10378         (delphi-indent-line): Remove unused variable `new-point'.
10380         * progmodes/ebrowse.el (ebrowse-files-list)
10381         (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
10382         Mark unused parameters.  Don't quote `lambda'.
10383         (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
10384         Don't quote `lambda'.
10385         (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
10386         (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
10387         (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
10388         (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
10389         Use `ignore-errors'.
10390         (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
10391         (ebrowse-view/find-file-and-search-pattern)
10392         (ebrowse-view/find-member-declaration/definition):
10393         Rename parameter TAGS-FILE-NAME to TAGS-FILE.
10394         (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
10395         Rename parameter PREFIX-ARG to PREFIX.
10396         (ebrowse-tags-read-name): Remove unused variables `start' and
10397         `member-info'.
10398         (ebrowse-display-member-buffer): Rename variable `tags-file-name'
10399         to `tags-file'.
10401         * progmodes/etags.el (local-find-tag-hook): Declare.
10402         (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
10403         Mark unused parameters.
10405         * progmodes/executable.el (compilation-error-regexp-alist): Declare.
10406         (executable-interpret): Mark unused parameter.
10408         * progmodes/flymake.el (flymake-process-sentinel)
10409         (flymake-after-change-function)
10410         (flymake-create-temp-with-folder-structure)
10411         (flymake-get-include-dirs-dot): Mark unused parameters.
10412         (flymake-safe-delete-directory): Remove unused variable `err'.
10414         * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
10415         (speedbar-timer-fn, speedbar-line-text)
10416         (speedbar-change-expand-button-char, speedbar-delete-subblock)
10417         (speedbar-center-buffer-smartly): Declare functions.
10418         (gdb-find-watch-expression): Remove unused variable `array'.
10419         (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
10420         (gdb-starting): Mark unused parameters.
10421         (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
10422         (gdb-table-string): Remove unused variable `res'.
10423         (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
10424         (gdb-disassembly-handler-custom): Remove unused variable `pos'.
10425         (gdb-display-buffer): Remove unused variable `cur-size'.
10427         * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
10428         allow lexical-binding compilation.
10429         (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
10430         (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
10431         (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
10432         Mark unused parameters.
10433         (gud-gdb-marker-filter): Remove unused variable `match'.
10434         (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
10435         lambda expressions and funcall them, instead of using `fset'.
10437         * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
10438         HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
10440         * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
10441         variable `header-beg'; use `let'.
10443         * progmodes/icon.el (indent-icon-exp): Remove unused variables
10444         `restart', `last-sexp' and `at-do'.
10446         * progmodes/js.el (js--debug): Mark unused parameter.
10447         (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
10448         (js--splice-into-items): Remove unused variable `item'.
10449         (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
10451         * progmodes/make-mode.el (makefile-make-font-lock-keywords):
10452         Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
10453         (makefile-complete): Remove unused variable `try'.
10454         (makefile-fill-paragraph, makefile-match-function-end):
10455         Mark unused parameters.
10457         * progmodes/octave-inf.el (inferior-octave-complete):
10458         Remove unused variable `proc'.
10459         (inferior-octave-output-digest): Mark unused parameter.
10461         * progmodes/perl-mode.el (perl-calculate-indent):
10462         Remove unused variable `err'.
10464         * progmodes/prolog.el (prolog-mode-keybindings-inferior)
10465         (prolog-indent-line): Mark unused parameters.
10466         (prolog-indent-line): Remove unused variable `beg'.
10468         * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
10469         (reporter-dont-compact-list): Declare.
10471         * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
10472         Remove unused variable `char'.
10473         (sh-debug): Mark unused parameter.
10474         (sh-get-indent-info): Remove unused variable `start'.
10475         (sh-calculate-indent): Remove unused variable `var'.
10477         * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
10478         (simula-electric-keyword): Remove unused variable `null'.
10479         (simula-search-backward, simula-search-forward): Remove unused
10480         variables `begin' and `end'.
10482         * progmodes/vera-mode.el (vera-guess-basic-syntax):
10483         Remove unused variable `pos'.
10484         (vera-electric-tab, vera-comment-uncomment-region):
10485         Mark unused parameters.
10486         (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
10488 2011-04-22  Chong Yidong  <cyd@stupidchicken.com>
10490         * emacs-lisp/package.el (package--builtins, package-alist)
10491         (package-load-descriptor, package-built-in-p, package-activate)
10492         (define-package, package-installed-p)
10493         (package-compute-transaction, package-buffer-info)
10494         (package--push): Doc fix.  Distinguish more clearly between
10495         version strings and version lists.
10497 2011-04-21  Juanma Barranquero  <lekktu@gmail.com>
10499         Lexical-binding cleanup.
10501         * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
10502         (5x5-make-mutate-best):
10503         * play/fortune.el (fortune-in-buffer):
10504         * play/gomoku.el (gomoku-init-display):
10505         * play/solitaire.el (solitaire, solitaire-do-check):
10506         * play/tetris.el (tetris-default-update-speed-function):
10507         Mark unused parameters.
10509         * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
10510         (bubbles--shift): Remove unused variable `char-org'.
10511         (bubbles--set-faces): Remove unused variable `fg-col'.  Simplify.
10512         (bubbles--show-images): Remove unused variable `char'.
10514         * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
10515         (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
10516         (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
10517         (decipher-analyze-buffer): Use ?\s.
10518         (decipher-make-checkpoint): Remove unused variable `mapping'.
10520         * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
10522         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
10523         Remove unused variable `result'; use `let'.
10525         * play/gametree.el (gametree-current-layout, gametree-apply-layout):
10526         Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
10527         (gametree-children-shown-p, gametree-compute-reduced-score):
10528         Use `ignore-errors'.
10530         * play/handwrite.el (ps-lpr-switches): Declare.
10531         (handwrite): Remove unused variables `pmin' and `lastp'.
10533         * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
10535         * play/landmark.el (landmark-init-display)
10536         (landmark-update-naught-weights): Mark unused parameters.
10537         (landmark-y): Remove unused variable `noise'.  Simplify.
10538         (landmark-human-plays): Remove unused variable `score'.
10540         * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
10541         (mpuz-try-proposal): Remove unused variable `game'.
10543         * play/zone.el (life-patterns): Declare.
10545 2011-04-20  Juanma Barranquero  <lekktu@gmail.com>
10547         * vc/vc.el (ediff-vc-internal): Declare function.
10549 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10551         * shell.el: Use lexical-binding and std completion UI.
10552         (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
10553         (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
10554         comint-preoutput-filter-functions rather than on
10555         comint-output-filter-functions.
10556         (shell-command-completion, shell--command-completion-data)
10557         (shell-filename-completion, shell-environment-variable-completion)
10558         (shell-c-a-p-replace-by-expanded-directory): New functions.
10559         (shell-dynamic-complete-functions, shell-dynamic-complete-command)
10560         (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
10561         (shell-dynamic-complete-environment-variable): Use them.
10562         (shell-dynamic-complete-as-environment-variable)
10563         (shell-dynamic-complete-as-command): Remove.
10564         (shell-match-partial-variable): Match past point.
10565         * comint.el: Clean up use of completion-at-point-functions.
10566         (comint-completion-at-point): New function.
10567         (comint-mode): Use it completion-at-point-functions.
10568         (comint-dynamic-complete): Make it obsolete.
10569         (comint-replace-by-expanded-history-before-point): Add dry-run arg.
10570         (comint-c-a-p-replace-by-expanded-history): New function.
10571         (comint-dynamic-complete-functions)
10572         (comint-replace-by-expanded-history): Use it.
10573         * minibuffer.el (completion-table-with-terminator): Allow dynamic
10574         termination strings.  Try harder to avoid second try-completion.
10575         (completion-in-region-mode-map): Disable bindings that don't work yet.
10577         * comint.el: Use lexical-binding.  Require CL.
10578         (comint-dynamic-complete-functions): Use comint-filename-completion.
10579         (comint-completion-addsuffix): Tweak custom type.
10580         (comint-filename-completion, comint--common-suffix)
10581         (comint--common-quoted-suffix, comint--table-subvert)
10582         (comint--complete-file-name-data): New functions.
10583         (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
10584         (comint-dynamic-list-filename-completions): Use them.
10585         (comint-dynamic-simple-complete): Make obsolete.
10587         * minibuffer.el (completion-in-region-mode):
10588         Keep completion-in-region-mode--predicate global.
10589         (completion-in-region--postch):
10590         Assume completion-in-region-mode--predicate is not null.
10592         * progmodes/flymake.el (flymake-start-syntax-check-process):
10593         Obey `dir'.  Simplify.
10595         * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
10596         we're in VC after all.
10598 2011-04-20  Christoph Scholtes  <cschol2112@googlemail.com>
10600         * vc/vc.el (vc-diff-build-argument-list-internal)
10601         (vc-version-ediff, vc-ediff): New commands.
10602         (vc-version-diff): Use vc-diff-build-argument-list-internal.
10604 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10606         * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
10607         add sanity check.
10609         * obsolete/erc-hecomplete.el: Make obsolete.
10610         * obsolete/: Standardize obsolescence info in the header.
10612 2011-04-20  Glenn Morris  <rgm@gnu.org>
10614         * calendar/solar.el (solar-horizontal-coordinates):
10615         Use the longitude argument rather than `calendar-longitude'.
10616         (solar-date-next-longitude): Remove unused locals.
10618 2011-04-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
10620         * whitespace.el: New version 13.2.1.
10622 2011-04-20  felix  <EmacsWiki>  (tiny change)
10624         * whitespace.el (global-whitespace-mode): Keep highlight when
10625         switching between major modes on a file.
10627 2011-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10629         * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
10630         (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
10631         multi-line comments as well.
10633 2011-04-19  Juanma Barranquero  <lekktu@gmail.com>
10635         Lexical-binding cleanup.
10637         * arc-mode.el (archive-mode-revert):
10638         * cmuscheme.el (scheme-interactively-start-process):
10639         * custom.el (custom-initialize-delay):
10640         * dnd.el (dnd-open-local-file, dnd-open-remote-url):
10641         * dos-w32.el (direct-print-region-helper, direct-print-region-function):
10642         * emacs-lock.el (emacs-lock-clear-sentinel):
10643         * ezimage.el (defezimage):
10644         * follow.el (follow-avoid-tail-recenter):
10645         * fringe.el (set-fringe-mode-1):
10646         * generic-x.el (bat-generic-mode-compile):
10647         * help-mode.el (help-info-variable, help-do-xref)
10648         (help-mode-revert-buffer):
10649         * help.el (view-emacs-todo):
10650         * iswitchb.el (iswitchb-completion-help):
10651         * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
10652         * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
10653         (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
10654         * locate.el (locate-update):
10655         * longlines.el (longlines-encode-region)
10656         (longlines-after-change-function):
10657         * outline.el (outline-isearch-open-invisible):
10658         * ps-def.el (declare-function, charset-dimension, char-width)
10659         (encode-char):
10660         * ps-mule.el (ps-mule-plot-string):
10661         * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
10662         (recentf-edit-list-select, recentf-edit-list-validate)
10663         (recentf-open-files-action):
10664         * rect.el (delete-whitespace-rectangle-line)
10665         (rectangle-number-line-callback):
10666         * register.el (window-configuration-to-register)
10667         (frame-configuration-to-register):
10668         * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
10669         * select.el (xselect-convert-to-string, xselect-convert-to-length)
10670         (xselect-convert-to-targets, xselect-convert-to-delete)
10671         (xselect-convert-to-filename, xselect-convert-to-charpos)
10672         (xselect-convert-to-lineno, xselect-convert-to-colno)
10673         (xselect-convert-to-os, xselect-convert-to-host)
10674         (xselect-convert-to-user, xselect-convert-to-class)
10675         (xselect-convert-to-name, xselect-convert-to-integer)
10676         (xselect-convert-to-atom, xselect-convert-to-identity):
10677         * subr.el (declare, ignore, process-kill-without-query)
10678         (text-clone-maintain):
10679         * terminal.el (te-get-char, te-tic-sentinel):
10680         * tool-bar.el (tool-bar-make-keymap):
10681         * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
10682         * type-break.el (type-break-mode, type-break-noninteractive-query):
10683         * view.el (View-back-to-mark):
10684         * wid-browse.el (widget-browse-action, widget-browse-widget)
10685         (widget-browse-widgets, widget-browse-sexp):
10686         * widget.el (define-widget-keywords):
10687         * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
10688         Mark unused parameters.
10690         * align.el (align-adjust-col-for-rule): Mark unused parameter.
10691         (align-areas): Remove unused variable `look'.
10692         (align-region): Remove unused variables `real-end' and `pos-list'.
10694         * apropos.el (apropos-score-doc): Remove unused variable `i'.
10696         * bindings.el (mode-line-modified, mode-line-remote):
10697         Mark unused parameters.
10698         (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
10700         * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
10701         (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
10703         * comint.el (comint-history-isearch-pop-state)
10704         (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
10705         (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
10706         (comint-substitute-in-file-name): Doc fix.
10708         * completion.el (cmpl-statistics-block): Mark unused parameter.
10709         (add-completions-from-tags-table, add-completions-from-lisp-buffer)
10710         (save-completions-to-file, load-completions-from-file):
10711         Remove unused local variable `e'.
10713         * composite.el (compose-chars): Remove unused variable `len'.
10714         (lgstring-insert-glyph): Remove unused variable `g'.
10715         (compose-glyph-string): Remove unused variables `ascent',
10716         `descent', `lbearing' and `rbearing'.
10717         (compose-glyph-string-relative): Remove unused variables
10718         `lbearing', `rbearing' and `wadjust'.
10719         (compose-gstring-for-graphic): Remove unused variables `header',
10720         `wadjust', `xoff' and `yoff'.  Use `let', not `let*'.
10721         (compose-gstring-for-terminal): Remove unused variables `header'
10722         and `nchars'.  Use `let', not `let*'.
10724         * cus-edit.el (Custom-set, Custom-save, custom-reset)
10725         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
10726         (Custom-buffer-done, custom-buffer-create-internal)
10727         (custom-browse-visibility-action, custom-browse-group-tag-action)
10728         (custom-browse-variable-tag-action, custom-browse-face-tag-action)
10729         (widget-magic-mouse-down-action, custom-toggle-parent)
10730         (custom-add-parent-links, custom-toggle-hide-variable)
10731         (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
10732         (custom-toggle-hide-face, face, hook, custom-group-link-action)
10733         (custom-face-menu-create, custom-variable-menu-create, get)
10734         (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
10735         (custom-reset-standard-save-and-update): Remove unused variable `value'.
10736         (customize-apropos): Remove unused variable `tests'.
10737         (custom-group-value-create): Remove unused variable `hidden-p'.
10738         (sort-fold-case): Declare.
10740         * cus-theme.el (custom-reset-standard-faces-list)
10741         (custom-reset-standard-variables-list): Declare.
10742         (customize-create-theme, custom-theme-revert, custom-theme-write)
10743         (custom-theme-choose-mode, customize-themes, custom-theme-save):
10744         Mark unused parameters.
10746         * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
10748         * delim-col.el (delimit-columns-max): Move defvar before first use.
10750         * descr-text.el (describe-char-categories): Don't quote `lambda'.
10751         (describe-char): Don't quote `lambda'.  Mark unused parameter.
10753         * desktop.el (desktop-save-buffer-p): Mark unused parameter.
10754         (auto-insert): Declare.
10755         (desktop-restore-file-buffer): Rename desktop-* parameters;
10756         mark unused ones.
10757         (desktop-create-buffer): Rename desktop-* parameters and bind them.
10758         (desktop-buffer): Rename desktop-* parameters.
10760         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
10761         (dframe-reposition-frame-xemacs, dframe-help-echo)
10762         (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
10763         Mark unused parameters.
10765         * dired-aux.el (backup-extract-version-start, overwrite-query)
10766         (overwrite-backup-query, rename-regexp-query)
10767         (rename-non-directory-query): Declare.
10768         (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
10769         (dired-add-entry): Remove unused variable `orig-file-name'.
10770         (dired-copy-file-recursive): Remove unused variable `dirfailed'.
10771         Use parameter PRESERVE-TIME instead of accessing dynamic variable
10772         `dired-copy-preserve-time' directly.
10773         (dired-do-create-files-regexp): Remove unused variable `fn-count'.
10774         (dired-insert-subdir-newpos): Rename unused variable `pos'.
10776         * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
10777         (dired-virtual-revert, dired-make-relative-symlink):
10778         Mark unused parameters.
10779         (manual-program): Declare.
10780         (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
10781         (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
10782         wrapped in `with-no-warnings' to avoid replacing one warning by another.
10784         * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
10786         * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
10788         * echistory.el (electric-history-in-progress, Helper-return-blurb):
10789         Declare.
10791         * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
10793         * electric.el (Electric-command-loop): Rename parameter
10794         INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
10796         * expand.el (expand-in-literal): Remove unused variable `here'.
10798         * facemenu.el (facemenu-add-new-color):
10799         Remove unused variable `docstring'.
10801         * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
10802         (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
10803         (face-attr-construct): Mark unused parameter.  Doc fix.
10804         (read-color): Remove unused variable `hex-string'.
10806         * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
10807         (locate-dominating-file): Remove unused vars `prev-file' and `user'.
10808         (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
10809         (display-buffer-other-frame): Remove unused variable `old-window'.
10810         (kill-buffer-hook): Declare.
10811         (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
10812         Mark unused parameters.
10813         (after-find-file): Pass 1 to `auto-save-mode', not t.
10815         * files-x.el (auto-insert): Declare.
10816         (modify-file-local-variable-prop-line): Remove unused variable `val'.
10818         * find-lisp.el (find-lisp-find-dired-internal): Remove unused
10819         variable `buf'.  Mark unused parameter.
10820         (find-lisp-insert-directory): Mark unused parameter.
10822         * format.el (format-decode-run-method): Mark unused parameter; doc fix.
10823         (format-encode-region): Remove unused variables `cur-buf' and `result'.
10824         (format-common-tail): Remove, unused.
10825         (format-deannotate-region): Remove unused variable `loc'.
10826         (format-annotate-region): Remove unused variable `p'.
10827         (format-annotate-single-property-change): Remove unused variables
10828         `default' and `tail'.
10830         * forms.el (read-file-filter): Declare.
10831         (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
10833         * frame.el (frame-creation-function-alist): Mark unused parameter.
10834         (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
10836         * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
10837         Remove unused parameters.
10838         (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
10839         (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
10841         * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
10842         (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
10843         (hfy-prepare-tag-map): Mark unused parameters.
10844         (htmlfontify-buffer): Use `called-interactively-p'.
10846         * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
10847         (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
10848         (ibuffer-do-occur): Mark unused parameters.
10849         (ibuffer-forward-next-marked): Remove unused variable `curmark'.
10850         (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
10852         * ibuffer.el: Don't quote `lambda'.
10853         (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
10854         (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
10855         Mark unused parameters.
10857         * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
10858         (ido-completing-read): Mark unused parameters.
10859         (ido-copy-current-word): Mark unused parameters;
10860         remove unused variable `name'.
10861         (ido-sort-merged-list): Remove unused parameter `dirs'.
10863         * ielm.el (ielm-input-sender): Mark unused parameter.
10864         (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
10865         (ielm-output, ielm-wbuf, ielm-pmark): Declare.
10866         (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
10867         `ielm-string' as a dynamic variable accessible from the IELM prompt.
10868         Bind `ielm-string' to INPUT-STRING.  Remove unused variable `err'.
10870         * image-dired.el (image-dired-display-thumbs): Remove unused
10871         variables `curr-file' and `count'.
10872         (image-dired-remove-tag): Remove unused variable `start'.
10873         (image-dired-tag-files, image-dired-create-thumbs): Remove unused
10874         variable `curr-file'
10875         (image-dired-rotate-original): Remove unused variable `temp-file'.
10876         (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
10877         Remove unused variable `file'.
10878         (image-dired-gallery-generate): Remove unused variable `curr'.
10879         (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
10881         * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
10883         * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
10885         * informat.el (texinfo-command-start, texinfo-command-end): Declare.
10887         * isearch.el (minibuffer-history-symbol): Declare.
10888         (isearch-edit-string): Remove unused variable `err'.
10889         (isearch-message-prefix, isearch-message-suffix):
10890         Mark unused parameters.
10892         * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
10894         * macros.el (insert-kbd-macro): Remove unused variable `mods'.
10896         * makesum.el (double-column): Remove unused variable `cnt'.
10898         * misearch.el (multi-isearch-pop-state): Mark unused parameter.
10899         (ido-ignore-item-temp-list): Declare.
10901         * mouse-drag.el (mouse-drag-throw): Remove unused variables
10902         `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
10903         `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
10904         (mouse-drag-drag): Remove unused variables `mouse-delta' and
10905         `mouse-col-delta'.
10907         * mouse-sel.el (mouse-extend-internal):
10908         Remove unused variable `orig-window-frame'.
10910         * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
10911         (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
10912         Move declarations before first use.
10913         (pcomplete-opt): Mark unused parameters; doc fix.
10915         * proced.el (proced-revert): Mark unused parameter.
10916         (proced-send-signal): Remove unused variable `err'.
10918         * ps-print.el (ps-print-preprint-region, ps-print-preprint):
10919         Rename parameter PREFIX-ARG to ARG.
10920         (ps-basic-plot-string, ps-basic-plot-whitespace):
10921         Mark unused parameters.
10923         * replace.el (replace-count): Define.
10924         (occur-revert-function): Mark unused parameters.
10925         (ido-ignore-item-temp-list, isearch-error, isearch-forward)
10926         (isearch-case-fold-search, isearch-string): Declare.
10927         (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
10928         bind `case-fold-search'.  Remove unused variables `beg' and `end',
10929         and simplify.
10930         (replace-eval-replacement): Rename parameter REPLACE-COUNT to
10931         COUNT and bind `replace-count'.
10932         (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
10933         to COUNT.
10935         * savehist.el (print-readably, print-string-length): Declare.
10937         * shadowfile.el (shadow-expand-cluster-in-file-name):
10938         Remove unused variable `cluster'.
10939         (shadow-copy-file): Remove unused variable `i'.
10940         (shadow-noquery, shadow-clusters, shadow-site-cluster)
10941         (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
10942         (shadow-define-literal-group, shadow-define-regexp-group)
10943         (shadow-make-group, shadow-shadows-of): Clean up docstrings.
10945         * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
10946         (shell): Use `called-interactively-p'.
10947         (shell-directory-tracker): Remove unused variable `chdir-failure'.
10949         * simple.el (compilation-context-lines, comint-file-name-quote-list)
10950         (comint-file-name-chars, comint-delimiter-argument-list): Declare.
10951         (delete-backward-char): Remove unused variable `ocol'.
10952         (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
10953         (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
10954         (event-apply-hyper-modifier, event-apply-shift-modifier)
10955         (event-apply-control-modifier, event-apply-meta-modifier):
10956         Mark unused parameters.
10957         (undo-make-selective-list): Remove duplicate variable `undo-elt'.
10958         (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
10960         * speedbar.el (speedbar-ignored-directory-expressions)
10961         (speedbar-supported-extension-expressions, speedbar-directory-buttons)
10962         (speedbar-find-file, speedbar-dir-follow)
10963         (speedbar-directory-buttons-follow, speedbar-tag-find)
10964         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
10965         (speedbar-buffers-line-directory, speedbar-buffer-click):
10966         Mark unused parameters.
10967         (speedbar-tag-file): Remove unused variable `mode'.
10968         (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
10970         * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
10972         * talk.el (talk): Remove unused variable `display'.
10974         * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
10975         (tar-write-region-annotate): Mark unused parameter.
10977         * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
10978         (minutes, seconds, time-zone, day, year, monthname, month, dayname):
10979         Declare them, wrapped in `with-no-warnings' to avoid replacing one
10980         warning by another.
10982         * time-stamp.el (time-stamp-string-preprocess):
10983         Remove unused variable `require-padding'.
10985         * tree-widget.el (widget-glyph-enable): Declare.
10986         (tree-widget-action): Mark unused parameter.
10988         * w32-fns.el (x-get-selection): Mark unused parameter.
10989         (autoload-make-program, generated-autoload-file): Declare.
10991         * wdired.el (wdired-revert): Mark unused parameters.
10992         (wdired-xcase-word): Remove unused variable `err'.
10994         * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
10995         (whitespace-help-scroll): Remove unused variable `data-help'.
10997         * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
10998         (widget-image-insert, widget-after-change, default)
10999         (widget-default-format-handler, widget-default-notify)
11000         (widget-default-prompt-value, widget-info-link-action)
11001         (widget-url-link-action, widget-function-link-action)
11002         (widget-variable-link-action, widget-file-link-action)
11003         (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
11004         (widget-field-prompt-internal, widget-field-action, widget-field-match)
11005         (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
11006         (widget-insert-button-action, widget-delete-button-action, visibility)
11007         (widget-documentation-link-action, widget-documentation-string-action)
11008         (widget-const-prompt-value, widget-regexp-match, symbol)
11009         (widget-coding-system-prompt-value)
11010         (widget-key-sequence-value-to-external, sexp)
11011         (widget-sexp-value-to-internal, character, vector, cons)
11012         (widget-choice-prompt-value, widget-boolean-prompt-value)
11013         (widget-color--choose-action): Mark unused parameters.
11014         (widget-item-match-inline, widget-choice-match-inline)
11015         (widget-checklist-match, widget-checklist-match-inline)
11016         (widget-group-match): Rename parameter VALUES to VALS.
11017         (widget-field-value-set): Remove unused variable `size'.
11018         (widget-color-action): Remove unused variables `value' and `start'.
11020         * windmove.el (windmove-wrap-loc-for-movement): Remove unused
11021         variable `dir'.  Doc fix.
11022         (windmove-find-other-window): Don't pass it.
11024         * window.el (count-windows): Mark unused parameter.
11025         (bw-adjust-window): Remove unused variable `err'.
11027         * woman.el (woman-file-name): Remove unused variable `default'.
11028         (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
11029         WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
11030         (global-font-lock-mode): Declare.
11031         (woman-decode-region): Mark unused parameter.
11032         (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
11034         * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
11035         (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
11036         (x-dnd-handle-moz-url): Remove unused variable `title'.
11037         (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
11039         * xml.el (xml-parse-tag, xml-parse-attlist):
11040         Remove unused variable `pos'.
11042 2011-04-19  Glenn Morris  <rgm@gnu.org>
11044         * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
11045         (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
11046         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
11047         (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
11048         * calendar/cal-html.el (cal-html-insert-minical):
11049         * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
11050         (calendar-mark-date-pattern):
11051         Prefix "unused" locals.
11053         * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
11054         optional argument `style'.
11056         * calendar/appt.el (appt-make-list):
11057         * calendar/cal-china.el (calendar-chinese-date-string):
11058         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
11059         (diary-hebrew-yahrzeit):
11060         * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
11061         * calendar/calendar.el (calendar-generate-window):
11062         * calendar/time-date.el (time-to-days):
11063         Remove unused local variables.
11065 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
11067         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
11068         glyphless-char-display table.
11069         (tabulated-list-glyphless-char-display): New var.
11071 2011-04-18  Sam Steingold  <sds@gnu.org>
11073         * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
11074         to acknowledgments.
11076 2011-04-17  Glenn Morris  <rgm@gnu.org>
11078         * calendar/diary-lib.el (diary-sexp-entry):
11079         * calendar/holidays.el (holiday-sexp):
11080         Set debug-on-error rather than the removed stack-trace-on-error.
11082 2011-04-16  Glenn Morris  <rgm@gnu.org>
11084         * progmodes/f90.el: Use lexical-binding.
11085         (f90-get-correct-indent): Remove unnecessary local variable `cont'.
11087 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11089         * mail/sendmail.el (mail-mode-map): Use completion-at-point.
11090         (mail-mode): Setup mailalias completion here instead.
11091         * mail/mailalias.el: Use lexical-binding.
11092         (pattern, mailalias-done): Declare dynamic.
11093         (mail-completion-at-point-function): New function, from mail-complete.
11094         (mail-complete): Use it.
11095         (mail-completion-expand): New function.
11096         (mail-get-names): Use it.
11097         (mail-directory, mail-directory-process, mail-directory-stream):
11098         Don't use `pattern' for lexically bound arg.
11100         * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
11102         * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
11103         (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
11104         (hfy-etags-cmd-alist): Don't eval-and-compile any more.
11106         * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
11107         (byte-save-window-excursion, byte-temp-output-buffer-setup)
11108         (byte-interactive-p): Define them again, for use when inlining
11109         old code.
11111 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
11113         * loadup.el: Use `string-to-number', not `string-to-int'.
11115 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11117         * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
11118         gud-gdb-complete-command.
11119         (gud-gdb-completions): New function, from gud-gdb-complete-command.
11120         (gud-gdb-completion-at-point): New function.
11121         (gud-gdb-completions): Remove.
11123 2011-04-14  Michael Albinus  <michael.albinus@gmx.de>
11125         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
11126         when the scripts fail.  Use `tramp-do-file-attributes-with-ls' then.
11127         (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
11128         whether `executable-find' is bound.
11130         * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
11132 2011-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11134         * minibuffer.el (completion-in-region-mode-predicate)
11135         (completion-in-region-mode--predicate): New vars.
11136         (completion-in-region, completion-in-region--postch)
11137         (completion-in-region-mode): Use them.
11138         (completion--capf-wrapper): Also return the hook function.
11139         (completion-at-point, completion-help-at-point):
11140         Adjust and provide a predicate.
11142         Preserve arg names for advice of subr and lexical functions (bug#8457).
11143         * help-fns.el (help-function-arglist): Consolidate the subr and
11144         new-byte-code cases.  Add argument `preserve-names' to extract names
11145         from the docstring when needed.
11146         * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
11147         (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
11148         (ad-arglist): Use help-function-arglist's new arg.
11149         (ad-definition-type): Use cond.
11151 2011-04-13  Juanma Barranquero  <lekktu@gmail.com>
11153         * autorevert.el (auto-revert-handler):
11154         Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
11155         which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
11156         Don't quote lambda.
11158         * image-mode.el (image-transform-set-scale):
11159         Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
11161 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11163         * net/network-stream.el (network-stream-open-starttls): Only do
11164         opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
11165         Upgrades via gnutls-cli are too slow to be done opportunistically.
11167 2011-04-12  Juanma Barranquero  <lekktu@gmail.com>
11169         * dframe.el (dframe-current-frame): Remove spurious quote.
11171 2011-04-12  Glenn Morris  <rgm@gnu.org>
11173         * calendar/cal-tex.el (cal-tex-end-document):
11174         Try to automatically use latin1 input if needed.
11176         * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
11177         Don't try to cons a mark onto an empty element.
11179 2011-04-11  Leo Liu  <sdl.web@gmail.com>
11181         * ido.el (ido-buffer-internal): Allow method 'kill for virtual
11182         buffers.
11183         (ido-kill-buffer-at-head): Support killing virtual buffers.
11185 2011-04-10  Chong Yidong  <cyd@stupidchicken.com>
11187         * minibuffer.el (completion-show-inline-help): New var.
11188         (completion--do-completion, minibuffer-complete)
11189         (minibuffer-force-complete, minibuffer-complete-word):
11190         Inhibit minibuffer messages if completion-show-inline-help is nil.
11192         * icomplete.el (icomplete-mode): Bind completion-show-inline-help
11193         to avoid interference from inline help (Bug#5849).
11195 2011-04-10  Leo Liu  <sdl.web@gmail.com>
11197         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
11198         Fix typo.
11200 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
11202         * image-mode.el (image-toggle-display-image): Signal an error if
11203         not in Image mode.
11204         (image-transform-mode, image-transform-resize)
11205         (image-transform-set-rotation): Doc fix.
11206         (image-transform-set-resize): Delete.
11207         (image-transform-set-scale, image-transform-fit-to-height)
11208         (image-transform-fit-to-width): Handle image-toggle-display-image
11209         and image-transform-resize directly.
11211 2011-04-08  Sho Nakatani  <lay.sakura@gmail.com>
11213         * doc-view.el (doc-view-fit-width-to-window)
11214         (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
11215         New functions for fitting the shown image to the Emacs window size.
11216         (doc-view-mode-map): Add bindings for the new functions.
11218 2011-04-08  Juanma Barranquero  <lekktu@gmail.com>
11220         * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
11221         Fix typo in docstring.
11223 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
11225         * files.el (file-size-human-readable): Produce one digit after
11226         decimal, like "ls -lh" does.
11228         * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
11229         the file size representation.
11231         * simple.el (list-processes): If async subprocesses are not
11232         available, error out with a clear error message.
11234 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
11236         * help.el (help-form-show): New function, to be called from C.
11237         Put help-form output in a buffer named differently than *Help*.
11239 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
11241         * files.el (file-size-human-readable): New function.
11243         * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
11244         computing the representation inline.  Don't require `cl'.
11246 2011-04-08  Glenn Morris  <rgm@gnu.org>
11248         * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
11250         * net/browse-url.el (browse-url-firefox):
11251         Test system-type, not system-configuration.
11253         * vc/log-edit.el (log-edit-empty-buffer-p): New function.
11254         (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
11255         Use log-edit-empty-buffer-p.  (Bug#7598)
11257         * net/rlogin.el (rlogin-process-connection-type): Simplify.
11258         (rlogin-mode-map): Initialize in the defvar.
11259         (rlogin): Use ignore-errors.
11261         * replace.el (occur-mode-map): Some fixes for menu items.
11263 2011-04-07  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
11265         * play/morse.el (denato-region): Handle varying case.  (Bug#8386)
11267 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
11269         * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
11270         issuing unused warnings.
11272         * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
11273         macro directly.
11275         * simple.el: Lisp reimplement of list-processes.  Based on an
11276         earlier reimplementation by Leo Liu, but using tabulated-list.el.
11277         (process-menu-mode): New major mode.
11278         (list-processes--refresh, list-processes):
11279         (process-menu-visit-buffer): New functions.
11281         * files.el (save-buffers-kill-emacs): Don't assume any return
11282         value of list-processes, which is undocumented anyway.
11284 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
11286         * emacs-lisp/tabulated-list.el: New file.
11288         * emacs-lisp/package.el: Use Tabulated List mode.
11289         (package-menu-mode-map): Inherit from tabulated-list-mode-map.
11290         (package-menu-mode): Derive from tabulated-list-mode.  Set up the
11291         table format using Tabulated List mode variables.
11292         (package--push): New macro, replacing package-list-maybe-add.
11293         (package-menu--generate): Use package--push.  Renamed from
11294         package--generate-package-list.
11295         (package-menu-refresh, list-packages): Use it.
11296         (package-menu--print-info): Rename from package-print-package.
11297         Return insertion data instead of inserting it directly.
11298         (package-menu-describe-package, package-menu-execute):
11299         Use tabulated-list-get-id.
11300         (package-menu-mark-delete, package-menu-mark-install)
11301         (package-menu-mark-unmark, package-menu-backup-unmark)
11302         (package-menu-mark-obsolete-for-deletion):
11303         Use tabulated-list-put-tag.
11304         (package--list-packages, package-menu-revert)
11305         (package-menu-get-package, package-menu-get-version)
11306         (package-menu-sort-by-column): Functions deleted.
11307         (package-menu-package-list, package-menu-sort-key): Vars deleted.
11308         (package-menu--status-predicate, package-menu--version-predicate)
11309         (package-menu--name-predicate)
11310         (package-menu--description-predicate): Handle arguments in the
11311         Tabulated List format.
11312         (package-list-packages-no-fetch): Call list-packages.
11314 2011-04-06  Juanma Barranquero  <lekktu@gmail.com>
11316         * files.el (after-find-file-from-revert-buffer): Remove variable.
11317         (after-find-file): Don't bind it.
11318         (revert-buffer-in-progress-p): New variable.
11319         (revert-buffer): Bind it.
11320         Pass nil for `after-find-file-from-revert-buffer'.
11322         * saveplace.el (save-place-find-file-hook): Use new variable
11323         `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
11325 2011-04-06  Glenn Morris  <rgm@gnu.org>
11327         * Makefile.in (AUTOGEN_VCS): New variable.
11328         (autoloads): Use $AUTOGEN_VCS.
11330         * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
11331         * calendar/calendar.el (calendar-mode-map):
11332         Check for toolkit scroll bars.  (Bug#8305)
11334 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
11336         * minibuffer.el (completion-in-region--postch)
11337         (completion-in-region-mode): Remove unnecessary messages.
11339 2011-04-05  Juanma Barranquero  <lekktu@gmail.com>
11341         * font-lock.el (font-lock-refresh-defaults):
11342         Don't bind `hi-lock--inhibit-font-lock-hook', removed in
11343         2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
11345         * info.el (Info-directory-list, Info-read-node-name-2)
11346         (Info-split-parameter-string): Doc fixes.
11347         (Info-virtual-nodes): Reflow docstring.
11348         (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
11349         (Info-apropos-toc-nodes, info-finder, Info-get-token)
11350         (Info-find-emacs-command-nodes, Info-speedbar-key-map):
11351         Fix typos in docstrings.
11352         (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
11353         (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
11354         (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
11355         (Info-restore-desktop-buffer): Mark unused parameters.
11356         (Info-directory-find-file, Info-directory-find-node)
11357         (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
11358         (Info-virtual-index-find-node, Info-apropos-find-file)
11359         (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
11360         Mark unused parameters; fix typos in docstrings.
11361         (Info-virtual-index): Remove unused local variable `nodename'.
11363 2011-04-05  Deniz Dogan  <deniz@dogan.se>
11365         * net/rcirc.el: Update my e-mail address.
11366         (rcirc-mode-map): Remove M-o binding.
11368 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
11370         * startup.el (command-line): Save the cursor's theme-face
11371         directly, instead of using face-override-spec.
11373         * custom.el (load-theme): Minor optimization in assigning faces.
11375 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
11377         * help-fns.el (describe-variable): Complete all variables having
11378         documentation, including keywords.
11379         http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
11381 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
11383         Convert to lexical-binding.
11385         * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
11386         (bs--get-marked-string, bs--get-modified-string)
11387         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
11388         (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
11389         (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
11391         * ehelp.el (electric-help-execute-extended)
11392         (electric-help-ctrl-x-prefix):
11393         * hexl.el (hexl-revert-buffer-function):
11394         * linum.el (linum-after-change, linum-after-scroll):
11395         * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
11397         * help-fns.el (help-describe-category-set): Remove unused ERR variable.
11399 2011-04-04  Daiki Ueno  <ueno@unixuser.org>
11401         * epa-dired.el:
11402         * epa-mail.el:
11403         * epa-hook.el:
11404         * epa-file.el:
11405         * epa.el:
11406         * epg.el: Use lexical binding.
11408 2011-04-03  Chong Yidong  <cyd@stupidchicken.com>
11410         * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
11412         * textmodes/flyspell.el (flyspell-word): Recognize default
11413         dictionary case for flyspell-mark-duplications-exceptions.
11414         Use regexp matching for languages.
11415         (flyspell-mark-duplications-exceptions): Add "that" and "had" for
11416         default dictionary (Bug#7926).
11418 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
11420         * emacs-lisp/package.el (package--with-work-buffer):
11421         Recognize https URLs.
11423         * net/network-stream.el: Move from gnus/proto-stream.el.
11424         Change prefix to network-stream throughout.
11425         (open-protocol-stream): Merge into open-network-stream, leaving
11426         open-protocol-stream as an alias.  Handle nil BUFFER args.
11428         * subr.el (open-network-stream): Move to net/network-stream.el.
11430 2011-04-02  Glenn Morris  <rgm@gnu.org>
11432         * find-dired.el (find-exec-terminator): New option.
11433         (find-ls-option): Test for -ls support.
11434         (find-ls-subdir-switches): Test for -b in find-ls-option.
11435         (find-dired, find-grep-dired): Doc fixes.
11436         (find-dired): Use find-exec-terminator.
11438         * find-dired.el (find-ls-option, find-ls-subdir-switches)
11439         (find-grep-options): Do not autoload these defcustoms, remove purecopy.
11440         (find-name-arg): Remove purecopy.
11442         * progmodes/grep.el (grep-find-use-xargs): Doc fix.
11443         (grep-compute-defaults): Check for `-exec COMMAND +' support.
11444         Set grep-find-use-xargs, grep-find-command, and grep-find-template
11445         accordingly.  Don't add the null-device if not needed.
11447         * files.el (save-some-buffers): Doc fix.
11449 2011-04-02  Eli Zaretskii  <eliz@gnu.org>
11451         * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
11453 2011-04-01  Juanma Barranquero  <lekktu@gmail.com>
11455         * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
11456         Use `dolist' rather than `mapcar'.
11458 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11460         Add lexical binding.
11462         * subr.el (apply-partially): Use new closures rather than CL.
11463         (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
11464         (dolist, dotimes): Use slightly different expansion for lexical code.
11465         (functionp): Move to C.
11466         (letrec): New macro.
11467         (with-wrapper-hook): Use it and apply-partially instead of CL.
11468         (eval-after-load): Preserve lexical-binding.
11469         (save-window-excursion, with-output-to-temp-buffer): Turn them
11470         into macros.
11472         * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
11474         * help-fns.el (help-split-fundoc): Return nil if there's nothing else
11475         than the arglist.
11476         (help-add-fundoc-usage): Don't add `Not documented'.
11477         (help-function-arglist): Handle closures, subroutines, and new
11478         byte-code-functions.
11479         (help-make-usage): Remove leading underscores.
11480         (describe-function-1): Handle closures.
11481         (describe-variable): Use special-variable-p for completion.
11483         * files.el (lexical-binding): Declare safe.
11485         * emacs-lisp/pcase.el: Don't use destructuring-bind.
11486         (pcase--memoize): Rename from pcase-memoize.  Change weakness.
11487         (pcase): Add `let' pattern.
11488         Change memoization so it actually works.
11489         (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
11490         (pcase--u1) <guard, pred>: Fix possible shadowing problem.
11491         <let>: New case.
11493         * emacs-lisp/macroexp.el: Use lexical binding.
11494         (macroexpand-all-1): Check obsolete macros.  Expand compiler-macros.
11495         Don't convert ' to #' without checking that it's indeed quoting
11496         a lambda.
11498         * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
11499         Use eval-sexp-add-defvars.
11500         (eval-sexp-add-defvars): New fun.
11502         * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
11504         * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
11505         Don't autoload.
11506         (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
11507         than the internal `byte-compile-lambda'.
11508         (defmethod): Don't hide code under quotes.
11509         (eieio-defmethod): New `code' argument.
11511         * emacs-lisp/eieio-comp.el: Remove.
11513         * emacs-lisp/edebug.el (edebug-eval-defun)
11514         (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
11515         (edebug-toggle): Avoid `eval'.
11517         * emacs-lisp/disass.el (disassemble-internal): Handle new
11518         `closure' objects.
11519         (disassemble-1): Handle new byte codes.
11521         * emacs-lisp/cl.el (pushnew): Silence warning.
11523         * emacs-lisp/cl-macs.el (cl-byte-compile-block)
11524         (cl-byte-compile-throw): Remove.
11525         (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
11527         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
11528         closures.
11530         * emacs-lisp/cconv.el: New file.
11532         * emacs-lisp/bytecomp.el: Use lexical binding instead of
11533         a "bytecomp-" prefix.  Macroexpand everything as a separate phase.
11534         (byte-compile-initial-macro-environment):
11535         Handle declare-function here.
11536         (byte-compile--lexical-environment): New var.
11537         (byte-stack-ref, byte-stack-set, byte-discardN)
11538         (byte-discardN-preserve-tos): New lap codes.
11539         (byte-interactive-p): Don't use any more.
11540         (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
11541         New macros.
11542         (byte-compile-lapcode): Use them and handle new lap codes.
11543         (byte-compile-obsolete): Remove.
11544         (byte-compile-arglist-signature): Handle new byte-code arg"lists".
11545         (byte-compile-arglist-warn): Check late def of inlinable funs.
11546         (byte-compile-cl-warn): Don't silence warnings for compiler-macros
11547         since they should have been expanded by now.
11548         (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
11549         (byte-compile-from-buffer): Remove unused second arg.
11550         (byte-compile-preprocess): New function.
11551         (byte-compile-toplevel-file-form): New function to distinguish
11552         file-form calls from outside from file-form calls from hunk-handlers.
11553         (byte-compile-file-form): Simplify.
11554         (byte-compile-file-form-defsubst): Remove.
11555         (byte-compile-file-form-defmumble): Simplify now that
11556         byte-compile-lambda always returns a byte-code-function.
11557         (byte-compile): Preprocess.
11558         (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
11559         Remove, not used any more.
11560         (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
11561         (byte-compile-make-args-desc): New funs.
11562         (byte-compile-lambda): Handle lexical functions.  Always return
11563         a byte-code-function.
11564         (byte-compile-reserved-constants): New var, to make up room for
11565         closed-over variables.
11566         (byte-compile-constants-vector): Obey it.
11567         (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
11568         (byte-compile-macroexpand-declare-function): New function.
11569         (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
11570         byte-code-functions.
11571         (byte-compile-form): Check obsolescence here.
11572         (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
11573         (byte-compile-variable-ref): Remove.
11574         (byte-compile-dynamic-variable-op): New fun.
11575         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
11576         (byte-compile-variable-set): New funs.
11577         (byte-compile-discard): Add 2 args.
11578         (byte-compile-stack-ref, byte-compile-stack-set)
11579         (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
11580         (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
11581         macroexpand-all instead.
11582         (byte-compile-quote-form): Remove.
11583         (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
11584         (byte-compile-bind, byte-compile-unbind): New funs.
11585         (byte-compile-let): Handle let* and lexical binding.
11586         (byte-compile-let*): Remove.
11587         (byte-compile-catch, byte-compile-unwind-protect)
11588         (byte-compile-track-mouse, byte-compile-condition-case):
11589         Handle a new :fun-body form, used for lexical scoping.
11590         (byte-compile-save-window-excursion)
11591         (byte-compile-with-output-to-temp-buffer): Remove.
11592         (byte-compile-defun): Simplify.
11593         (byte-compile-stack-adjustment): New fun.
11594         (byte-compile-out): Use it.
11595         (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
11597         * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
11598         handler any more.
11600         * emacs-lisp/byte-opt.el: Use lexical binding.
11601         (byte-inline-lapcode): Remove (to bytecomp).
11602         (byte-compile-inline-expand): Pay attention to inlining to/from
11603         lexically bound code.
11604         (byte-compile-unfold-lambda): Don't handle byte-code-functions
11605         any more.
11606         (byte-optimize-form-code-walker): Don't handle save-window-excursion
11607         any more and don't call compiler-macros.
11608         (byte-compile-splice-in-already-compiled-code): Remove.
11609         (byte-code): Don't inline any more.
11610         (disassemble-offset): Receive `bytes' as argument rather than via
11611         dynamic scoping.
11612         (byte-compile-tag-number): Declare before first use.
11613         (byte-decompile-bytecode-1): Handle new byte-codes, don't change
11614         `return' even if make-spliceable.
11615         (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
11616         obsolete interactive-p.
11617         (byte-optimize-lapcode): Optimize new lap-codes.
11618         Don't trip up on new form of `byte-constant' lap code.
11620         * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
11622         * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
11624         * custom.el (custom-initialize-default, custom-declare-variable):
11625         Use `defvar'.
11627         * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
11628         New variables.
11629         (compile-onefile, .el.elc, compile-calc, recompile): Use them.
11630         (COMPILE_FIRST): Add macroexp and cconv.
11631         * makefile.w32-in: Mirror changes in Makefile.in.
11633         * vc/cvs-status.el:
11634         * vc/diff-mode.el:
11635         * vc/log-edit.el:
11636         * vc/log-view.el:
11637         * vc/smerge-mode.el:
11638         * textmodes/bibtex-style.el:
11639         * textmodes/css.el:
11640         * startup.el:
11641         * uniquify.el:
11642         * minibuffer.el:
11643         * newcomment.el:
11644         * reveal.el:
11645         * server.el:
11646         * mpc.el:
11647         * emacs-lisp/smie.el:
11648         * doc-view.el:
11649         * dired.el:
11650         * abbrev.el: Use lexical binding.
11652 2011-04-01  Eli Zaretskii  <eliz@gnu.org>
11654         * info.el (info-display-manual): New function.
11656 2011-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11658         * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
11660 2011-03-31  Tassilo Horn  <tassilo@member.fsf.org>
11662         * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
11663         an entry for that server in rcirc-authinfo.  (Bug#8385)
11665 2011-03-31  Glenn Morris  <rgm@gnu.org>
11667         * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
11669         * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
11671 2011-03-30  Christoph Scholtes  <cschol2112@googlemail.com>
11673         * progmodes/python.el (python-default-interpreter)
11674         (python-python-command-args, python-jython-command-args)
11675         (python-which-shell, python-which-args, python-which-bufname)
11676         (python-file-queue, python-comint-output-filter-function)
11677         (python-toggle-shells, python-shell): Remove obsolete defcustoms,
11678         variables and functions.
11680 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11682         * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
11683         (completion-in-region-mode): New minor mode.
11684         (completion-in-region): Use it.
11685         (completion-in-region--data, completion-in-region-mode-map): New vars.
11686         (completion-in-region--postch): New function.
11687         (completion--capf-misbehave-funs, completion--capf-safe-funs):
11688         New vars.
11689         (completion--capf-wrapper): New function.
11690         (completion-at-point): Use it to track well-behavedness of
11691         hook functions.
11692         (completion-help-at-point): New command.
11694 2011-03-30  Jason Merrill  <jason@redhat.com>  (tiny change)
11696         * vc/add-log.el (add-change-log-entry): Don't use whitespace
11697         syntax class to search for whitespace on a single line
11698         (Message-ID: <4D938140.4030905@redhat.com>).
11700 2011-03-30  Leo Liu  <sdl.web@gmail.com>
11702         * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
11703         New commands.
11704         (edit-abbrevs-map): Bind them here.
11705         (write-abbrev-file): New optinal arg VERBOSE.  (Bug#5937)
11707 2011-03-29  Ken Manheimer  <ken.manheimer@gmail.com>
11709         * allout.el (allout-hide-by-annotation, allout-flag-region):
11710         Reduce possibility of overlay leakage by making them volatile.
11712         * allout-widgets.el (allout-widgets-tally): Define as nil so the
11713         hash is not shared between buffers.  Mode initialization is
11714         responsible for giving it a useful starting value.
11715         (allout-item-span): Reduce possibility of overlay leakage by
11716         making them volatile.
11717         (allout-widgets-count-buttons-in-region): Add diagnostic function
11718         for tracking down button overlay leaks.
11720 2011-03-29  Leo Liu  <sdl.web@gmail.com>
11722         * ido.el (ido-read-internal): Use the default history var
11723         minibuffer-history if no HISTORY is specified.
11725 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
11727         * net/imap.el (imap-shell-open, imap-process-connection-type):
11728         Use imap-process-connection-type for 'shell' streams as well as
11729         Kerberos, SSL, other subprocesses.
11731 2011-03-28  Leo Liu  <sdl.web@gmail.com>
11733         * abbrev.el (abbrev-table-empty-p): New function.
11734         (prepare-abbrev-list-buffer): Place empty abbrev tables after
11735         nonempty ones.  (Bug#5937)
11737 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
11739         * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
11741 2011-03-27  Leo Liu  <sdl.web@gmail.com>
11743         * ansi-color.el (ansi-color-names-vector): Allow cons cell value
11744         for foreground and background colors.
11745         (ansi-color-make-color-map): Adapt.
11747 2011-03-25  Leo Liu  <sdl.web@gmail.com>
11749         * midnight.el (midnight-time-float): Remove.  Note it calculates
11750         the microsecond component incorrectly and seconds-to-time does the
11751         same job.
11752         Remove redundant (require 'timer).
11754         * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
11755         (ido-completions): Remove unused arguments.  (Bug#8329)
11757 2011-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11759         * minibuffer.el (completion--flush-all-sorted-completions):
11760         Remove itself from hook.
11761         (completion-at-point): Let the functions perform the completion
11762         immediately and return nil or t.
11763         * comint.el (comint-dynamic-complete-functions): Now identical to
11764         completion-at-point-functions.
11765         (comint-dynamic-list-input-ring): Remove unused var `index'.
11766         (comint--match-partial-filename, comint--unquote&expand-filename):
11767         New funs, split from comint-match-partial-filename.
11768         (comint-dynamic-complete): Use completion-at-point.
11769         (comint-dynamic-complete-filename): Use comint--match-partial-filename.
11771 2011-03-24  Drew Adams  <drew.adams@oracle.com>
11773         * thingatpt.el: Support `defun'.
11775 2011-03-23  Leo Liu  <sdl.web@gmail.com>
11777         * abbrevlist.el: Move to obsolete/abbrevlist.el.
11779         * help-mode.el (help-mode-finish): Tweak regexp.
11781 2011-03-23  Glenn Morris  <rgm@gnu.org>
11783         * eshell/esh-opt.el (eshell-eval-using-options):
11784         Do not bind unused local variable `eshell-option-stub'.
11786         * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
11788 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
11790         * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
11791         keymap variable in `with-no-warnings' to avoid a warning when the
11792         keymap has been already `defconst'ed.
11794 2011-03-22  Leo Liu  <sdl.web@gmail.com>
11796         * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
11797         encode all chars in abbrevs; otherwise use emacs-mule or
11798         utf-8-emacs.  (Bug#8308)
11800 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
11802         * simple.el (backward-delete-char-untabify):
11803         Avoid warning about using `delete-backward-char'.
11805         * image.el (image-type-file-name-regexps): Make it variable.
11806         `imagemagick-register-types' modifies it, and the user may want
11807         to add new extensions for known image types.
11808         (imagemagick-register-types): Throw error if not using ImageMagick.
11810 2011-03-22  Leo Liu  <sdl.web@gmail.com>
11812         * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
11813         located before rcirc-prompt-end-marker.
11814         (rcirc-complete): Error if point is not after rcirc prompt.
11815         Handle the case when table is nil.
11816         (rcirc-user-authenticated): Define to fix compiler warning.
11818 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
11820         * custom.el (custom--inhibit-theme-enable): Make it affect only
11821         custom-theme-set-variables and custom-theme-set-faces.
11822         (provide-theme): Ignore custom--inhibit-theme-enable.
11823         (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
11824         (custom-enabling-themes): Delete variable.
11825         (enable-theme): Accept only loaded themes as arguments.
11826         Ignore the special custom-enabled-themes variable.
11827         (custom-enabled-themes): Forbid themes from setting this.
11828         Eliminate use of custom-enabling-themes.
11829         (custom-push-theme): Quote "changed" custom var entry.
11831 2011-03-21  Leo Liu  <sdl.web@gmail.com>
11833         * ido.el (ido-read-internal): Add ido-selected to history instead
11834         of user input.
11836 2011-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11838         * subr.el (deferred-action-list, deferred-action-function):
11839         Mark obsolete.
11841 2011-03-21  Leo Liu  <sdl.web@gmail.com>
11843         * vc/log-view.el: Remove (require 'wid-edit), not needed after the
11844         change on 2011-02-13 (bug#8309).
11846         * minibuffer.el (read-file-name-function): Change default value.
11847         (read-file-name--defaults): Rename from read-file-name-defaults.
11848         (read-file-name-default): Rename from read-file-name.
11849         (read-file-name): Call read-file-name-function.
11851 2011-03-21  Glenn Morris  <rgm@gnu.org>
11853         * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
11854         Doc fixes.
11856 2011-03-21  Chong Yidong  <cyd@stupidchicken.com>
11858         * cus-theme.el: Add missing provide statement.
11859         (customize-create-theme): Extract theme value correctly.
11860         (custom-theme-visit-theme): Autoload.
11861         (customize-create-theme): Prompt before inserting default faces.
11863 2011-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
11865         * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
11866         units and musical notes.
11868 2011-03-20  Leo Liu  <sdl.web@gmail.com>
11870         * ido.el (ido-read-internal): Use completing-read-default.
11871         (ido-completing-read): Fix compatibility with completing-read.
11873 2011-03-20  Christian Ohler  <ohler@gnu.org>
11875         * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
11876         (ert-delete-all-tests): Use `called-interactively-p' rather than
11877         `interactive-p'.
11878         (ert--make-xrefs-region): Respect END.
11880 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
11882         * dired-aux.el (dired-create-directory): Signal an error if the
11883         directory already exists (Bug#8246).
11885         * facemenu.el (list-colors-display): Call list-faces-display
11886         inside with-help-window.
11887         (list-colors-print): Use display property to align the final
11888         column, instead of checking window-width.
11890 2011-03-19  Eli Zaretskii  <eliz@gnu.org>
11892         * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
11893         windows-nt systems.
11894         (emerge-protect-metachars): Quote correctly for ms-dos and
11895         windows-nt systems.
11897 2011-03-19  Ralph Schleicher  <rs@ralph-schleicher.de>
11899         * info.el (info-initialize): Replace all uses of `:' with
11900         path-separator for compatibility with non-Unix systems.
11901         Cache quoting of path-separator.  (Bug#8258)
11903 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
11905         * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
11906         (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
11907         (mouse-avoidance-mode): Fix typos in docstrings.
11909 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
11911         * startup.el (package-subdirectory-regexp): Move from package.el.
11912         Omit \\` and \\', and let callers add them.
11914         * emacs-lisp/package.el (package-strip-version)
11915         (package-load-all-descriptors): Add \\` and \\' to
11916         package-subdirectory-regexp before using it.
11917         (package-untar-buffer): New arg DIR; ensure that file untars only
11918         into this expected directory.  Remove superfluous delete-region.
11919         (package-unpack): Caller changed.
11920         (package-tar-file-info): Use package-subdirectory-regexp.
11922 2011-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11924         * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
11925         diff-mode-shared-map (bug#8284).
11926         (diff-mode-shared-map): Re-introduce some bindings that were problematic.
11928 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11930         * calendar/time-date.el (format-seconds): Use assoc instead of
11931         assoc-string, since assoc-string doesn't exist in XEmacs.
11933 2011-03-17  Juanma Barranquero  <lekktu@gmail.com>
11935         * custom.el (custom-known-themes): Reflow docstring.
11936         (custom-theme-load-path): Fix typo in docstring.
11937         (load-theme): Fix typo in error message.
11938         (custom-available-themes, custom-variable-theme-value):
11939         Use `let', not `let*'.
11941 2011-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
11943         * calc/README: Mention inclusion of musical notes.
11945         * calc/calc-units.el (calc-lu-quant): Rename from
11946         `calc-logunits-quantity'.
11947         (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
11948         (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
11949         (calc-db): Rename from `calc-dblevel'.
11950         (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
11951         (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
11952         (calc-np): Rename from `calc-nplevel'.
11953         (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
11954         (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
11955         (calc-lu-plus): Rename from `calc-logunits-add'.
11956         (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
11957         (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
11958         (calc-lu-minus): Rename from `calc-logunits-sub'.
11959         (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
11960         (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
11961         (calc-lu-times): Rename from `calc-logunits-mul'.
11962         (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
11963         (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
11964         (calc-lu-divide): Rename from `calc-logunits-div'.
11965         (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
11966         (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
11968         * calc/calc-ext.el (calc-init-extensions): Update the names of the
11969         functions being autoloaded.
11971         * calc/calc.el (calc-lu-power-reference): Rename from
11972         `calc-logunits-power-reference'.
11973         (calc-lu-field-reference): Rename from
11974         `calc-logunits-field-reference'.
11976         * calc/calc-help.el (calc-l-prefix-help):
11977         Mention musical note functions.
11979 2011-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11981         * minibuffer.el (completion-all-sorted-completions):
11982         Use :completion-cycle-penalty text property if present.
11984 2011-03-16  Ken Manheimer  <ken.manheimer@gmail.com>
11986         * allout.el (allout-yank-processing): Adjust for new rebulleting
11987         regime so bullet being yanked is used without prompting the user
11988         for a choice.
11990 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
11992         * startup.el (command-line): Warn the user that _emacs is deprecated.
11994 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
11996         * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
11997         (delphi-verbose, delphi-comment-face, delphi-string-face)
11998         (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
11999         (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
12000         (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
12001         (delphi-new-comment-line, delphi-font-lock-defaults)
12002         (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
12003         Fix typos in docstrings.
12005 2011-03-15  Ken Manheimer  <ken.manheimer@gmail.com>
12007         * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
12008         Invert the roles of character and string values for INSTEAD, so a
12009         string is used for the more common case of a defaulting prompt.
12011 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12013         * progmodes/ruby-mode.el (ruby-backward-sexp):
12014         * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
12015         * play/gamegrid.el (gamegrid-make-face):
12016         * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
12017         (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
12018         * notifications.el (notifications-notify):
12019         * net/xesam.el (xesam-search-engines):
12020         * net/quickurl.el (quickurl-list-insert):
12021         * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
12023 2011-03-15  Chong Yidong  <cyd@stupidchicken.com>
12025         * startup.el (command-line): Update package subdirectory regexp.
12027 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12029         * allout.el (allout-abbreviate-flattened-numbering)
12030         (allout-mode-deactivate-hook): Fix up obsolescence "date".
12032         * subr.el (read-char-choice): Only show the cursor after the prompt,
12033         not after the answer.
12035 2011-03-15  Kevin Ryde  <user42@zip.com.au>
12037         * help-fns.el (variable-at-point): Skip leading quotes, if any
12038         (bug#8253).
12040 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12042         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
12043         warning message.
12045 2011-03-14  Michael Albinus  <michael.albinus@gmx.de>
12047         * shell.el (shell): When called interactively, offer to change the
12048         shell file name on remote hosts.
12050 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
12052         * net/ldap.el (ldap-search-internal): Add `auth-source-search'
12053         integration for LDAP parameters.  The host, base, user or binddn,
12054         and secret tokens can be specified in a netrc file, for instance.
12055         This is optional because an `auth-source' parameter must be
12056         specified in the search attributes.
12058 2011-03-13  Juanma Barranquero  <lekktu@gmail.com>
12060         * help.el (describe-mode): Link to the mode's definition (bug#8185).
12062 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12064         * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
12065         into declaration.  Remove redundant and harmful binding.
12067 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
12069         * files.el (file-ownership-preserved-p): Pass `integer' as an
12070         explicit 2nd argument to `file-attributes'.  If the file's owner
12071         is the Administrators group on Windows, and the current user is
12072         Administrator, consider that a match.
12074         * server.el (server-ensure-safe-dir): Consider server directory
12075         safe on MS-Windows if its owner is the Administrators group while
12076         the current Emacs user is Administrator.  Use `=' to compare
12077         numerical UIDs, since they could be integers or floats.
12079 2011-03-12  Juanma Barranquero  <lekktu@gmail.com>
12081         * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
12083 2011-03-12  Michael Albinus  <michael.albinus@gmx.de>
12085         Sync with Tramp 2.2.1.
12087         * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
12089         * net/trampver.el: Update release number.
12091 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12093         * progmodes/compile.el (compilation--previous-directory): Fix up
12094         various nil/dead-marker mismatches (bug#8014).
12095         (compilation-directory-properties, compilation-error-properties):
12096         Don't call it at a position past the one we're about to change.
12098         * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
12099         Disable obsolescence warnings in the file that declares it.
12101 2011-03-11  Ken Manheimer  <ken.manheimer@gmail.com>
12103         * allout-widgets.el (allout-widgets-tally):
12104         Initialize allout-widgets-tally as a hash table rather than nil to
12105         prevent mode-line redisplay warnings.  Also, clarify the module
12106         description and fix a comment typo.
12108 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
12110         * help-fns.el (describe-variable): Don't complete keywords.
12111         Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
12113 2011-03-10  Chong Yidong  <cyd@stupidchicken.com>
12115         * emacs-lisp/package.el (package-version-join): Impose a standard
12116         string representation for pre/alpha/beta version lists.
12117         (package-unpack-single): Standardize the directory name by passing
12118         it through package-version-join.
12119         (package-strip-rcs-id): Accept any version string that does not
12120         signal an error in version-to-list.
12122 2011-03-10  Michael Albinus  <michael.albinus@gmx.de>
12124         * simple.el (delete-trailing-whitespace): Return nil for the
12125         benefit of `write-file-functions'.
12127 2011-03-10  Glenn Morris  <rgm@gnu.org>
12129         * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
12131         * vc/vc-git.el (vc-git-program): New option.
12132         (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
12133         (vc-git--call): Use it.
12135         * eshell/esh-util.el (eshell-condition-case): Doc fix.
12137         * cus-edit.el (Custom-newline): If no button at point, look
12138         for a subgroup button at start-of-line.  (Bug#2298)
12140         * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
12142 2011-03-10  Julien Danjou  <julien@danjou.info>
12144         * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
12145         `cursor-type' is nil.
12147 2011-03-09  Jay Belanger  <jay.p.belanger@gmail.com>
12149         * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
12151 2011-03-09  Ken Manheimer  <ken.manheimer@gmail.com>
12153         * allout.el: Change so yank of distinctive-bullet items
12154         preserves the existing header prefix, rebulleting it if necessary,
12155         rather than replacing it.  This is necessary for proper operation
12156         of cooperative addons like allout-widgets.
12157         (allout-make-topic-prefix, allout-rebullet-heading):
12158         Change SOLICIT arg to INSTEAD, and interpret additionally a string
12159         value as alternate bullet to be used, instead of prompting the user
12160         for a bullet character.
12162 2011-03-09  Michael Albinus  <michael.albinus@gmx.de>
12164         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
12165         Do not use `tramp-file-name-port', because this returns also
12166         `tramp-default-port'.
12168 2011-03-09  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
12170         * net/rcirc.el (rcirc-handler-001): Remove useless
12171         with-rcirc-process-buffer.
12172         (rcirc-check-auth-status): Swap arguments to string-match.
12174 2011-03-09  Glenn Morris  <rgm@gnu.org>
12176         * shell.el (shell-mode):
12177         Set comint-input-ring-size from HISTSIZE.  (Bug#7889)
12179         * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
12180         Check for GDBHISTFILE, HISTSIZE, etc.  (Bug#7889)
12182 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
12184         * emacs-lisp/package.el (package-refresh-contents)
12185         (package-menu-execute): Use condition-case-no-debug.
12187 2011-03-08  Michael Albinus  <michael.albinus@gmx.de>
12189         * simple.el (shell-command-to-string): Use `process-file'.
12191         * emacs-lisp/package.el (package-tar-file-info): Handle also
12192         remote files.
12194         * emacs-lisp/package-x.el (package-upload-buffer-internal):
12195         Use `equal' for upload base check.
12197 2011-03-08  Arni Magnusson  <arnima@hafro.is>  (tiny change)
12199         * textmodes/texinfo.el (texinfo-environments):
12200         Add deftypecv, deftypeivar, deftypemethod, deftypeop, html.  (Bug#2783)
12202 2011-03-08  Glenn Morris  <rgm@gnu.org>
12204         * cus-start.el (cursor-in-non-selected-windows):
12205         Fix :set quoting oddness.  (Bug#8192)
12207         * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
12208         in some setf expressions.  (Bug#2159)
12210 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
12212         * custom.el (custom-available-themes): Return themes in
12213         alphabetical order.
12215 See ChangeLog.15 for earlier changes.
12217 ;; Local Variables:
12218 ;; coding: utf-8
12219 ;; End:
12221   Copyright (C) 2011-2012  Free Software Foundation, Inc.
12223   This file is part of GNU Emacs.
12225   GNU Emacs is free software: you can redistribute it and/or modify
12226   it under the terms of the GNU General Public License as published by
12227   the Free Software Foundation, either version 3 of the License, or
12228   (at your option) any later version.
12230   GNU Emacs is distributed in the hope that it will be useful,
12231   but WITHOUT ANY WARRANTY; without even the implied warranty of
12232   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12233   GNU General Public License for more details.
12235   You should have received a copy of the GNU General Public License
12236   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.