* lisp/emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
[emacs.git] / lisp / ChangeLog
blobb9e633f976d9c38cf1c247ff21f89bb913f8b2dc
1 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
5 2012-12-09  Eli Zaretskii  <eliz@gnu.org>
7         Parallelize byte compilation on MS-Windows.
8         * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
9         (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
10         (WINS_BASIC): Define as concatenation of the above.
11         (compile): Subdivide into 4 separate and independent jobs that can
12         be run in parallel.
13         (compile0-CMD, compile0-SH): New targets for compiling
14         COMPILE_FIRST files, which are prerequisites for the rest of the
15         byte-compilation.
16         (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
17         New targets for parallel compilation with cmd.exe.
18         (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
19         compiling under a Unixy shell.
21 2012-12-09  Chong Yidong  <cyd@gnu.org>
23         * simple.el (set-mark-default-inactive): Delete this
24         accidentally-introduced option.
25         (set-mark-command, exchange-point-and-mark): Remove calls.
27 2012-12-09  Glenn Morris  <rgm@gnu.org>
29         * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
30         Respect a defcustom's :set function, if appropriate.  (Bug#109)
31         (eval-defun): Doc fix.
33 2012-12-08  Juri Linkov  <juri@jurta.org>
35         * info.el (Info-copy-current-node-name, Info-breadcrumbs)
36         (Info-fontify-node, Info-bookmark-make-record): Remove the
37         file extension from Info-current-file (Bug#13016).
39 2012-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
41         * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
42         point, still provide some default.
43         (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
44         names, since we don't use it right now.  Actually return the list.
45         (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
47 2012-12-07  Chong Yidong  <cyd@gnu.org>
49         * novice.el (disabled-command-function): Remove a spurious help
50         xref (Bug#13043).  Suggested by Kelly Dean.
52         * subr.el (text-clone-maintain): Fix clone overlay deletion when a
53         syntax is specified (Bug#13025).
55         * info.el (Info-set-mode-line): Remove the file extension from
56         Info-current-file if there is one (Bug#13016).
58 2012-12-07  Glenn Morris  <rgm@gnu.org>
60         * mail/rmail.el (rmail-mime-decoded): New permanent local.
61         (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
62         * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
63         and rmail-mime-decoded.  (Bug#9841)
65         * mail/unrmail.el (unrmail-mbox-format): New option.  (Bug#6574)
66         (batch-unrmail, unrmail): Doc fixes.
67         (unrmail): Respect unrmail-mbox-format.
68         * mail/rmail.el (rmail-mbox-format): New option.
69         (rmail-show-message-1): Respect rmail-mbox-format.
71 2012-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
73         * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
75 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
77         Further cleanup of the "cl-" namespace.  Fit CL in 80 columns.
78         * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
79         (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
80         (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
81         (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
82         (cl-progv): Don't rely on dynamic scoping to find the body.
83         * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
84         (cl--proclaims-deferred): Rename from the "cl-" prefix.
85         (cl-declaim): Use backquotes.
86         * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
87         Use "cl--" prefix for the object's tag.
89         * ses.el: Use advice-add/remove.
90         (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
91         (copy-region-as-kill, yank): Use advice-add.
92         (ses-unload-function): Use advice-remove.
94 2012-12-06  Jonas Bernoulli  <jonas@bernoul.li>
96         * button.el: Make them work in header-lines (bug#12817).
97         (button-map): Add bindings for header-line and mode-line use.
98         (button-get, button-put, button-label): `button' may now be a string.
99         (button-activate): Don't make it a defsubst.
100         (button--area-button-p, button--area-button-string): New functions.
101         (make-text-button): Fix the return value when `beg' was a string.
102         (push-button): Handle the mode-line case.
104 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
106         * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
107         (sql-signum): Remove.  Use `cl-signum' instead.
108         (sql-read-passwd): Remove; use read-passwd instread.
109         (sql-get-login-ext): Use read-string.
110         (sql-get-login): Use dolist and pcase.
111         (sql--completion-table): Rename from sql-try-completion.
112         Use complete-with-action.
113         (sql-mode): Don't change abbrev-all-caps globally.
114         (sql-connect): Don't rely on dynamic scoping for `new-name'.
115         (sql-postgres-completion-object): Initialize vars in their `let'.
116         (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
117         (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
118         (sql-comint-interbase): Use a single append, without setq.
119         (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
121         * hi-lock.el: Rework the default face and the serialize regexp code.
122         (hi-lock--auto-select-face-defaults): Remove.
123         (hi-lock-string-serialize-serial): Remove.
124         (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
125         make weak.
126         (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
127         equal string.
128         (hi-lock-set-pattern): Adjust accordingly.
129         (hi-lock--regexps-at-point): Simplify accordingly.
130         (hi-lock--auto-select-face-defaults): Remove.
131         (hi-lock--last-face): New var to replace it.
132         (hi-lock-read-face-name): Rewrite (bug#11095).
133         (hi-lock-unface-buffer): Arrange for the face to be the next default.
135 2012-12-06  Michael Albinus  <michael.albinus@gmx.de>
137         * net/tramp.el (tramp-replace-environment-variables):
138         Hide compiler warning.
139         (tramp-file-name-for-operation): Remove `executable-find',
140         `start-process', `call-process' and `call-process-region'.
142         * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
144         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
145         compatibility.
147         * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
149 2012-12-06  Chong Yidong  <cyd@gnu.org>
151         * ffap.el (ffap-replace-file-component): Fix typo.
153 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
155         * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
156         fix open-paren-like token test (bug#12785).
158 2012-12-06  Glenn Morris  <rgm@gnu.org>
160         * mail/rmailsum.el (rmail-new-summary): Tweak for
161         rmail-maybe-display-summary changing buffer.  (Bug#13066)
163 2012-12-06  Juri Linkov  <juri@jurta.org>
165         * info.el (Info-fontify-node): Don't hide the last newline.
166         (Bug#12272)
168 2012-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
170         * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
171         so as to enable message-read-from-minibuffer to expand mail aliases.
173 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
175         * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
176         the `intangible' property.
177         Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
179 2012-12-05  Deniz Dogan  <deniz@dogan.se>
181         * net/rcirc.el (rcirc-urls): Update documentation.
182         (rcirc-condition-filter): New function.
183         (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
184         and exclude consecutive duplicate URLs (Bug#6082).
186 2012-12-05  Michael Albinus  <michael.albinus@gmx.de>
188         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
189         Check return code of copy command.
191         * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
192         Use group `tramp'.  Add version.
194 2012-12-05  Chong Yidong  <cyd@gnu.org>
196         * ffap.el (ffap-url-regexp): Don't require matching at front of
197         string (Bug#4952).
198         (ffap-url-p): If only a substring matches, return that.
199         (ffap-url-at-point): Use the return value of ffap-url-p.
200         (ffap-read-file-or-url, ffap-read-file-or-url-internal)
201         (find-file-at-point, dired-at-point, dired-at-point-prompter)
202         (ffap-guess-file-name-at-point): Likewise.
203         (ffap-replace-file-component): Fix typo.
205         * info.el (info-display-manual): Add existing Info buffers, whose
206         files may not be in Info-directory-list, to the completion.
207         (info--manual-names): New helper function.
209 2012-12-05  Glenn Morris  <rgm@gnu.org>
211         * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
212         New functions, for detecting and resolving conflicts.  (Bug#10709)
214 2012-12-04  Jambunathan K  <kjambunathan@gmail.com>
216         * hi-lock.el (hi-lock-auto-select-face): New user variable.
217         (hi-lock-auto-select-face-defaults): New buffer local variable.
218         (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
219         (hi-lock-unface-buffer): Prompt user with useful defaults.
220         With prefix arg, unhighlight all hi-lock patterns in buffer.
222 2012-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
224         * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
226 2012-12-04  Michael Albinus  <michael.albinus@gmx.de>
228         * Makefile.in (TRAMP_SRC):
229         * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
231 2012-12-04  Juergen Hoetzel  <juergen@archlinux.org>
233         * net/tramp-adb.el: New package.
235 2012-12-04  Chong Yidong  <cyd@gnu.org>
237         * terminal.el: Move to obsolete/.
239         * longlines.el: Move to obsolete/.
241         * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
242         Remove code referring to longlines mode.
244 2012-12-03  Juri Linkov  <juri@jurta.org>
246         * sort.el (delete-duplicate-lines): New command.  (Bug#13032)
248 2012-12-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
250         * textmodes/ispell.el (ispell-init-process)
251         (ispell-start-process, ispell-internal-change-dictionary):
252         Make sure personal dictionary name is expanded after initial
253         `default-directory' value. Use expanded strings for
254         keep/restart checks and for value (Bug#13019).
256 2012-12-03  Jay Belanger  <jay.p.belanger@gmail.com>
258         * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
260 2012-12-03  Leo Liu  <sdl.web@gmail.com>
262         * files.el (dir-locals-read-from-file): Check file non-empty
263         before reading.  (Bug#13038)
265 2012-12-03  Glenn Morris  <rgm@gnu.org>
267         * jka-cmpr-hook.el (jka-compr-get-compression-info):
268         Remove any version extension before checking filename.  (Bug#13006)
269         (jka-compr-compression-info-list): Belated :version bump.
271 2012-12-03  Chong Yidong  <cyd@gnu.org>
273         * simple.el (transient-mark-mode): Doc fix (Bug#11523).
275         * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
276         (buffer-menu): Doc fix (Bug#12294).
278 2012-12-03  Roland Winkler  <winkler@gnu.org>
280         * calendar/diary-lib.el (diary-header-line-format): Use keybinding
281         of diary-show-all-entries in the diary buffer (Bug#12994).
283 2012-12-03  Michael Albinus  <michael.albinus@gmx.de>
285         * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
286         "<STDIN>".  This is binary safe.
288 2012-12-03  Jay Belanger  <jay.p.belanger@gmail.com>
290         * calc/calc-forms.el (math-absolute-from-iso-dt)
291         (math-date-to-iso-dt, math-parse-iso-date-validate)
292         (math-iso-dt-to-date): New functions.
293         (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
294         (math-fd-isoweekday): New variables.
295         (calc-date-notation, math-parse-standard-date, math-format-date)
296         (math-format-date-part): Add support for more formatting codes.
298 2012-12-02  Dmitry Gutov  <dgutov@yandex.ru>
300         * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
301         current buffer's file name when called interactively (Bug#12488).
303 2012-12-02  Juri Linkov  <juri@jurta.org>
305         * info.el (info-display-manual): Don't clobber an existing Info
306         buffer (Bug#10770).  Add completion (Bug#10771).
308 2012-12-01  Yuya Nishihara  <yuya@tcha.org>  (tiny change)
310         * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
311         before using it for comparison (Bug#5297).
313 2012-12-01  Jari Aalto  <jari.aalto@cante.net>
315         * textmodes/css-mode.el (css-current-defun-name): New function.
316         (css-mode): Use it.
318         * textmodes/sgml-mode.el (html-current-defun-name): New function.
319         (html-mode): Use it.
321 2012-12-01  Chong Yidong  <cyd@gnu.org>
323         Modularize add-log-current-defun (Bug#2224).
324         Suggested by Jari Aalto.
326         * vc/add-log.el (add-log-current-defun-function): Doc fix.
327         (add-log-current-defun): Move mode-specific code to other files.
328         (add-log-lisp-like-modes, add-log-c-like-modes)
329         (add-log-tex-like-modes): Variables deleted.
331         * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
332         (lisp-mode-variables): Use it.
334         * progmodes/cc-mode.el (c-common-init):
335         * progmodes/cperl-mode.el (cperl-mode): Set a value for
336         add-log-current-defun-function.
338         * progmodes/m4-mode.el (m4-current-defun-name): New function.
339         (m4-mode): Use it.
341         * progmodes/perl-mode.el (perl-current-defun-name): New.
342         (perl-mode): Use it.
344         * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
345         Use lisp-current-defun-name.
347         * textmodes/tex-mode.el (tex-current-defun-name): New.
348         (tex-common-initialization): Use it.
350         * textmodes/texinfo.el (texinfo-current-defun-name): New.
351         (texinfo-mode): Use it.
353 2012-12-01  Chong Yidong  <cyd@gnu.org>
355         * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
356         * progmodes/autoconf.el (autoconf-mode):
357         * progmodes/js.el (js-mode):
358         * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
359         (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
360         * progmodes/perl-mode.el (perl-mode):
361         * progmodes/sh-script.el (sh-mode, sh-set-shell):
362         * textmodes/css-mode.el (css-mode):
363         * textmodes/sgml-mode.el (html-mode, sgml-mode)
364         (sgml-tags-invisible, sgml-guess-indent):
365         * textmodes/tex-mode.el (tex-common-initialization)
366         (latex-complete-bibtex-keys, tex-shell, tex-main-file)
367         (doctex-mode, plain-tex-mode, latex-mode):
368         * textmodes/texinfo.el (texinfo-mode): Use setq-local.
370 2012-12-01  Kirk Kelsey  <kirk.kelsey@0x4b.net>
372         * vc/vc-hg.el (vc-hg-next-revision):
373         Ensure use of default "tip" output format.  (Bug#6968)
375 2012-12-01  Kim F. Storm  <storm@cua.dk>
377         * startup.el (fancy-startup-tail): Add a clickable link
378         (Bug#2176).
380 2012-12-01  Chong Yidong  <cyd@gnu.org>
382         * startup.el (fancy-startup-tail): Improve the message about
383         auto-save files (Bug#2176).
385         * files.el (recover-session): Improve the descriptive message, and
386         use substitute-command-keys.
388 2012-12-01  Glenn Morris  <rgm@gnu.org>
390         * ido.el (ido-file-internal):
391         Handle other-window, other-frame for dired.  (Bug#13036)
393 2012-11-30  Glenn Morris  <rgm@gnu.org>
395         * icomplete.el (icomplete-separator): Fix :version.
397 2012-11-30  Chong Yidong  <cyd@gnu.org>
399         * shell.el (shell): For C-u M-x shell, use an inactive shell
400         buffer as the default (Bug#1975).
401         (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
402         (shell-mode): Use them to reapply ansi colorization if Shell mode
403         is re-enabled.
405 2012-11-30  Yuriy Vostrikov  <delamonpansie@gmail.com>  (tiny change)
407         * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
409 2012-11-30  Samuel Bronson  <naesten@gmail.com>
411         * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
412         flag to xargs, for compatibility with BSD xargs (Bug#11703).
414 2012-11-30  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
416         * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
417         by move-to-column (Bug#3234).
419 2012-11-30  Chong Yidong  <cyd@gnu.org>
421         * longlines.el (longlines-wrap-line, longlines-encode-region):
422         Preserve text properties (Bug#1425).
424 2012-11-30  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
426         * vc/vc.el (vc-register): Allow registering a file which is
427         already registered with a different backend (Bug#10589).
429 2012-11-29  Jambunathan K  <kjambunathan@gmail.com>
430             Stefan Monnier  <monnier@iro.umontreal.ca>
432         * icomplete.el: Change separator; add ido-style commands.
433         (icomplete-show-key-bindings): Remove custom var.
434         (icomplete-get-keys): Remove function.
435         (icomplete-forward-completions, icomplete-backward-completions):
436         New commands.
437         (icomplete-minibuffer-map): New var.
438         (icomplete-minibuffer-setup): Use it.
439         (icomplete-exhibit): Don't delay if the list of completions is known.
440         (icomplete-separator): New custom.
441         (icomplete-completions): Use it.
442         * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
443         (minibuffer-force-complete-and-exit): New command.
444         (minibuffer--complete-and-exit): New function extracted from
445         minibuffer-complete-and-exit.
446         (minibuffer-complete-and-exit): Use it.
448         * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
449         error message when the file doesn't exist (bug#12974).
451 2012-11-29  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
453         * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
455 2012-11-29  Glenn Morris  <rgm@gnu.org>
457         * files.el (hack-dir-local-variables): Warn if try to set
458         coding via dir-locals, since it doesn't work.  (Bug#7169)
460         Add desktop support for restoring vc-dir buffers.  (Bug#10606)
461         * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
462         Set buffer-local value of desktop-save-buffer.
463         (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
464         New functions.
465         (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
466         * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
468         * files.el (inhibit-local-variables-ignore-case): New.  (Bug#10610)
469         (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
470         Doc fix.
471         (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
472         Doc fixes.
474 2012-11-28  Jay Belanger  <jay.p.belanger@gmail.com>
476         * calc/calc-forms.el (calc-date-notation): Fix regexp
477         used to find time codes.  Fix symbol for seconds.
479 2012-11-27  Glenn Morris  <rgm@gnu.org>
481         * emacs-lisp/derived.el (derived-mode-make-docstring):
482         Don't mention "abbrev" or "syntax" if nil.  (Bug#11277)
484 2012-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
486         * textmodes/table.el (table-insert): Don't use `symbol-name' on
487         lexically scoped variables (bug#13005).
489 2012-11-27  Glenn Morris  <rgm@gnu.org>
491         * vc/vc-hooks.el (vc-mistrust-permissions):
492         Default to t, to avoid data-loss.  (Bug#11490)
494 2012-11-27  Fabián Ezequiel Gallina  <fgallina@cuca>
496         * progmodes/python.el (python-indent-guess-indent-offset):
497         If indentation is guessed make python-indent-offset buffer-local.
499         Fix Imenu regression.
500         * progmodes/python.el (python-nav-beginning-of-defun):
501         Fix forward movement when statement(s) separates point from defun.
502         (python-imenu-prev-index-position): New function.
504 2012-11-27  Eli Zaretskii  <eliz@gnu.org>
506         * subr.el (buffer-file-type): Declare with defvar-local.  Doc fix.
508         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
509         Don't set buffer-file-type.  Return nil.  (Bug#12989)
511 2012-11-27  Glenn Morris  <rgm@gnu.org>
513         * hippie-exp.el (hippie-expand-try-functions-list):
514         Re-autoload it.  (Bug#12982)
516 2012-11-27  Eli Zaretskii  <eliz@gnu.org>
518         * descr-text.el (describe-char-padded-string):
519         Call internal-char-font only on GUI frames.  (Bug#11964)
521 2012-11-27  Andreas Schwab  <schwab@linux-m68k.org>
523         * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
524         and obsoletion message.
526 2012-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
528         * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
529         the constructs to keep outside of the `cl-block' (bug#12977).
531 2012-11-27  Chong Yidong  <cyd@gnu.org>
533         * mouse.el (mouse-drag-line): Even if the line is not draggable,
534         keep reading until we get the up-event anyway, in order to process
535         the up-event for mouse-1-click-follows-link (Bug#12971).
537 2012-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
539         * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
540         base function is not yet defined (bug#12965).
541         (ad-activate-advised-definition): Use ad-compile-function.
542         (ad-activate): Use cond.
544 2012-11-25  Leo Liu  <sdl.web@gmail.com>
546         * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
547         (Bug#12979)
549 2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
551         * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
552         reftex-section-info-function in order to be compatible with
553         Texinfo integration.
555         * textmodes/reftex.el (reftex-section-pre-regexp)
556         (reftex-section-post-regexp, reftex-section-info-function):
557         New variable.
558         (reftex-compile-variables): Use variables reftex-section-pre-regexp,
559         reftex-section-post-regexp, and reftex-section-info-function in order
560         to be compatible with Texinfo integration.
562         * textmodes/reftex-toc.el (reftex-toc-promote-action):
563         use reftex-section-pre-regexp variable in order to be compatible with
564         Texinfo integration.
566 2012-11-25  Chong Yidong  <cyd@gnu.org>
568         * faces.el: Make face-spec-set more analogous to setq.
569         (face-spec-set): Change the third arg to specify whether this
570         function is being called via defface, customize, or a third party.
571         Set the appropriate symbol properties.  Clear the override spec if
572         setting via Custom.  Initialize face if necessary.  (Bug#4988)
573         (face-spec-recalc): Allow theme faces to completely replace the
574         defface spec, in the same way as custom faces (Bug#8454).
576         * cus-face.el (custom-declare-face): Move face initialization to
577         face-spec-set.
578         (custom-theme-set-faces): Don't initialize the face name here, as
579         that is now done in face-spec-set.
581         * cus-edit.el (custom-face-set, custom-face-mark-to-save)
582         (custom-face-reset-saved, custom-face-mark-to-reset-standard):
583         Simplify by using the new arg to face-spec-set.
585         * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
586         reset face-override-spec too, and use custom-declare-face.
588 2012-11-24  Jan Djärv  <jan.h.d@swipnet.se>
590         * term/ns-win.el (ns-initialize-window-system): Move creation of
591         fontsets here (Bug#11964).
593 2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
595         * ses.el (ses-rename-cell): Correct bug on mode-line update after
596         cell renaming.
598 2012-11-24  Chong Yidong  <cyd@gnu.org>
600         * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
601         obsolete.
603         * custom.el (custom-theme-set-variables): Use a topological sort
604         for ordering by custom dependencies (Bug#12952).
605         (custom--sort-vars, custom--sort-vars-1): New functions.
607 2012-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
609         * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
610         lexical-binding (bug#12938).
612 2012-11-24  Wolfgang Jenkner  <wjenkner@inode.at>
614         * image-mode.el (image-transform-check-size): Use assertions only
615         for images of type imagemagick.
617         Otherwise no error, image-transform-fit-to-{width,height} is
618         silently ignored, as before.  Doc fix.
620 2012-11-24  Chong Yidong  <cyd@gnu.org>
622         * faces.el (color-defined-p): Doc fix (Bug#12853).
624 2012-11-24  Juri Linkov  <juri@jurta.org>
626         * dired.el (dired-mark): Add optional arg `interactive'.
627         Check for `use-region-p' if `interactive' is non-nil.
628         (dired-unmark, dired-flag-file-deletion): Add optional arg
629         `interactive'.  Call `dired-mark' with the arg `interactive'.
630         (Bug#10624)
632         * wdired.el: Revert 2012-10-17 change partly and replace it with
633         Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
634         (wdired-finish-edit): Add marks for new file names to
635         `wdired-old-marks'.  Restore marks using `dired-mark-remembered'
636         after `revert-buffer'.
637         (wdired-do-renames): Remove calls to `dired-remove-file',
638         `dired-add-file', `dired-add-entry'.  (Bug#11795)
640 2012-11-24  Alan Mackenzie  <acm@muc.de>
642         * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
644         Fix bugs in the state cache.  Enhance a debugging mechanism.
645         * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
646         "brace at column zero" strategy for C++.
647         (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
648         (c-parse-state-point): New variable.
649         (c-record-parse-state-state): Record old parse state with
650         `copy-tree'.  Record previous value of point.
651         (c-debug-parse-state-double-cons): New debugging function.
652         (c-debug-parse-state): Call the above new function.
653         (c-toggle-parse-state-debug): Output a confirmatory message.
655         * progmodes/cc-mode.el (c-before-change, c-after-change):
656         Call c-invalidate-state-cache from `c-before-change' instead of
657         `c-after-change'.
659 2012-11-23  Chong Yidong  <cyd@gnu.org>
661         * find-cmd.el (find-constituents): Add executable, ipath,
662         readable, samefile, writable, daystart, regextype (Bug#12856).
664 2012-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
666         * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
668 2012-11-22  Paul Eggert  <eggert@cs.ucla.edu>
670         * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
671         definition.  This fixes a bootstrap failure.
672         (calc-gregorian-switch): In menu, put dates before regions.
673         This is easier to follow, lines up better in the menu, and lets us
674         coalesce regions that switch at the same time.  Give country
675         names, not "Vatican", as that's better for non-expert users.
676         Use names that are stable between the date of switch and now, e.g.,
677         Bohemia and Moravia (which existed then and now) and not
678         Czechoslovakia (which didn't exist then and doesn't exist now).
679         What is now the U.S. mostly did not switch at the same time as
680         Britain, so omit the U.S.  Correct spelling of "Britain".
681         Catholic Switzerland was too much of a mess, so omit it.
683 2012-11-22  Jay Belanger  <jay.p.belanger@gmail.com>
685         * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
686         after the variable is changed.
688 2012-11-21  Daniel Colascione  <dancol@dancol.org>
690         * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
691         in SQL declarations for font-lock.
692         (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
694 2012-11-21  Glenn Morris  <rgm@gnu.org>
696         * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
697         (face-italic-p): Add optional argument "inherit".
699         * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
700         Remove -p suffix from names, for consistency with other set-face-*.
701         (set-face-inverse-video): Fix interactive spec.
702         * play/gamegrid.el (gamegrid-make-mono-tty-face):
703         * textmodes/table.el (table--update-cell-face):
704         Use set-face-inverse-video rather than now obsolete alias.
706 2012-11-21  Eli Zaretskii  <eliz@gnu.org>
708         * simple.el (line-move): Don't call line-move-partial if
709         scroll-conservatively is in effect.  (Bug#12927)
711 2012-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
713         * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
714         Fallback on completion-at-point rather than
715         pcomplete-expand-and-complete, and only if pcomplete actually failed.
716         (eshell-cmpl-initialize): Setup completion-at-point.
718         * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
720         * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
722 2012-11-21  Michael Albinus  <michael.albinus@gmx.de>
724         * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
725         are remote, check out-of-band property for both.
727 2012-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
729         * window.el (switch-to-buffer): Re-add the warning that was lost in the
730         code rewrite.
732 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
734         More minor time fixes.
735         * calendar/time-date.el: Commentary fix.
736         * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
737         too much other code depends on (0 0) time stamps.
738         * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
739         Add a couple of FIXME comments.
741         Minor cleanup for times as lists of four integers.
742         * files.el (dir-locals-directory-cache):
743         * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
744         Doc fixes.
745         * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
746         * ps-bdf.el (bdf-file-newer-than-time):
747         Process four-integers time stamps, not two.  Doc fixes.
749 2012-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
751         * uniquify.el (uniquify-managed): Use defvar-local.
752         (rename-buffer, create-file-buffer): Advise with advice-add.
753         (uniquify-unload-function): Unadvise accordingly.
755         * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
756         (trace-buffer): Don't purecopy.
757         (trace-entry-message, trace-exit-message): Add `context' arg.
758         (trace--timer): New var.
759         (trace-make-advice): Adjust for use in nadvice.
760         Add `context' argument.  Delay `display-buffer' via a timer.
761         (trace-function-internal): Use advice-add.
762         (trace--read-args): New function.
763         (trace-function-foreground, trace-function-background): Use it.
764         (trace-function): Rename to trace-function-foreground and redefine as
765         an alias to that new name.
766         (untrace-function, untrace-all): Adjust to the use of nadvice.
768         * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
770         * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
772         * subr.el (called-interactively-p-functions): New var.
773         (internal--called-interactively-p--get-frame): New macro.
774         (called-interactively-p, interactive-p): Rewrite in Lisp.
775         * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
776         (called-interactively-p-functions): Use it.
777         * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
778         (called-interactively-p-functions): Use it.
779         * allout.el (allout-called-interactively-p): Don't assume
780         called-interactively-p is a subr.
782 2012-11-20  Glenn Morris  <rgm@gnu.org>
784         * profiler.el (profiler-report-mode-map): Add a menu.
785         No need to bind `q' because we derive from special-mode.
786         (profiler-report-find-entry): Handle calls from the menu-bar.
788 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
790         * emacs-lisp/byte-run.el (defun-declarations-alist):
791         Allow a compiler-macro to be a lambda expression.
793         * progmodes/python.el: Use cl-lib.  Move var declarations outside of
794         eval-when-compile.
795         (python-syntax-context): Add compiler-macro.
796         (python-font-lock-keywords): Simplify with De Morgan.
798         * vc/diff-mode.el (diff-hunk): Don't make useless timers.
800         * files.el (load-file): Require match in minibuffer selection, as was
801         the case in Emacs-20 before we changed the spec to allow .elc files
802         (bug#12935).
804         * json.el: Don't require cl since we don't use it.
805         * color.el: Don't require cl.
806         (color-complement): `caddr' -> `nth 2'.
808         * calendar/time-date.el (time-to-seconds): De-obsolete.
810 2012-11-19  Jay Belanger  <jay.p.belanger@gmail.com>
812         * calc/calc-forms.el (math-leap-year-p):  Fix formula for negative
813         year numbers.
814         (math-date-to-julian-dt): Adjust the initial approximation for the
815         year to deal with the new definition of the DATE.
817 2012-11-19  Daniel Colascione  <dancol@dancol.org>
819         * term/w32-win.el (cygwin-convert-path-from-windows):
820         Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
822 2012-11-18  Chong Yidong  <cyd@gnu.org>
824         * filecache.el (file-cache--read-list): New function.
825         (file-cache-add-directory-list, file-cache-add-file-list)
826         (file-cache-delete-file-list, file-cache-delete-directory-list):
827         Use it to read a list of files or directories (Bug#12846).
828         (file-cache-add-file, file-cache-add-directory)
829         (file-cache-delete-file-list, file-cache-delete-file-regexp)
830         (file-cache-delete-directory): Print an message.
832 2012-11-18  Jay Belanger  <jay.p.belanger@gmail.com>
834         * calc/calc-forms.el (math-date-to-dt): Use integer date when
835         calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
837 2012-11-18  Glenn Morris  <rgm@gnu.org>
839         * image.el (insert-image, insert-sliced-image): Doc fix.
841 2012-11-18  Chong Yidong  <cyd@gnu.org>
843         * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
844         (Bug#12810).
846 2012-11-18  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
848         * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
849         response when the target file is in a subdirectory (Bug#12757).
851 2012-11-18  Chong Yidong  <cyd@gnu.org>
853         * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
855 2012-11-18  Glenn Morris  <rgm@gnu.org>
857         * emacs-lisp/cl-lib.el (face-underline-p):
858         Use set-face-underline rather than the alias set-face-underline-p.
860         * window.el (with-temp-buffer-window): Doc fix.
861         * subr.el (with-output-to-temp-buffer):
862         Add doc xref to with-temp-buffer-window.
864 2012-11-18  Juanma Barranquero  <lekktu@gmail.com>
866         * woman.el (woman-non-underline-faces): Use `set-face-underline'.
867         * calc/calc.el (math-format-date-cache): Declare.
869 2012-11-17  Paul Eggert  <eggert@cs.ucla.edu>
871         Calc by default uses the Gregorian calendar for all dates (Bug#12633).
872         It also uses January 1, 1 AD as its day number 1.
873         * calc/calc-forms.el (math-julian-date-beginning)
874         (math-julian-date-beginning-int): Implement this.
876 2012-11-17  Juanma Barranquero  <lekktu@gmail.com>
878         * descr-text.el (quail-find-key):
879         * dired.el (desktop-file-name):
880         * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
881         * generic-x.el (comint-mode, comint-exec):
882         * image-dired.el (widget-forward):
883         * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
884         (speedbar-change-expand-button-char)
885         (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
886         (speedbar-make-specialized-keymap, speedbar-make-tag-line):
887         * printing.el (easy-menu-add-item, easy-menu-remove-item)
888         (widget-field-action, widget-value-set):
889         * speedbar.el (imenu--make-index-alist):
890         * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
891         (ring-length, ring-insert):
892         * vcursor.el (compare-windows-skip-whitespace):
893         * woman.el (dired-get-filename):
894         Declare functions.
896         * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
898 2012-11-17  Jay Belanger  <jay.p.belanger@gmail.com>
900         * calc/calc.el (calc-gregorian-switch): New variable.
902         * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
903         (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
904         (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
905         (math-leap-year-p): Add option to distinguish between Julian
906         and Gregorian calendars.
907         (math-day-number): Use `math-day-in-year' to do the computations.
908         (math-absolute-from-dt): Rename from `math-absolute-from-date'.
909         Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
910         to do the computations.
911         (math-date-to-dt): Use `math-date-to-julian-dt' and
912         `math-date-to-gregorian-dt' to do the computations.
913         (calcFunc-weekday, math-format-date-part): Use the new version of
914         the DATE to determine the weekday.
915         (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
916         when necessary.
918 2012-11-17  Eli Zaretskii  <eliz@gnu.org>
920         * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
921         Cygwin; otherwise use 'file:'.  (Bug#12914)
922         (cygwin-convert-path-from-windows): Declare, to avoid
923         byte-compiler warnings.
925 2012-11-17  Andreas Politz  <politza@fh-trier.de>
927         * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
928         (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
929         prefix and negative numeric prefix args (Bug#12795).
931 2012-11-17  Stephen Berman  <stephen.berman@gmx.net>
933         * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
934         Don't signal an error with a score that is too low to add to the
935         list of top scores. (Bug#12779)
937 2012-11-17  Chong Yidong  <cyd@gnu.org>
939         * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
941         * filecache.el (file-cache-add-file): Handle relative file name in
942         the argument (Bug#12694).
944 2012-11-16  Jürgen Hötzel  <juergen@archlinux.org>  (tiny change)
946         * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
948 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
950         * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
952         * emacs-lisp/cl-lib.el: Set more meaningful version number.
954 2012-11-16  Martin Rudalics  <rudalics@gmx.at>
956         * window.el (enlarge-window, shrink-window): Don't mention return
957         value in doc-string (Bug#12896).
958         (window--display-buffer): Don't resize frames - it won't work
959         with all window managers and defeat pop-up-frame-alist.
960         (display-buffer-alist): In doc-string explain that CONDITION can
961         be a function and which arguments are passed to it (Bug#12854).
962         (display-buffer-assq-regexp): New argument ACTION.  Handle lambda
963         expressions (Bug#12854).
964         (display-buffer): Pass ACTION argument to
965         display-buffer-assq-regexp.
967 2012-11-16  Glenn Morris  <rgm@gnu.org>
969         * window.el (fit-frame-to-buffer-bottom-margin)
970         (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
972         * faces.el (face-underline-p): Use face-attribute-specified-or.
974 2012-11-16  Juanma Barranquero  <lekktu@gmail.com>
976         * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
978 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
980         * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
982 2012-11-16  Glenn Morris  <rgm@gnu.org>
984         * eshell/em-cmpl.el (eshell-pcomplete): New command.  (Bug#12838)
985         (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
987         * faces.el (face-underline-p): Doc fix.  Handle :underline being
988         things other than `t' (a string, a list).
989         (face-inverse-video-p): Doc fix.
990         (set-face-underline): Rename it back from set-face-underline-p.
991         Doc fix.  Allow interactive input of values other than t.
992         (read-face-attribute): Apply formatting to :underline,
993         since like :box and :stipple it can take list values.
995         * term.el (ansi-term): Don't let C-x escape-char binding
996         clobber the more standard C-c binding.  (Bug#12842)
998         * subr.el (set-temporary-overlay-map): Doc fix.
1000 2012-11-16  Martin Rudalics  <rudalics@gmx.at>
1002         * window.el (record-window-buffer)
1003         (display-buffer-record-window): When copying the markers to
1004         window-point preserve window-point-insertion-type. (Bug#12588)
1006 2012-11-16  Glenn Morris  <rgm@gnu.org>
1008         * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
1009         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
1010         Use new names for hooks rather than obsolete aliases.
1012 2012-11-15  Daniel Colascione  <dancol@dancol.org>
1014         * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
1015         prefix instead of "file:" so that when FILE-NAME begins with "//",
1016         as it does when the target file is on a network share, url-handler
1017         isn't confused.
1019 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1021         * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
1022         a preactivated advice from an old advice.el; they're not compatible!
1024 2012-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1026         * emacs-lisp/nadvice.el (advice--make-interactive-form):
1027         Fix string-spec case.
1029         * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
1031 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1033         * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
1034         (advice--buffer-local-function-sample): New var.
1035         (advice--set-buffer-local, advice--buffer-local): New functions.
1036         (add-function, remove-function): Use them.
1038 2012-11-15  Drew Adams  <drew.adams@oracle.com>
1040         * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
1042 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1044         * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
1045         potential binding of print-gensym to t, and prettify (back)quotes in
1046         case they appear in args's default values (bug#12884).
1048 2012-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1050         * emacs-lisp/nadvice.el: Add around advice for interactive specs.
1051         (advice-eval-interactive-spec): New function.
1052         (advice--make-interactive-form): Support around advice (bug#12844).
1054 2012-11-14  Dmitry Gutov  <dgutov@yandex.ru>
1056         * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
1057         more strict.  Add docstring.
1058         (ruby-expression-expansion-re): Extract from
1059         `ruby-match-expression-expansion'.
1060         (ruby-syntax-propertize-function): After everything else, search
1061         for expansions in string literals, mark their insides as
1062         whitespace syntax and save match data for font-lock.
1063         (ruby-font-lock-keywords): Use the 2nd group from expression
1064         expansion matches.
1065         (ruby-match-expression-expansion): Use the match data saved to the
1066         text property in ruby-syntax-propertize-function.
1068 2012-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1070         * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
1071         (bug#12879).
1073 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
1075         * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
1076         start/end keyword a bit harder.  Works with different values of N.
1077         Add more comments.
1078         (ruby-end-of-block): Update accordingly.
1080 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1082         * woman.el (woman-file-name): Don't mess with unread-command-events
1083         (bug#12861).
1085         * emacs-lisp/advice.el: Layer on top of nadvice.el.
1086         Remove out of date self-require hack.
1087         (ad-do-advised-functions): Use simple `dolist'.
1088         (ad-advice-name, ad-advice-protected, ad-advice-enabled)
1089         (ad-advice-definition): Redefine as functions.
1090         (ad-advice-classes): Move before first use.
1091         (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
1092         (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
1093         (ad--defalias-fset): Remove functions.
1094         (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
1095         (ad-get-orig-definition): Rewrite.
1096         (ad-make-advised-definition-docstring): Change base docstring.
1097         (ad-real-orig-definition): Rewrite.
1098         (ad-map-arglists): Change name of called function.
1099         (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
1100         (ad-make-advised-definition): Simplify.
1101         (ad-assemble-advised-definition): Tweak for new calling context.
1102         (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
1103         (ad--defalias-fset): Rename from ad-handle-definition.  Make it set the
1104         function and call ad-activate if needed.
1105         (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
1106         (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
1107         (ad-compile-function): Compile ad-Advice-*.
1108         (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
1109         (ad-start-advice, ad-stop-advice): Remove.
1111 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
1113         * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
1114         period before class method names, not after.  Remove handling of
1115         one impossible case.  Add comments.
1117 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1119         * emacs-lisp/advice.el: Remove support for freezing.
1120         (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
1121         (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
1122         Remove support for `freeze'.
1124         * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
1125         override the default.
1126         * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
1127         cl--dotimes/dolist.
1128         * subr.el (dolist, dotimes, declare): Redefine them normally, even when
1129         `cl' is loaded.
1131         * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
1132         from add-advice.
1133         (advice--strip-macro): New function.
1134         (advice--defalias-fset): Use them to handle macros.
1135         (advice-add): Use them.
1136         (advice-member-p): Correctly handle macros.
1138 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
1140         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1141         Never font-lock the beginning of singleton class as heredoc.
1143 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1145         * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
1147 2012-11-13  Wolfgang Jenkner  <wjenkner@inode.at>
1149         * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
1150         39 and 49 (bug#12792).  Also, treat unimplemented parameters as 0,
1151         thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
1153 2012-11-13  Fabián Ezequiel Gallina  <fgallina@cuca>
1155         Fix end-of-defun misbehavior.
1156         * progmodes/python.el (python-nav-beginning-of-defun): Rename from
1157         python-beginning-of-defun-function.  Handle nested defuns
1158         correctly.
1159         (python-nav-end-of-defun): Rename from
1160         python-end-of-defun-function.  Ensure forward movement.
1161         (python-info-current-defun): Reimplement to work as intended
1162         with new fixed python-nav-{end,beginning}-of-defun.  Stop scanning
1163         parent defuns as soon as possible.
1165 2012-11-13  Glenn Morris  <rgm@gnu.org>
1167         * progmodes/flymake.el (flymake-error-bitmap)
1168         (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
1169         (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
1171 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
1173         * progmodes/ruby-mode.el (ruby-move-to-block): When moving
1174         backward, always stop at indentation.  Reverts the change from
1175         2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
1177 2012-11-13  Glenn Morris  <rgm@gnu.org>
1179         * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
1180         Add ibuffer-filter-by-derived-mode.
1182         * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
1183         the same name shadowing each other.
1185         * window.el (with-temp-buffer-window): Doc tweak.
1187         * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
1189         * help.el (temp-buffer-max-height):
1190         * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
1191         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
1193 2012-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1195         * emacs-lisp/nadvice.el: New package.
1196         * subr.el (special-form-p): New function.
1197         * emacs-lisp/elp.el: Use lexical-binding and advice-add.
1198         (elp-all-instrumented-list): Remove var.
1199         (elp-not-profilable): Remove elp-wrapper.
1200         (elp-profilable-p): Use autoloadp and special-form-p.
1201         (elp--advice-name): New const.
1202         (elp-instrument-function): Use advice-add.
1203         (elp--instrumented-p): New predicate.
1204         (elp-restore-function): Use advice-remove.
1205         (elp-restore-all, elp-reset-all): Use mapatoms.
1206         (elp-set-master): Use elp--instrumented-p.
1207         (elp--make-wrapper): Rename from elp-wrapper, return a function
1208         suitable for advice-add.  Use cl-inf.
1209         (elp-results): Use mapatoms+elp--instrumented-p.
1210         * emacs-lisp/debug.el: Use lexical-binding and advice-add.
1211         (debug-function-list): Remove var.
1212         (debug): Rename arg, and then let-bind it explicitly inside.
1213         (debugger-setup-buffer): Rename arg.
1214         (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
1215         (debugger-frame-number): Adjust to new debug-on-entry setup.
1216         (debug--implement-debug-on-entry): Rename from
1217         implement-debug-on-entry, add argument.
1218         (debugger-special-form-p): Remove, use special-form-p instead.
1219         (debug-on-entry): Use advice-add.
1220         (debug--function-list): New function.
1221         (cancel-debug-on-entry): Use it, along with advice-remove.
1222         (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
1223         (debugger-list-functions): Use debug--function-list instead of
1224         debug-function-list.
1225         * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
1226         (ad-special-form-p): Remove, use special-form-p instead.
1227         (ad-set-advice-info): Use add-function and remove-function.
1228         (ad--defalias-fset): Adjust accordingly.
1230 2012-11-10  Glenn Morris  <rgm@gnu.org>
1232         * mail/emacsbug.el (report-emacs-bug-tracker-url)
1233         (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
1234         (report-emacs-bug-create-existing-bugs-buffer)
1235         (report-emacs-bug-parse-query-results)
1236         (report-emacs-bug-query-existing-bugs): Remove.  (Bug#7449)
1238         * term.el (term-default-fg-color, term-default-bg-color):
1239         Make obsolete, rather than just saying "deprecated" in the doc.
1241         * term.el (term): Rename from `term-face'.
1242         (term-current-face, ansi-term-color-vector)
1243         (term-default-fg-color, term-default-bg-color, term-ansi-reset):
1244         Update all users.
1246 2012-11-10  Jan Djärv  <jan.h.d@swipnet.se>
1248         * server.el (server-create-window-system-frame): Handle Nextstep
1249         specially (Bug#12780).
1251 2012-11-10  Glenn Morris  <rgm@gnu.org>
1253         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
1254         Unautoload, and make obsolete.  (Bug#7449)
1256 2012-11-10  Chong Yidong  <cyd@gnu.org>
1258         * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
1259         rename from diff-remove-trailing-whitespace (Bug#12831).
1261 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1263         * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
1264         miscompilation of trace.el.
1266 2012-11-10  Glenn Morris  <rgm@gnu.org>
1268         * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
1270 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1272         * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
1273         (bug#12812).
1275 2012-11-10  Chong Yidong  <cyd@gnu.org>
1277         * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
1278         a defcustom with an appropriate :set function.
1279         (minibuffer-default--in-prompt-regexps): New function.
1281 2012-11-10  Glenn Morris  <rgm@gnu.org>
1283         * emacs-lisp/cl.el (define-setf-expander, defsetf)
1284         (define-modify-macro): Doc fixes.
1286         * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
1287         (gv-define-simple-setter): Update doc of `fix-return'.
1289 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1291         * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
1292         twice when `fix-return' is set (bug#12813).
1294         * emacs-lisp/cl.el (defsetf): Pass the third arg to
1295         gv-define-simple-setter (bug#12812).
1297         * woman.el (woman-decode-region): Disable adaptive-fill when rendering
1298         (bug#12756).
1300 2012-11-10  Glenn Morris  <rgm@gnu.org>
1302         * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
1304         * emacs-lisp/cl-extra.el (cl-prettyexpand):
1305         * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
1306         * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
1307         (cl-the, cl-compiler-macroexpand): Add basic doc strings.
1309         * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
1311 2012-11-10  Leo Liu  <sdl.web@gmail.com>
1313         * ido.el (ido-set-matches-1): Improve flex matching performance by
1314         removing backtracking in the regexp (suggested by Stefan).  (Bug#12796)
1316 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1318         * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
1319         (ad--defalias-fset): New function.
1320         (ad-safe-fset): Remove.
1321         (ad-make-freeze-definition): Use cl-letf*.
1323 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1325         * subr.el (dolist): Don't bind VAR in RESULT.
1327         * emacs-lisp/advice.el: Miscellaneous cleanup.  Use lexical-binding.
1328         (fset, documentation): Don't save real def since we don't advise.
1329         (ad-do-advised-functions): Remove problematic `result-form'.
1330         (ad-safe-fset): `ad-real-fset' => `fset'.
1331         (ad-read-advised-function): Don't assume that ad-do-advised-functions
1332         uses CL's dolist internally.
1333         (ad-arglist): Remove unused arg `name'.
1334         (ad-docstring, ad-make-advised-docstring):
1335         `ad-real-documentation' => `documentation'.
1336         (warning-suppress-types): Declare.
1337         (ad-set-arguments): Simple CSE.
1338         (ad-recover-normality): Sanity check.
1340         * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
1341         (funcall '(lambda ..) ..) into ((lambda ..) ..).
1343 2012-11-09  Vincent Belaïche  <vincentb1@users.sourceforge.net>
1345         * ses.el: symbol to coordinate mapping is made by symbol property
1346         `ses-cell'.  This means that the same mapping is done for all SES
1347         sheets.  That is good enough for cells with standard A1 names, but
1348         not for named cell.  So a hash map is added for the latter.
1349         (defconst ses-localvars): Add local variable ses--named-cell-hashmap
1350         (ses-sym-rowcol): Use hashmap for named cell.
1351         (ses-is-cell-sym-p): New defun.
1352         (ses-decode-cell-symbol): New defun.
1353         (ses-create-cell-variable): Add cell to hashmap when name is not
1354         A1-like.
1355         (ses-rename-cell): Check that cell new name is not already in
1356         spreadsheet with the use of ses-is-cell-sym-p
1357         (ses-rename-cell): Use hash map for named cells, but accept also
1358         renaming back to A1-like.
1360 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1362         * emacs-lisp/advice.el: Use new dynamic docstrings.
1363         (ad-make-advised-definition-docstring, ad-advised-definition-p):
1364         Use dynamic-docstring-function instead of ad-advice-info.
1365         (ad--make-advised-docstring): New function extracted from
1366         ad-make-advised-docstring.
1367         (ad-make-advised-docstring): Use it.
1368         * progmodes/sql.el (sql--make-help-docstring): New function, extracted
1369         from sql-help.
1370         (sql-help): Use it with dynamic-docstring-function.
1372         * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
1374 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1376         * files.el (hack-one-local-variable--obsolete): New function.
1377         (hack-one-local-variable): Use it for obsolete settings.
1379         * subr.el (locate-user-emacs-file): If both old and new name exist, use
1380         the new name.
1382         * progmodes/js.el (js--filling-paragraph): New var.
1383         (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
1384         (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
1385         less sneaky.
1387 2012-11-08  Julien Danjou  <julien@danjou.info>
1389         * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
1390         `auto-mode-alist' (Bug#12835).
1392 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1394         * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
1395         (perl--prettify-symbols-alist): New const.
1396         (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
1397         New functions.
1398         (perl-font-lock-keywords-2): Use them.
1399         (perl-electric-noindent-p): New function.
1400         (perl-mode): Use it to set up electric-indent-mode.
1401         (perl-electric-terminator, perl-indent-command): Mark obsolete.
1402         (perl-mode-map): Remove bindings for them.
1403         (perl-imenu-generic-expression, perl-outline-level):
1404         Match functions&packages in column>0.
1406         * env.el (env--substitute-vars-regexp): New const.
1407         (substitute-env-vars): Use it.  Add `only-defined' arg.
1408         * net/tramp.el (tramp-replace-environment-variables): Use it.
1410         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
1411         Byte-compile *before* eval in eval-and-compile.
1412         (byte-compile-log-warning): Remove redundant inhibit-read-only.
1413         (byte-compile-file-form-autoload): Don't hide actual definition.
1414         (byte-compile-maybe-guarded): Accept `functionp' as well.
1416         * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
1418 2012-11-07  Michael Albinus  <michael.albinus@gmx.de>
1420         * notifications.el (notifications-get-server-information-method):
1421         New defconst.
1422         (notifications-get-capabilities): Fix docstring.
1423         (notifications-get-server-information): New defun.
1425 2012-11-06  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1427         * textmodes/ispell.el (ispell-region): Standard re-indent for better
1428         readability.
1430         * textmodes/ispell.el: Experimental support for support debugging.
1431         (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
1432         buffer for ispell.
1433         (ispell-print-if-debug): New function to print stuff to
1434         `ispell-debug-buffer' if debugging is enabled.
1435         (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
1436         show some debugging info.
1437         (ispell-buffer-with-debug): New function that creates a debugging
1438         buffer and calls `ispell-buffer' with debugging enabled.
1440         * textmodes/ispell.el (ispell-region): Do not prefix sent string by
1441         comment in autoconf mode. (Bug#12768)
1443 2012-11-06  Dmitry Antipov  <dmantipov@yandex.ru>
1445         * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
1446         frame-first-window, frame-root-window, frame-selected-window,
1447         minibuffer-selected-window, minibuffer-window,
1448         window-absolute-pixel-edges, window-at, window-body-height,
1449         window-body-width, window-display-table, window-combination-limit,
1450         window-frame, window-fringes, window-inside-absolute-pixel-edges,
1451         window-inside-edges, window-inside-pixel-edges, window-left-child,
1452         window-left-column, window-margins, window-next-buffers,
1453         window-next-sibling, window-new-normal, window-new-total,
1454         window-normal-size, window-parameter, window-parameters, window-parent,
1455         window-pixel-edges, window-point, window-prev-buffers,
1456         window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
1457         window-start, window-text-height, window-top-child, window-top-line,
1458         window-total-height, window-total-width and window-use-time to the list
1459         of functions without side-effects.
1460         (toplevel): Add window-valid-p to the list of error-free functions
1461         without side-effects.
1463 2012-11-05  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1465         * textmodes/ispell.el (ispell-program-name):
1466         Update spellchecker parameters when customized.
1468 2012-11-04  Glenn Morris  <rgm@gnu.org>
1470         * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn.  (Bug#7850)
1472 2012-11-04  Chong Yidong  <cyd@gnu.org>
1474         * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
1475         same-window-* variables.
1477 2012-11-04  Juri Linkov  <juri@jurta.org>
1479         * isearch.el (isearch-help-for-help, isearch-describe-bindings)
1480         (isearch-describe-key, isearch-describe-mode): Use a display
1481         action instead of binding same-window-* variables (Bug#10040).
1483 2012-11-03  Glenn Morris  <rgm@gnu.org>
1485         * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
1486         Rename handler properties back from cl-- to cl-.  (Bug#12788)
1488         * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
1490 2012-11-03  Eli Zaretskii  <eliz@gnu.org>
1492         * term/pc-win.el: Don't load term/internal from here.
1494         * loadup.el: Load term/internal from here.
1496 2012-11-03  Fabián Ezequiel Gallina  <fgallina@cuca>
1498         * progmodes/python.el (inferior-python-mode): Fix hang in
1499         jit-lock (Bug#12645).
1501 2012-11-03  Martin Rudalics  <rudalics@gmx.at>
1503         * window.el (switch-to-visible-buffer)
1504         (switch-to-buffer-preserve-window-point): Fix doc-strings.
1506 2012-11-03  Glenn Morris  <rgm@gnu.org>
1508         * emacs-lisp/cl-lib.el (cl--random-time):
1509         Rename from cl-random-time.  (Bug#12773)
1510         (cl--gensym-counter, cl--random-state): Update callers.
1511         * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
1513 2012-11-03  Chong Yidong  <cyd@gnu.org>
1515         * cus-start.el: Make cursor-type customizable (Bug#11633).
1517 2012-11-02  Glenn Morris  <rgm@gnu.org>
1519         * filecache.el: No need to load find-lisp when compiling.
1520         (find-lisp-find-files): Autoload it.
1521         (file-cache-add-directory-recursively): Don't require find-lisp.
1523         * image.el (image-type-from-file-name): Trivial simplification.
1525         * emacs-lisp/bytecomp.el (byte-compile-eval):
1526         Decouple "noruntime" and "cl-functions" warnings.
1528 2012-11-01  Stephen Berman  <stephen.berman@gmx.net>
1530         * play/gomoku.el (gomoku-display-statistics): Update mode line
1531         only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
1533 2012-10-31  Martin Rudalics  <rudalics@gmx.at>
1535         * window.el (quit-restore-window): If the window has been
1536         created on an existing frame and ended up as the sole window on
1537         that frame, do not delete it (Bug#12764).
1539 2012-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1541         * progmodes/sh-script.el (sh--inside-noncommand-expression):
1542         Rename from sh--inside-arithmetic-expression, handle more cases
1543         (bug#11263).
1545         * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
1546         (sh-font-lock-open-heredoc): Use it (bug#12770).
1548 2012-10-30  Glenn Morris  <rgm@gnu.org>
1550         * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie.  Doc fix.
1552         * emacs-lisp/cl.el (letf): Doc fix.  (Bug#12760)
1554 2012-10-29  Chong Yidong  <cyd@gnu.org>
1556         * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
1557         function key is stored in a keyboard macro (Bug#4894).
1559         * thingatpt.el (number-at-point): Apply a thing-at-point property.
1561 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1563         * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
1564         header comments".
1565         (diff-unified->context, diff-context->unified)
1566         (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
1568         * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
1570         * files.el (find-alternate-file): Only ask one question (bug#12487).
1572 2012-10-29  Chong Yidong  <cyd@gnu.org>
1574         * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
1575         Suggested by Dan Nicolaescu (Bug#6326).
1577         * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
1579         * startup.el (fancy-about-screen): Don't message (Bug#12680).
1581         * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
1583         * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
1585         * face-remap.el (face-remap-add-relative): Handle the case where a
1586         face-remapping-alist entry is a cons cell (Bug#12762).
1588 2012-10-29  Kevin Ryde  <user42@zip.com.au>
1590         * woman.el (woman-parse-numeric-value): Handle picas correctly
1591         (Bug#12639).
1593 2012-10-29  Glenn Morris  <rgm@gnu.org>
1595         * emacs-lisp/cl.el (defsetf): Doc fix.
1597 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1599         * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
1600         syntax to the matching opener, if any (bug#12547).
1601         (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
1602         matching open as a "case-(".
1603         (sh-smie-rc-grammar): Add a corresponding rule for it.
1605 2012-10-28  Daniel Hackney  <dan@haxney.org>
1607         * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
1608         "PKGNAME-autoloads.el" in case we created it.
1610 2012-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1612         * minibuffer.el (completion--sifn-requote): Rewrite to handle things
1613         like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
1614         (completion--twq-all): Disable too-strict assertions.
1616         * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
1618 2012-10-27  Eli Zaretskii  <eliz@gnu.org>
1620         * profiler.el (profiler-report-make-entry-part): Fix help-echo
1621         text to match the real keybindings.
1623 2012-10-27  Juri Linkov  <juri@jurta.org>
1625         * wdired.el (wdired-keep-marker-rename): New defcustom.
1626         (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
1627         (Bug#11795)
1629         * dired.el (dired-keep-marker-rename): Add reference to
1630         `wdired-keep-marker-rename' in the docstring.
1631         Add default character value ?R to display initially in
1632         Customization UI instead of ?@.
1634 2012-10-27  Martin Rudalics  <rudalics@gmx.at>
1636         * window.el (display-buffer): In doc-string describe
1637         window-height and window-width alist entries.
1639         * time.el (display-time-world): Restore fit-window-to-buffer
1640         behavior.
1642 2012-10-27  Chong Yidong  <cyd@gnu.org>
1644         * subr.el (insert-buffer-substring-as-yank): Doc fix.
1646 2012-10-26  Jambunathan K  <kjambunathan@gmail.com>
1648         * minibuffer.el (completion-category-overrides): New completion
1649         category `bookmark' (bug#11131).
1651 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1653         * emacs-lisp/advice.el (ad-assemble-advised-definition):
1654         Silence bogus compiler warnings for ad-do-it.
1656         * bookmark.el (bookmark-completing-read): Set the completion category
1657         to `bookmark' (bug#11131).
1659 2012-10-26  Bastien  <bzg@altern.org>
1660             Stefan Monnier  <monnier@iro.umontreal.ca>
1662         * face-remap.el: Use lexical-binding.
1663         (text-scale-adjust): Improve docstring.  Use itself for the temporary
1664         overlay-map bindings, so as to repeat the "Use..." message each time.
1666 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1668         * emacs-lisp/macroexp.el (macroexp--expand-all):
1669         Obey byte-compile-warning-enabled-p (bug#12486).
1671         * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
1672         (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
1674 2012-10-26  Martin Rudalics  <rudalics@gmx.at>
1676         * mouse.el (mouse-drag-line): Move last form into preceding when
1677         clause (Bug#12731).
1679         * help.el (resize-temp-buffer-window): Fix doc-string.
1681 2012-10-25  David Engster  <deng@randomsample.de>
1683         * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
1684         Remove.  This feature is already integrated in imenu.
1686         * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
1687         always loaded.  Require `speedbar' unconditionally.
1689 2012-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1691         * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
1693         * minibuffer.el (minibuffer-force-complete): Fix thinko.
1695         * net/ldap.el (ldap-search-internal): The official ldif format starts
1696         with a "version: 1" header (bug#12724).
1698         * emacs-lisp/package.el (package-installed-p): Warn if not ready
1699         (bug#12721).
1701 2012-10-25  Glenn Morris  <rgm@gnu.org>
1703         * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
1705 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1707         * minibuffer.el (minibuffer-force-complete): Use one more marker
1708         for the temporary-overlay-map command (bug#12619).
1710 2012-10-24  Chong Yidong  <cyd@gnu.org>
1712         * time.el (display-time-world-mode): Derive from special-mode.
1713         (display-time-world): Use display-buffer (Bug#12708).
1714         (display-time-world-mode-map): Variable deleted.
1715         (display-time-world-display): Wrap the final delete-char inside
1716         inhibit-read-only.
1718 2012-10-24  Chong Yidong  <cyd@gnu.org>
1720         * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
1721         Doc fix.
1723         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
1725 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1727         * minibuffer.el (completion--all-sorted-completions-location): New var.
1728         (completion--cache-all-sorted-completions)
1729         (completion--flush-all-sorted-completions): Use it.
1730         (completion-in-region, completion-in-region--postch)
1731         (completion-at-point, completion-help-at-point): Use markers in
1732         completion-in-region--data (bug#12619).
1734 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1736         * progmodes/compile.el (compilation-start): Try to handle common
1737         quoting of `cd' argument (bug#12640).
1739         * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
1740         (bug#12671).
1742 2012-10-23  Glenn Morris  <rgm@gnu.org>
1744         * progmodes/gud.el (gud-menu-map):
1745         Check gdb-active-process is bound.  (Bug#12358)
1747 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1749         * repeat.el (repeat): Set real-this-command (bug#12232).
1751         * htmlfontify.el (hfy-post-html-hook):
1752         * filesets.el (filesets-cache-fill-content-hook):
1753         * arc-mode.el (archive-extract-hook):
1754         * progmodes/cc-mode.el (c-prepare-bug-report-hook):
1755         * net/rcirc.el (rcirc-sentinel-functions)
1756         (rcirc-receive-message-functions, rcirc-activity-functions)
1757         (rcirc-print-functions):
1758         * net/dbus.el (dbus-event-error-functions):
1759         * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
1760         * emacs-lisp/checkdoc.el (checkdoc-style-functions)
1761         (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
1762         * term/sun.el (sun-raw-prefix-hooks):
1763         * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
1765 2012-10-23  Michael Albinus  <michael.albinus@gmx.de>
1767         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1768         Set `tramp-chunksize' to 1.  This improves the performance.
1769         (tramp-smb-wait-for-output): Add timeout to
1770         `tramp-accept-process-output' calls.
1772 2012-10-23  Chong Yidong  <cyd@gnu.org>
1774         * faces.el (font-list-limit): Define as an obsolete variable.
1776         * startup.el (command-line):
1777         * cus-start.el: Don't refer to font-list-limit.
1779         * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
1781 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1783         * subr.el (internal-temp-output-buffer-show): Rename from
1784         temp-output-buffer-show, since previously compiled files expect this name.
1786 2012-10-23  Glenn Morris  <rgm@gnu.org>
1788         * image.el (image-type-from-file-name): If multiple types match,
1789         return the first one that is supported.  (Bug#9045)
1791 2012-10-22  Glenn Morris  <rgm@gnu.org>
1793         * image.el (imagemagick-enabled-types): Doc fix.
1795 2012-10-22  Takafumi Arakaki  <aka.tkf@gmail.com>  (tiny change)
1797         * progmodes/which-func.el (which-func-current): The hash-table may have
1798         an explicit nil (bug#12338).
1800 2012-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1802         * electric.el (electric-pair-delete-selection-self-insert-function):
1803         Rename to electric-pair-will-use-region, return a boolean.
1804         (electric-pair-mode): Adjust accordingly.  Don't require delsel.
1806         * delsel.el (delete-selection-helper): Use a function instead of a hook.
1807         (delete-selection-pre-hook): Use use-region-p.
1808         (delete-selection-self-insert-function): Remove.
1809         (self-insert-command): Obey self-insert-uses-region-functions.
1810         (self-insert-iso): Revert to previous setting, since we don't actually
1811         know what that command does.
1812         (delete-selection-self-insert-hooks): Remove.
1814 2012-10-22  Simon Law  <sfllaw@sfllaw.ca>  (tiny change)
1816         * delsel.el (delete-selection-helper): New function, extracted from
1817         delete-selection-pre-hook.
1818         (delete-selection-pre-hook): Use it.
1819         (delete-selection-self-insert-function): New function.
1820         (delete-selection-self-insert-hooks): New hook.
1821         (self-insert-command, self-insert-iso): Use it.
1822         * electric.el (electric-pair-syntax): New function, extracted from
1823         electric-pair-post-self-insert-function.
1824         (electric-pair-post-self-insert-function): Use it.
1825         (electric-pair-delete-selection-self-insert-function): New function.
1826         (electric-pair-mode): Require delsel and setup
1827         delete-selection-self-insert-hooks (bug#11520).
1829 2012-10-20  Chong Yidong  <cyd@gnu.org>
1831         * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
1832         no changes to show (Bug#12586).
1834         * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
1835         list explicitly (Bug#12571).
1837 2012-10-20  Arne Jørgensen  <arne@arnested.dk>
1839         * progmodes/flymake.el (flymake-create-temp-inplace):
1840         Use file-truename.
1842 2012-10-20  Eli Zaretskii  <eliz@gnu.org>
1844         * loadup.el: Update comment about uncompiled Lisp files.  (Bug#12395)
1846 2012-10-20  Jay Belanger  <jay.p.belanger@gmail.com>
1848         * calc/calc-units.el (math-extract-units): Properly extract powers
1849         of units.
1851 2012-10-20  Daniel Colascione  <dancol@dancol.org>
1853         * frame.el (make-frame): Set x-display-name as we used to in order
1854         to unbreak creating an X11 frame from an Emacs daemon started
1855         without a display.
1857 2012-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1859         * minibuffer.el (minibuffer-force-complete): Make the next completion use
1860         the same completion-field (bug#12221).
1862 2012-10-19  Martin Rudalics  <rudalics@gmx.at>
1864         * emacs-lisp/debug.el (debug): Record height of debugger window
1865         also when debugger will be back (Bug#8789).
1867 2012-10-18  Chong Yidong  <cyd@gnu.org>
1869         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
1870         Convert to defcustom.
1871         (gdb-get-source-file): Don't bind pop-up-windows.
1873         * progmodes/gud.el (gud-display-line): Don't specially re-use
1874         other frames for the gdb-mi case (Bug#12648).
1876 2012-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1878         * emacs-lisp/advice.el: Clean up commentary a bit.
1879         (ad-do-advised-functions, ad-with-originals): Use `declare'.
1880         (byte-code-function-p): Never redefine.
1882         * emacs-lisp/gv.el (cond): Same fix as before for `if'.
1884 2012-10-18  Glenn Morris  <rgm@gnu.org>
1886         * dired.el (dired-sort-toggle): Some ls implementations only allow
1887         a single option string.  (Bug#12666)
1889         * minibuffer.el (completion-cycle-threshold): Doc fix.
1891 2012-10-17  Kenichi Handa  <handa@gnu.org>
1893         * international/mule.el (set-keyboard-coding-system):
1894         Recover input meta mode when the new coding system doesn not use 8-bit.
1895         Supply TERMINAL arg to set-input-meta-mode.
1897 2012-10-17  Michael Heerdegen <michael_heerdegen@web.de>
1899         * wdired.el (wdired-old-marks): New variable.
1900         (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
1901         (wdired-do-renames): Move point with renamed file and don't lose
1902         mark status (Bug#11795).
1904 2012-10-16  Juri Linkov  <juri@jurta.org>
1906         * replace.el (query-replace-help): Mention multi-buffer replacement
1907         keys in the Help message.  (Bug#12655)
1909 2012-10-15  Chong Yidong  <cyd@gnu.org>
1911         * emacs-lisp/byte-run.el (defsubst): Doc fix.
1913 2012-10-14  Eli Zaretskii  <eliz@gnu.org>
1915         * window.el (display-buffer): Doc fix.
1917         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1918         Adjust the msft regexp to the output of Studio 2010, and move msft
1919         before edg-1.  See the discussion on emacs-devel,
1920         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
1921         for the details.
1923 2012-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1925         * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
1926         (oset): Move uses of object-class-fast macro after its definition.
1928         * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
1930 2012-10-13  Chong Yidong  <cyd@gnu.org>
1932         * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
1933         enabled, re-enable it (Bug#11963).
1935 2012-10-13  Martin Rudalics  <rudalics@gmx.at>
1937         * emacs-lisp/debug.el (debug): When debugger-will-be-back is
1938         non-nil, restore window configuration (Bug#12623).
1940 2012-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1942         * help-fns.el (describe-variable, describe-function-1):
1943         * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
1945         * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
1947 2012-10-12  Glenn Morris  <rgm@gnu.org>
1949         * mail/rmailsum.el (rmail-header-summary):
1950         Fix 2010-11-26 test for multiline Subject: field.  (Bug#12625)
1952 2012-10-12  Fabián Ezequiel Gallina  <fgallina@cuca>
1954         * progmodes/python.el (python-mode-map):
1955         Replace subtitute-key-definition with proper command remapping.
1956         (python-nav--up-list): Fix behavior for blocks on the same level.
1958 2012-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1960         * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
1962         * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
1963         changes to the format of load-history.
1965         * international/mule-cmds.el (read-char-by-name): Move let-binding of
1966         completion-ignore-case in case that var is buffer-local (bug#12615).
1968 2012-10-11  Kenichi Handa  <handa@gnu.org>
1970         * international/eucjp-ms.el: Re-generated.
1972 2012-10-10  Kenichi Handa  <handa@gnu.org>
1974         * select.el (xselect--encode-string): If a coding is specified for
1975         selection, and that is compatible with COMPOUND_TEXT, use it.
1977 2012-10-10  Martin Rudalics  <rudalics@gmx.at>
1979         * window.el (switch-to-buffer-preserve-window-point): New option.
1980         (switch-to-buffer):
1981         Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
1983 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1985         * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
1986         Don't document nil as a useful value (bug#12583).
1988 2012-10-09  Michael Albinus  <michael.albinus@gmx.de>
1990         * net/tramp.el (tramp-debug-message):
1991         Remove "tramp-with-progress-reporter" from regexp of ignored functions.
1992         (with-tramp-progress-reporter): Rename from
1993         `tramp-with-progress-reporter'.
1994         (with-tramp-file-property, with-tramp-connection-property):
1995         Move from tramp-cache.el, rename from `with-file-property' and
1996         `with-connection-property', respectively.
1998         * net/tramp-cache.el: Remove `with-file-property' and
1999         `with-connection-property'.
2001         * net/tramp.el:
2002         * net/tramp-gvfs.el:
2003         * net/tramp-sh.el:
2004         * net/tramp-smb.el: Adapt callees.
2006         * net/trampver.el: Update release number.
2008 2012-10-09  Glenn Morris  <rgm@gnu.org>
2010         * w32-fns.el (set-message-beep):
2011         * term/w32-win.el (set-message-beep): Update declarations.
2013 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2015         * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
2016         (mode-line-widen, mode-line-input-method-map)
2017         (mode-line-coding-system-map, mode-line-remote)
2018         (mode-line-unbury-buffer, mode-line-bury-buffer)
2019         (mode-line-next-buffer, mode-line-previous-buffer):
2020         Replace save-selected-window+select-window => with-selected-window.
2022         * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
2023         * progmodes/cc-vars.el (bq-process): Remove, unused.
2025         * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
2027 2012-10-09  Fabián Ezequiel Gallina  <fgallina@cuca>
2029         Implemented `backward-up-list'-like navigation.
2030         * progmodes/python.el (python-nav-up-list)
2031         (python-nav-backward-up-list): New functions.
2032         (python-mode-map): Define substitute key for backward-up-list to
2033         python-nav-backward-up-list.
2035 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
2037         * progmodes/python.el (python-fill-paragraph): Rename from
2038         python-fill-paragraph-function.  Fixed fill-paragraph for
2039         decorators (Bug#12605).
2041 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
2043         * progmodes/python.el (python-shell-output-filter): Handle extra
2044         carriage return in OSX (Bug#12409).
2046 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
2048         Fix shell handling of unbalanced quotes and parens in output.
2049         * progmodes/python.el (python-rx-constituents): Add string-delimiter.
2050         (python-syntax-propertize-function): Use it.
2051         (python-shell-output-syntax-table): New var.
2052         (inferior-python-mode): Prevent unbalanced parens/quotes from
2053         previous output mess with current input context.
2055 2012-10-08  Juanma Barranquero  <lekktu@gmail.com>
2057         * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
2058         Make obsolete aliases of js-mode and js-mode-hook (from js.el).
2060 2012-10-08  Michael Albinus  <michael.albinus@gmx.de>
2062         * ffap.el (ffap-replace-file-component): Support Tramp file name
2063         syntax, not only ange-ftp's one.
2065 2012-10-08  Glenn Morris  <rgm@gnu.org>
2067         * cus-start.el (message-log-max): Set :version.
2069         * calendar/calendar.el (calendar-intermonth-header): Doc fix.
2071 2012-10-08  Martin Rudalics  <rudalics@gmx.at>
2073         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
2074         the minibuffer window (Bug#10851).
2076 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
2078         Enhancements on forward-sexp movement.
2079         * progmodes/python.el (python-nav-beginning-of-statement)
2080         (python-nav-end-of-statement): Return point-marker.
2081         (python-nav-forward-sexp): lisp-like forward-sexp behavior.
2082         (python-info-current-symbol)
2083         (python-info-statement-starts-block-p): Rename from
2084         python-info-beginning-of-block-p.
2085         (python-info-statement-ends-block-p): Rename from
2086         python-info-end-of-block-p.
2087         (python-info-beginning-of-statement-p)
2088         (python-info-end-of-statement-p)
2089         (python-info-beginning-of-block-p, python-info-end-of-block-p):
2090         New functions.
2092 2012-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2094         * comint.el (comint-preinput-scroll-to-bottom): Preserve the
2095         frame-selected-windows.
2097 2012-10-08  Daniel Colascione  <dancol@dancol.org>
2099         * battery.el (battery-status-function): Check for
2100         w32-battery-status itself, not system-time windows-nt.
2102         * frame.el: Require cl-lib.
2103         (display-format-alist): New variable mapping frame types to
2104         functions that initialize them.
2105         (window-system-for-display): New function: interprets
2106         display-format-alist.
2107         (make-frame-on-display): Remove existing display-selection logic
2108         and just forward to make-frame, which will now DTRT.
2109         (make-frame): Restructure to use window-system-for-display to
2110         figure out how to create a frame on a given display.
2111         (display-mouse-p): Look for frame-type w32, not a particular
2112         system-type.
2114         * loadup.el: Load w32 lisp code when we have the w32 feature.
2116         * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
2117         system-type windows-nt.
2119         * server.el (server-create-window-system-frame): Look for window
2120         type.
2121         (server-proces-filter): Only force a window system when windows-nt
2122         _and_ w32.  Explain why.
2124         * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
2125         of window systems we configure for the mode.
2127         * startup.el (command-line): Mark window system is initialized
2128         after we've done it.
2130         * common-win.el (x-select-text): Look for w32, not windows-nt.
2132         * ns-win.el: Require cl-lib.  Add ourselves to
2133         display-format-alist.
2134         (ns-initialize-window-system): Assert we're not initialized twice.
2136         * w32-win.el: Enable lexical binding; require cl-lib; add
2137         ourselves to display-format-alist.
2138         (w32-handle-dropped-file): Convert incoming dropped files from
2139         Windows paths to Cygwin ones before passing them on to the rest of
2140         Emacs.
2141         (w32-drag-n-drop): New paramter new-frame.  Simplify logic.
2142         (w32-initialize-window-system): Assert we're not initialized twice.
2144         * x-win.el: Require cl-lib; add ourselves to display-format-alist.
2145         (x-initialize-window-system): Assert we're not initialized twice.
2147         * w32-common-fns.el: New File.
2148         (w32-version, w32-using-nt, w32-get-clipboard-data)
2149         (w32-set-clipboard-data, x-set-selection, x-get-selection)
2150         (w32-charset-info-alist, x-last-selected, text)
2151         (x-get-selection-value, x-selection-value): Move here.
2153         * w32-fns.el: Require w32-common-fns.
2154         (w32-version, w32-using-nt, w32-get-clipboard-data)
2155         (w32-set-clipboard-data, x-set-selection, x-get-selection)
2156         (w32-charset-info-alist, x-last-selected, text)
2157         (x-get-selection-value, x-selection-value): Move to
2158         w32-common-fns.
2160         * w32-vars.el:
2161         (w32-allow-system-shell, w32-system-shells): Define only in
2162         non-cygwin case.
2164 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2166         * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
2167         (read-passwd): Remove a few more potential sources of leaks.
2169 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
2171         * progmodes/python.el (inferior-python-mode)
2172         (python-shell-make-comint): Fix initialization of local
2173         variables copied from parent buffer.
2175 2012-10-07  Jan Djärv  <jan.h.d@swipnet.se>
2177         * term/ns-win.el (ns-read-file-name): Update declaration to match
2178         nsfns.m.
2179         (ns-respond-to-change-font): Change fontsize separatly so we are sure
2180         it is set when font is acted upon.
2182 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
2184         Enhancements to indentation.
2185         * progmodes/python.el (python-indent-context): Give priority to
2186         inside-string context.  Make comments indentation markers.
2187         (python-indent-region): Do not mess with strings, unless it's the
2188         enclosing set of quotes.
2190 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2192         * window.el (internal--before-save-selected-window)
2193         (internal--after-save-selected-window): New functions extracted from
2194         save-selected-window.  Make sure we return the `alist' we construct.
2195         (save-selected-window): Use them.
2197         * textmodes/tex-mode.el (tex-recenter-output-buffer):
2198         Use with-selected-window.
2200         * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
2201         forms that define macros (bug#12593).
2203 2012-10-07  Kenichi Handa  <handa@gnu.org>
2205         * international/mule-conf.el (compound-text-with-extensions):
2206         Add :mime-charset property as x-ctext.
2208 2012-10-07  Stefan Merten  <smerten@oekonux.de>
2210         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
2211         (rst-indent-literal-normal, rst-indent-literal-minimized)
2212         (rst-indent-comment): Correct :version tag.
2213         (rst-official-cvs-rev): Correct version string.
2215 2012-10-07  Glenn Morris  <rgm@gnu.org>
2217         * mail/rmailmm.el (rmail-mime-process-multipart):
2218         Do not confuse a multipart message with an epilogue
2219         with a "truncated" one; fixes 2011-06-27 change.  (Bug#10101)
2221 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
2223         Fix shell output retrieval and comint-prompt-regexp init.
2224         * progmodes/python.el (inferior-python-mode):
2225         (python-shell-make-comint): Fix initialization of
2226         comint-prompt-regexp from copied file local variables.
2227         (python-shell-fetched-lines): Remove var.
2228         (python-shell-output-filter-in-progress): Rename from
2229         python-shell-fetch-lines-in-progress.
2230         (python-shell-output-filter-buffer): Rename from
2231         python-shell-fetch-lines-string.
2232         (python-shell-fetch-lines-filter): Delete function.
2233         (python-shell-output-filter): New function.
2234         (python-shell-send-string-no-output): Use them.
2236 2012-10-07  Glenn Morris  <rgm@gnu.org>
2238         * hi-lock.el (hi-lock-process-phrase):
2239         Try to make it less fragile.  (Bug#7161)
2241         * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
2243 2012-10-06  Glenn Morris  <rgm@gnu.org>
2245         * ehelp.el (electric-help-mode): Use help-mode rather than
2246         non-existent mode `help'.
2247         (electric-help-map): Use button-buffer-map.  (Bug#10917)
2249         * textmodes/reftex-vars.el (reftex-create-bibtex-header)
2250         (reftex-create-bibtex-footer): Fix custom types.
2252         * progmodes/sh-script.el (sh-indent-after-continuation):
2253         Add explicit :group.
2255         * textmodes/rst.el (rst-preferred-decorations)
2256         (rst-shift-basic-offset): Clarify obsolescence versions.
2258         * profiler.el (profiler): Add missing group :version tag.
2259         * avoid.el (mouse-avoidance-banish-position):
2260         * proced.el (proced-renice-command):
2261         * calc/calc.el (calc-ensure-consistent-units):
2262         * calendar/icalendar.el (icalendar-import-format-uid):
2263         * net/tramp.el (tramp-save-ad-hoc-proxies):
2264         * progmodes/bug-reference.el (bug-reference-bug-regexp):
2265         * progmodes/flymake.el (flymake-error-bitmap)
2266         (flymake-warning-bitmap, flymake-fringe-indicator-position):
2267         * progmodes/sh-script.el (sh-indent-after-continuation):
2268         * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
2269         (verilog-before-save-font-hook, verilog-after-save-font-hook):
2270         * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
2271         (vhdl-array-index-record-field-in-sensitivity-list)
2272         (vhdl-indent-comment-like-next-code-line):
2273         * textmodes/reftex-vars.el (reftex-ref-style-alist)
2274         (reftex-ref-macro-prompt, reftex-ref-style-default-list)
2275         (reftex-cite-key-separator, reftex-create-bibtex-header)
2276         (reftex-create-bibtex-footer):
2277         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
2278         (rst-indent-literal-normal, rst-indent-literal-minimized)
2279         (rst-indent-comment): Add missing custom :version tags.
2281         * calendar/timeclock.el (timeclock-modeline-display):
2282         Add missing obsolete alias for renamed user option.
2284         * strokes.el (strokes-modeline-string):
2285         * emulation/crisp.el (crisp-mode-modeline-string):
2286         * eshell/esh-mode.el (eshell-status-in-modeline):
2287         Aliases to defcustoms must come before the defcustom.
2289         * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
2290         (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
2291         (cal-tex-cursor-week-monday): Doc fixes.
2292         (cal-tex-cursor-week2-summary): Doc fix.
2293         Rename from cal-tex-cursor-week-at-a-glance.
2295         * calendar/cal-menu.el (cal-menu-context-mouse-menu):
2296         Tweak week descriptions.  Add cal-tex-cursor-week2-summary.
2298         * calendar/calendar.el (calendar-mode-map):
2299         Add cal-tex-cursor-week2-summary.
2301 2012-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2303         * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
2305         * subr.el (read-passwd-map): New var.
2306         (read-passwd): Use `read-string' again.
2307         * minibuffer.el (delete-minibuffer-contents): Make it interactive.
2309 2012-10-06  Jambunathan K  <kjambunathan@gmail.com>
2311         * register.el (append-to-register, prepend-to-register):
2312         Deactivate mark, as does `copy-to-register' (bug#12389).
2314 2012-10-06  Chong Yidong  <cyd@gnu.org>
2316         * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
2318 2012-10-06  Ikumi Keita  <ikumi@ikumi.que.jp>  (tiny change)
2320         * international/characters.el: Fix simple mistake ((car chars) ->
2321         elt), delete duplicated code.
2323 2012-10-06  Glenn Morris  <rgm@gnu.org>
2325         * subr.el (read-passwd): Allow C-u to erase entry.  (Bug#12570)
2327 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
2329         * color.el (color-hsl-to-rgb): Fix incorrect results for
2330         small and large hue values.  (Bug#12559)
2332 2012-10-05  Fabián Ezequiel Gallina  <fgallina@cuca>
2334         Enhancements to docstring formatting when filling paragraphs.
2335         * progmodes/python.el (python-fill-docstring-style): Rename from
2336         python-fill-string-style.  Added new style.
2337         (python-fill-string): Use new style.  Better checks for
2338         docstrings.
2340 2012-10-05  Glenn Morris  <rgm@gnu.org>
2342         * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
2344         * color.el (color-name-to-rgb, color-rgb-to-hex)
2345         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
2346         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
2347         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
2348         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
2350         * emacs-lisp/timer.el (with-timeout): Add missing progn.  (Bug#12577)
2352 2012-10-05  Juanma Barranquero  <lekktu@gmail.com>
2354         * ido.el (ido-directory-too-big-p): Pass dir through file-truename
2355         to get the correct size across symlinks.
2357         * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
2359 2012-10-04  Juri Linkov  <juri@jurta.org>
2361         * replace.el (query-replace-interactive): Declare obsolete.
2362         (query-replace-read-from): Add the last incremental search string
2363         to the list of default values accessible via M-n.
2364         (map-query-replace-regexp): Use `read-regexp'.
2365         (query-replace, query-replace-regexp, query-replace-regexp-eval)
2366         (map-query-replace-regexp, replace-string, replace-regexp):
2367         Fix docstrings to replace mentions of `query-replace-interactive'
2368         with alternatives.  (Bug#12526)
2370 2012-10-04  Juri Linkov  <juri@jurta.org>
2372         * dired.el (dired-shrink-to-fit): Declare obsolete.  (Bug#1806)
2373         (dired-pop-to-buffer): Declare obsolete.
2374         (dired-mark-pop-up): Doc fix.
2376 2012-10-04  Fabián Ezequiel Gallina  <fgallina@cuca>
2378         Allow user to set docstring style for fill-paragraph.
2379         * progmodes/python.el
2380         (python-fill-comment-function, python-fill-string-function)
2381         (python-fill-decorator-function, python-fill-paren-function):
2382         Remove :safe for defcustoms.
2383         (python-fill-string-style): New defcustom
2384         (python-fill-paragraph-function): Enhance context detection.
2385         (python-fill-string): Honor python-fill-string-style settings.
2387 2012-10-04  Martin Rudalics  <rudalics@gmx.at>
2389         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
2390         after setting its buffer (Bug#10805).
2392 2012-10-03  Fabián Ezequiel Gallina  <fgallina@cuca>
2394         Fix cornercase for string syntax.
2395         * progmodes/python.el (python-syntax-propertize-function):
2396         Simplify and enhance the regexp for unescaped quotes.  Now it also
2397         matches quotes in weird situations like the single quote in
2398         "something\"'".
2399         (python-syntax-stringify): Simplify num-quotes detecting code.
2401 2012-10-03  Glenn Morris  <rgm@gnu.org>
2403         * help-macro.el (three-step-help):
2404         Revert 2012-09-29 change.  (Bug#12567)
2406 2012-10-03  Martin Rudalics  <rudalics@gmx.at>
2408         * menu-bar.el (kill-this-buffer): Don't do anything when
2409         `menu-frame' is not alive or visible (Bug#8184).
2411         * emacs-lisp/debug.el (debug): When quitting the debugger window
2412         restore current buffer (Bug#12502).
2414 2012-10-02  Chong Yidong  <cyd@gnu.org>
2416         * progmodes/hideif.el (hif-lookup, hif-defined):
2417         Handle semantic-c-takeover-hideif.
2419 2012-10-02  Paul Eggert  <eggert@cs.ucla.edu>
2421         Change sampling interval units from ms to ns.
2422         * profiler.el (profiler-sampling-interval): Change units
2423         from ms to ns, multiplying the default by 1000000 so that
2424         it remains 1 ms.
2425         (profiler-report-cpu-line-format): Give enough room for
2426         the maximum counters on 64-bit hosts.
2427         (profiler-report-render-calltree-1): Call them "CPU samples",
2428         not "Time (ms)", since they are not milliseconds now (and
2429         never really were).
2431 2012-10-02  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
2433         * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
2434         Fix querying BBDB for entries without a last name (Bug#11580).
2436 2012-10-02  Chong Yidong  <cyd@gnu.org>
2438         * emacs-lisp/eieio.el: Restore Version header.
2440 2012-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2442         * vc/diff-mode.el (diff--auto-refine-data): New var.
2443         (diff-hunk): Use it to delay refinement.
2444         (diff-mode): Remove overlays when we turn off font-lock.
2446         * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
2447         (table-initialize-table-fixed-width-mode)
2448         (table-set-table-fixed-width-mode): Remove functions.
2449         (table-command-list): Move initialization into declaration.
2450         (table--tweak-menu-for-xemacs): Move defun outside mapcar.
2451         (table-with-cache-buffer): Use `declare'.
2452         (table-span-cell): Simplify via CSE.
2453         (table-fixed-width-mode): Use define-minor-mode.
2454         (table-call-interactively, table-funcall, table-apply): Remove.
2455         (table-function): New function, to replace them.
2457         * bookmark.el (bookmark-search-pattern): Remove var.
2458         (bookmark-read-search-input): Remove function.
2459         (bookmark-bmenu-search): Reimplement using a minibuffer.
2461         * faces.el (modeline): Remove obsolete face name.
2463         * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
2464         and give a non-nil default value.
2465         (add-change-log-entry): Simplify accordingly.
2467 2012-10-01  Dmitry Gutov  <dgutov@yandex.ru>
2469         * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
2470         (vc-git-log-edit-toggle-amend): New function.
2471         (vc-git-log-edit-toggle-signoff): New function.
2472         (vc-git-log-edit-mode): New major mode.
2473         (vc-git-log-edit-mode-map): Keymap for it.
2474         (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
2476         * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
2477         header names.
2478         (log-edit-toggle-header): New function.
2479         (log-edit-extract-headers): Accept function values in HEADERS alist.
2481 2012-10-01  David Engster  <deng@randomsample.de>
2483         * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
2484         from symbol property and change message to be more consistent with
2485         Emacs proper.
2486         (eieio-describe-generic): Add filename for each implementation.
2487         Fix indices for generic and normal methods.
2488         (eieio-method-def, eieio-class-def): New buttons.
2489         (eieio-help-find-method-definition)
2490         (eieio-help-find-class-definition): New functions.
2491         (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
2492         class, constructor and method definitions.
2494         * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
2495         information in symbol property.
2496         (scoped-class): Remove.
2497         (eieio-slot-name-index, call-next-method): Check if it is bound.
2499 2012-10-01  Leo P. White  <lpw25@cam.ac.uk>
2501         * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
2502         (eieio-custom-mode): New major mode.
2503         (eieio-customize-object): Use it.
2505 2012-10-01  Eric Ludlam  <zappo@gnu.org>
2507         * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
2508         specifying the expected class, and whether subclassing is allowed.
2509         (eieio-persistent-convert-list-to-object):
2510         (eieio-persistent-validate/fix-slot-value)
2511         (eieio-persistent-slot-type-is-class-p): New functions.
2512         (eieio-named::slot-missing): Doc fix.
2514         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
2515         Stop using unused publd variable.
2517         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
2518         (eieio-speedbar-description, eieio-speedbar-derive-line-path)
2519         (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
2520         (eieio-speedbar-handle-click): Do not specify a class for the
2521         method.  Fixes method invocation order problems with EDE.
2523 2012-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2525         * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
2526         (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
2528 2012-10-01  Karl Fogel  <kfogel@red-bean.com>
2530         * bookmark.el (bookmark-version-control): Give tags in the
2531         :type choices (Bug#12309), and improve doc string.
2532         (bookmark-write-file): Bind `print-circle' to `t' to allow
2533         circular custom bookmark types.  (Bug#12503)
2535 2012-10-01  Paul Eggert  <eggert@cs.ucla.edu>
2537         Revert the FOLLOW-SYMLINKS change for file-attributes.
2538         * files.el (remote-file-name-inhibit-cache, after-find-file):
2539         * time.el (display-time-file-nonempty-p): Undo last change.
2541         * profiler.el (profiler-sampling-interval): Change default back to 1.
2542         See Stefan Monnier in
2543         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
2545 2012-10-01  Fabián Ezequiel Gallina  <fgallina@cuca>
2547         Shell output catching a la gud-gdb.
2548         * progmodes/python.el (python-shell-fetch-lines-in-progress)
2549         (python-shell-fetch-lines-string, python-shell-fetched-lines):
2550         New Vars.
2551         (python-shell-fetch-lines-filter): New function.
2552         (python-shell-send-string-no-output): Use them.
2554 2012-09-30  Tomohiro Matsuyama  <tomo@cx4a.org>
2556         * profiler.el (profiler-sampling-interval): Rename from
2557         profiler-sample-interval.
2558         (profiler-sampling-interval): Default to 10.
2559         (profiler-find-profile): New command (was profiler-find-log).
2560         (profiler-find-profile-other-window): New command.
2561         (profiler-find-profile-other-frame): New command.
2562         (profiler-profile): Introduce API-level data structure.
2564 2012-09-30  Paul Eggert  <eggert@cs.ucla.edu>
2566         file-attributes has a new optional arg FOLLOW-SYMLINKS.
2567         * files.el (remote-file-name-inhibit-cache):
2568         * time.el (display-time-file-nonempty-p): Use it.
2569         * files.el (after-find-file): Don't chase links before calling
2570         file-exists-p, as file-exists-p already does the right thing.
2572 2012-09-30  Ralf Angeli  <angeli@caeruleus.net>
2574         Merge from standalone RefTeX repository.
2576         The following ChangeLog entries are shortened versions of the
2577         original ones with file paths adapted.  A not so strongly edited
2578         version of the original ChangeLog can be found in the commit log.
2580         * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
2581         (reftex-arg-cite): Use `reftex-cite-key-separator'.
2582         Correctly handle new value type returned by `reftex-citation'.
2584         * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
2585         that entries with whitespace at various places are found.
2586         Doc fix. Include entries that are cross-referenced from cited entries.
2587         Include @String definitions in the resulting bib file.  Add header
2588         and footer defined in `reftex-create-bibtex-header' and
2589         `reftex-create-bibtex-footer'.
2590         (reftex-do-citation): Make it possible again to insert
2591         non-existent entries.  Save match data when asking for optional
2592         arguments. Return all keys, not just the first one.
2593         (reftex-all-used-citation-keys): Fix regexp to correctly extract
2594         all citations in the same line.
2595         (reftex-parse-bibtex-entry): Accept additional optional argument
2596         `raw' and keep quotes or braces if it is non-nil.  Match fields
2597         containing hyphens besides word constituents.
2598         (reftex-get-string-refs): New function.
2599         (reftex-extract-bib-entries): Check if BibTeX file changed on disk
2600         and ask if it should be reread in case it did.
2601         (reftex-pop-to-bibtex-entry)
2602         (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
2603         entries with spaces or tabs in front of arguments.
2604         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
2605         (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
2606         Match entries containing numbers and symbol constituents.
2607         (reftex-do-citation, reftex-figure-out-cite-format):
2608         Use `reftex-cite-key-separator'.
2610         * textmodes/reftex-dcr.el: Move provide statement to end of file.
2611         (reftex-mouse-view-crossref): Explain why point is set.
2613         * textmodes/reftex-global.el: Whitespace changes.
2615         * textmodes/reftex-index.el: Move provide statement to end of
2616         file.
2617         (reftex-index-selection-or-word): Use `reftex-region-active-p'.
2618         (reftex-index-visit-phrases-buffer): Set marker when visiting
2619         buffer.  This allows for returning from the phrases file to the
2620         file one was just editing instead of the file where the last
2621         phrases was added from.
2622         (reftex-index-phrases-syntax-table): New variable.  Give ?\"
2623         punctuation syntax as it usually is not used as string quote in
2624         TeX-related modes and may occur unmatched.  The change also
2625         prevents fontification of quoted content.
2626         (reftex-index-phrases-mode): Use it.
2628         * textmodes/reftex-parse.el (reftex-parse-from-file):
2629         Move backward one char if a `\' was matched after a section macro.
2630         (reftex-parse-from-file): Use beginning of match instead of end as
2631         bound.
2633         * textmodes/reftex-ref.el: Adapt creation of
2634         `reftex-<package>-<macro>' functions to new structure of
2635         `reftex-ref-style-alist'.
2636         (reftex-reference): Use `reftex-ref-style-list' function.
2637         Adapt to new structure of `reftex-ref-style-alist'.  Prompt for a
2638         reference macro if `reftex-ref-macro-prompt' is non-nil.
2639         (reftex-reference): Pass refstyle to `reftex-format-special'.
2640         Determine reference macro by looking at
2641         `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
2642         Use only one special format function.
2643         (reftex-varioref-vref, reftex-fancyref-fref)
2644         (reftex-fancyref-Fref): Remove definitions.  The functions are now
2645         generated from `reftex-ref-style-alist'.
2646         (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
2647         Remove.
2648         (reftex-format-special): New function.
2650         * textmodes/reftex-sel.el
2651         (reftex-select-cycle-ref-style-internal): Adapt to new structure
2652         of `reftex-ref-style-alist'. Remove code for testing macro type.
2653         (reftex-select-toggle-varioref)
2654         (reftex-select-toggle-fancyref): Remove.
2655         (reftex-select-cycle-ref-style-internal)
2656         (reftex-select-cycle-ref-style-forward)
2657         (reftex-select-cycle-ref-style-backward): New functions.
2658         (reftex-select-label-map): Use `v' and `V' for general cycling
2659         through reference styles.  Add `p' for switching between number
2660         and page reference types.
2662         * textmodes/reftex-toc.el (reftex-re-enlarge):
2663         Call `enlarge-window' only if there is something to do because in Emacs
2664         the horizontal version throws an error even if the parameter is 0.
2666         * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
2667         (reftex-plug-into-AUCTeX): Doc fix.
2668         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
2669         string.  Adapt to new name.
2670         (reftex-ref-style-alist): Change structure so that it is not
2671         possible to use multiple different package names within a style.
2672         Remove the symbols for symbols for macro type distinction.
2673         Add characters for macro selection.
2674         (reftex-ref-macro-prompt, reftex-create-bibtex-header)
2675         (reftex-create-bibtex-footer): New variables.
2676         (reftex-format-ref-function): Mention third argument of special
2677         format function.
2678         (reftex-ref-style-alist, reftex-ref-style-default-list):
2679         New variables.
2680         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
2681         to new implementation.  Mark as obsolete.  Add compatibility code
2682         for honoring the variable values in case they are set.
2683         (reftex-cite-format-builtin, reftex-bibliography-commands):
2684         Add support for ConTeXt.
2685         (reftex-format-ref-function, reftex-format-cite-function):
2686         Fix custom type.
2687         (reftex-cite-key-separator): New variable.
2689         * textmodes/reftex.el (reftex-syntax-table-for-bib)
2690         (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
2691         `reftex-syntax-table' because parens have to retain their paren
2692         syntax in order for parsing of BibTeX entries like @book(...) to
2693         work.
2694         (reftex-in-comment): Do not error out if `comment-start-skip' is
2695         not set.  Deal correctly with escaped comment characters.
2696         (reftex-tie-multifile-symbols): Add doc string.
2697         Initialize `reftex-ref-style-list'.
2698         (reftex-untie-multifile-symbols): Add doc string.
2699         (reftex-add-index-macros): Doc fix.
2700         (reftex-ref-style-activate, reftex-ref-style-toggle)
2701         (reftex-ref-style-list): New functions.
2702         (reftex-mode-menu): Use them.  Adapt to new structure of
2703         `reftex-ref-style-alist'.
2704         (reftex-select-with-char): Kill the RefTeX Select buffer when
2705         done.
2706         (reftex-remove-if): New function.
2707         (reftex-erase-all-selection-and-index-buffers)
2708         (reftex-mode-menu): Reference styles are now computed from
2709         `reftex-ref-style-alist'.  Fix typo.
2710         (reftex-report-bug): New function.
2711         (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
2712         algorithms with O(n log n).  Introduce optional argument SORT (not
2713         yet used).
2715 2012-09-30  Fabián Ezequiel Gallina  <fgallina@cuca>
2717         Enhancements for triple-quote string syntax.
2718         * progmodes/python.el (python-syntax-propertize-function):
2719         Match both quote cases in one regexp.
2720         (python-syntax-stringify): Handle matches properly.
2722 2012-09-30  Juri Linkov  <juri@jurta.org>
2724         * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
2725         to nil around the call to `insert' to prevent
2726         directory time modification by lock_file.  (Bug#2295)
2727         * tar-mode.el (tar-summarize-buffer): Idem.
2729 2012-09-30  Juri Linkov  <juri@jurta.org>
2731         * facemenu.el (list-colors-sort): Add option "Luminance".
2732         (list-colors-sort-key): Implement it.
2734         * vc/diff-mode.el (diff-refine-removed):
2735         * vc/ediff-init.el (ediff-fine-diff-A):
2736         * vc/smerge-mode.el (smerge-refined-removed):
2737         Change background color "#ffaaaa" to "#ffbbbb".  (Bug#10181)
2739 2012-09-30  Jan Djärv  <jan.h.d@swipnet.se>
2741         * term/ns-win.el (x-file-dialog): New function.
2743 2012-09-30  Juanma Barranquero  <lekktu@gmail.com>
2745         * ido.el (ido-max-directory-size): Default to nil; the current
2746         default is small for POSIX systems, and impractical on Windows 7
2747         now that lstat returns directory sizes for NTFS.
2749 2012-09-30  Martin Rudalics  <rudalics@gmx.at>
2751         In buffer display functions handle window-height/window-width
2752         alist entries.  Suggested by Juri Linkov as fix for Bug#1806.
2753         * window.el (window--display-buffer): New argument ALIST.
2754         Obey window-height and window-width alist entries.
2755         (window--try-to-split-window): New argument ALIST.
2756         Bind window-combination-limit to t when the window's size shall be
2757         changed and window-combination-limit equals `window-size'.
2758         (display-buffer-in-atom-window)
2759         (display-buffer-in-major-side-window)
2760         (display-buffer-in-side-window, display-buffer-same-window)
2761         (display-buffer-reuse-window, display-buffer-pop-up-frame)
2762         (display-buffer-pop-up-window, display-buffer-below-selected)
2763         (display-buffer-at-bottom, display-buffer-in-previous-window)
2764         (display-buffer-use-some-window): Adjust all callers of
2765         window--display-buffer and window--try-to-split-window.
2766         (fit-frame-to-buffer): New option.
2767         (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
2768         is non-nil.
2769         (display-buffer-in-major-side-window): Evaluate window-height /
2770         window-width alist entries.
2772         * help.el (temp-buffer-resize-frames)
2773         (temp-buffer-resize-regexps): Remove options.
2774         (temp-buffer-resize-mode): Adjust doc-string.
2775         (resize-temp-buffer-window): Don't consult
2776         temp-buffer-resize-regexps.  Use fit-frame-to-buffer instead of
2777         temp-buffer-resize-frames.
2779         * dired.el (dired-mark-pop-up):
2780         Call display-buffer-below-selected with a fit-window-to-buffer alist
2781         entry.
2783 2012-09-30  Chong Yidong  <cyd@gnu.org>
2785         * server.el (server-host): Document the security implications.
2786         (server-auth-key): Doc fix.
2788         * startup.el (initial-buffer-choice): Doc fix.
2790         * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
2792         * simple.el (delete-trailing-whitespace): Avoid an unnecessary
2793         restriction change.
2795         * bindings.el (goto-map): Bind M-g TAB to move-to-column.
2797         * help-fns.el (help-fns--obsolete): Fix last change.
2799 2012-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2801         * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
2802         (minor-mode-map-alist): Remove redundant code.
2804         * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
2805         visited in a buffer.
2806         (cvs-insert-visited-file): New function.
2807         (find-file-hook): Use it.
2809         * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
2811         * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
2812         chose face.
2813         (log-edit-empty-buffer-p): Don't require a space after a header.
2815         * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
2817         * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
2819         * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
2820         a proper minor-mode.
2822         * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
2824 2012-09-29  Glenn Morris  <rgm@gnu.org>
2826         * winner.el (winner-mode): Remove variable (let define-minor-mode
2827         handle it).
2828         (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
2829         Doc fixes.
2830         (winner-mode-leave-hook): Rename to winner-mode-off-hook.
2831         (winner-mode): Use define-minor-mode.
2833         * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
2834         the full definition in loaddefs, rather than duplicating it.
2836         * help-macro.el (three-step-help): No need to autoload defcustom.
2838         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
2839         (inferior-lisp-program, inferior-lisp-load-command)
2840         (inferior-lisp-prompt, inferior-lisp-mode-hook):
2841         No need to autoload defcustoms.
2843         * hippie-exp.el (hippie-expand-try-functions-list)
2844         (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
2845         (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
2846         (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
2847         (hippie-expand-only-buffers): No need to autoload defcustoms.
2848         * progmodes/vhdl-mode.el (vhdl-line-expand):
2849         Explicitly load hippie-exp, so it does not get autoloaded
2850         while hippie-expand-try-functions-list is let-bound.
2852 2012-09-28  Glenn Morris  <rgm@gnu.org>
2854         * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
2856         * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
2857         Only "cl.el" counts as cl these days.
2859 2012-09-28  Juri Linkov  <juri@jurta.org>
2861         Display archive errors in the echo area instead of inserting
2862         to the file buffer.
2864         * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
2865         to STDERR-TEST that can be a regexp matching a successful output.
2866         Create a temporary file and redirect stderr to it.  Search for
2867         STDERR-TEST in the stderr output and display it in the echo area
2868         if no match is found.
2869         (archive-extract-by-file): New function like
2870         `archive-extract-by-stdout' but extracting archives to files
2871         and looking for successful matches in stdout.  Function body is
2872         mostly copied from `archive-rar-extract'.
2873         (archive-rar-extract): Use `archive-extract-by-file'.
2874         (archive-7z-extract): Use `archive-extract-by-stdout'.  (Bug#10347)
2876 2012-09-28  Leo Liu  <sdl.web@gmail.com>
2878         * pcomplete.el (pcomplete-show-completions):
2879         Use minibuffer-message to make pcomplete usable in minibuffer.
2881         * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
2883 2012-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2885         * type-break.el: Use lexical-binding.
2886         (type-break-mode): Use define-minor-mode.
2888         * emacs-lisp/pcase.el (pcase--mark-used): New.
2889         (pcase--u1): Use it (bug#12512).
2891         * custom.el (load-theme): Set buffer-file-name so the load is recorded
2892         in load-history with the right file name.
2894 2012-09-28  Tassilo Horn  <tsdh@gnu.org>
2896         * doc-view.el (doc-view-current-cache-doc-pdf): New function.
2897         (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
2898         (doc-view-get-bounding-box): Make bounding box slicing work for
2899         ODF and DVI documents.
2901 2012-09-28  Glenn Morris  <rgm@gnu.org>
2903         * type-break.el (type-break-mode, type-break-interval)
2904         (type-break-good-rest-interval, type-break-keystroke-threshold):
2905         No need to autoload.
2906         (type-break-good-rest-interval, type-break-keystroke-threshold):
2907         Add :set-after.
2909 2012-09-28  Chong Yidong  <cyd@gnu.org>
2911         * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
2912         Add :version tag.
2914 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2916         * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
2918 2012-09-27  Glenn Morris  <rgm@gnu.org>
2920         * faces.el (x-display-name): Declare (for without-x builds).
2922         * linum.el (linum-format): Don't autoload it.  Improve :type.
2924         * progmodes/tcl.el: Don't require outline when compiling.
2925         (outline-regexp, outline-level): Declare.
2926         * textmodes/sgml-mode.el: Don't require outline when compiling.
2927         (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
2929         * term.el (term-ansi-reset):
2930         Try setting term-ansi-face-already-done to nil.  (Bug#11785)
2932         * vc/vc.el (vc-next-action): Only gripe about committing read-only
2933         files for RCS and SCCS.  (Bug#9781)
2935 2012-09-27  Chong Yidong  <cyd@gnu.org>
2937         * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
2938         change; value should be t.
2940 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2942         * image-mode.el: Use lexical-binding.
2943         (image-mode-winprops): Use t to stand for the window of
2944         a buffer that's not displayed.
2945         * doc-view.el (doc-view-new-window-function): Handle the new
2946         t in winprops.
2947         (doc-view-enlarge): Make it a real nop if the size is not changed.
2948         (doc-view-display): Handle the case where the buffer is not (yet?)
2949         displayed in any window.
2950         (doc-view-saved-settings): New var.
2951         (doc-view-mode): Use it.
2952         (doc-view-fallback-mode): Set it.
2954         * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
2955         Set lexical-binding.
2956         (minibuffer-eldef-shorten-default): New var.
2957         (minibuffer-default-in-prompt-regexps): Use it for new default.
2958         (minibuf-eldef-setup-minibuffer): Add replacement functionality.
2960 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
2962         * international/uni-bidi.el:
2963         * international/uni-category.el:
2964         * international/uni-name.el:
2965         * international/uni-numeric.el: Regenerate.
2967 2012-09-26  Tomohiro Matsuyama  <tomo@cx4a.org>
2968             Stefan Monnier  <monnier@iro.umontreal.ca>
2970         * profiler.el: New file.
2972 2012-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2974         * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
2975         (testcover-reinstrument): Simplify with CSE.
2977 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
2979         * window.el (temp-buffer-window-setup): Fix typo in docstring.
2981 2012-09-25  Wilson Snyder  <wsnyder@wsnyder.org>
2983         * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
2984         (verilog-auto-input, verilog-auto-insert-lisp)
2985         (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2986         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
2987         (verilog-auto-unused, verilog-auto-wire)
2988         (verilog-forward-or-insert-line): Fix AUTOs with no trailing
2989         newline.  Reported by Andrew Jones.
2990         (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
2991         Reported by Brad Dobbie.
2992         (verilog-batch-delete-trailing-whitespace):
2993         Create verilog-batch-delete-trailing-whitespace.
2994         Reported by Brad Dobbie.
2995         (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
2996         parameters from another module.  Reported by Dan Katz.
2997         (verilog-auto, verilog-auto-assign-modport)
2998         (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
2999         AUTOINOUTMODPORT for UVM interface module shell generation.
3000         Reported by Brad Dobbie.
3001         (verilog-auto-inst-interfaced-ports): Make default nil, as more
3002         standard behavior.
3003         (verilog-auto): Fix AUTO parameters with parenthesis arguments.
3004         Reported by Matt Martin.
3006 2012-09-25  Martin Rudalics  <rudalics@gmx.at>
3008         * window.el (window--resize-child-windows): When resizing child
3009         windows proportionally, process them in reverse order to
3010         preserve the "when splitting a window the new one gets the odd
3011         line" behavior.
3012         (window--resize-root-window-vertically): When resizing the
3013         minibuffer window try to affect only windows at the bottom of the
3014         frame.  (Bug#12419)
3016 2012-09-25  Chong Yidong  <cyd@gnu.org>
3018         * subr.el (declare): Doc fix.
3020         * help-fns.el (help-fns--obsolete): Handle macros properly.
3022 2012-09-25  Chong Yidong  <cyd@gnu.org>
3024         * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
3025         this function obsolete.
3027         * calendar/cal-x.el (calendar-two-frame-setup)
3028         (calendar-only-one-frame-setup, calendar-one-frame-setup):
3029         * calendar/calendar.el (american-calendar, european-calendar)
3030         (calendar-for-loop):
3031         * comint.el (comint-dynamic-simple-complete)
3032         (comint-dynamic-complete-as-filename, comint-unquote-filename):
3033         * desktop.el (desktop-load-default):
3034         * dired-x.el (dired-omit-here-always)
3035         (dired-hack-local-variables, dired-default-directory):
3036         * emacs-lisp/derived.el (derived-mode-class):
3037         * emacs-lisp/timer.el (timer-set-time-with-usecs):
3038         * emacs-lock.el (toggle-emacs-lock):
3039         * epa.el (epa-display-verify-result):
3040         * epg.el (epg-sign-keys, epg-start-sign-keys)
3041         (epg-passphrase-callback-function):
3042         * eshell/esh-util.el (eshell-for):
3043         * eshell/eshell.el (eshell-remove-from-window-buffer-names)
3044         (eshell-add-to-window-buffer-names):
3045         * files.el (locate-file-completion):
3046         * imenu.el (imenu-example--create-c-index)
3047         (imenu-example--create-lisp-index)
3048         (imenu-example--lisp-extract-index-name)
3049         (imenu-example--name-and-position):
3050         * international/mule-cmds.el (princ-list):
3051         * international/mule-diag.el (decode-codepage-char):
3052         * international/mule-util.el (detect-coding-with-priority):
3053         * iswitchb.el (iswitchb-read-buffer):
3054         * mail/mailalias.el (mail-complete):
3055         * mail/sendmail.el (mail-sent-via):
3056         * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
3057         (mouse-major-mode-menu):
3058         * password-cache.el (password-read-and-add):
3059         * pcomplete.el (pcomplete-parse-comint-arguments):
3060         * progmodes/sh-script.el (sh-maybe-here-document):
3061         * replace.el (query-replace-regexp-eval):
3062         * savehist.el (savehist-load):
3063         * simple.el (choose-completion-delete-max-match):
3064         * term.el (term-dynamic-simple-complete):
3065         * vc/ediff-init.el (ediff-check-version):
3066         * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
3067         * vc/vc.el (vc-diff-switches-list):
3068         * view.el (view-return-to-alist-update): Likewise.
3070         * subr.el (eval-next-after-load, makehash, insert-string)
3071         (assoc-ignore-representation, assoc-ignore-case): Use declare to
3072         mark obsolete.
3073         (mode-line-inverse-video): Variable deleted.
3075         * international/mule-util.el (string-to-sequence): Remove.
3077         * calendar/calendar.el (calendar-version):
3078         * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
3079         (icalendar-convert-diary-to-ical):
3080         * cus-edit.el (custom-mode):
3081         * ansi-color.el (ansi-color-unfontify-region):
3082         * international/latin1-disp.el (latin1-char-displayable-p):
3083         * progmodes/cwarn.el (turn-on-cwarn-mode):
3084         * progmodes/which-func.el (which-func-update-1):
3085         Use define-obsolete-function-alias.
3087         * net/newst-backend.el (newsticker-cache-filename):
3088         * net/newst-treeview.el (newsticker-groups-filename):
3089         Fix incorrect obsolescence declaration.
3091         * allout.el (allout-passphrase-hint-string): Likewise.
3092         (allout-init): Use a declare form to mark obsolete.
3094         * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
3095         this applies to functions.
3097         * iswitchb.el (iswitchb-read-buffer): Move code of
3098         iswitchb-define-mode-map here, and delete that obsolete function.
3100         * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
3101         font-lock-reference-face.
3103 2012-09-25  Glenn Morris  <rgm@gnu.org>
3105         * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
3106         Doc fixes.
3108         * eshell/em-term.el (eshell-term-name):
3109         Default to term-term-name.  (Bug#12485)
3111 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
3113         * progmodes/python.el (python-shell-send-buffer): Better handling
3114         of "if __name__ == '__main__':" conditionals when sending the buffer.
3116 2012-09-24  Glenn Morris  <rgm@gnu.org>
3118         * eshell/esh-cmd.el (eshell-find-alias-function):
3119         Tighten up file-name regexp.  (Bug#12499)
3121 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
3123         Enhancements for triple-quote string syntax.
3124         * progmodes/python.el (python-quote-syntax): Remove.
3125         (python-syntax-propertize-function): New value.
3126         (python-syntax-count-quotes, python-syntax-stringify):
3127         New functions.
3129 2012-09-24  Chong Yidong  <cyd@gnu.org>
3131         * mail/supercite.el (sc-version): Remove obsolete function.
3132         (sc-describe): Don't mark as obsolete, since it is bound.
3133         (sc-submit-bug-report): Remove.
3135         * vc/log-edit.el (cvs-changelog-full-paragraphs)
3136         (cvs-commit-buffer-require-final-newline): Remove.
3137         (log-edit-require-final-newline)
3138         (log-edit-changelog-full-paragraphs): Default to t.
3140         * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
3141         * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
3142         * vc/vc.el (vc-checkout-carefully): Likewise.
3144         * vc/emerge.el (emerge-mode): Make it an obsolete alias.
3145         (emerge-version): Remove.
3147         * progmodes/compile.el (compile-internal): Remove.
3148         (compilation-parse-errors-function): Fix typo.
3150         * international/mule.el (set-char-table-default): Remove.
3151         (set-coding-priority, make-coding-system, generic-char-p)
3152         (charset-list, charset-bytes, charset-id): Use declare to mark
3153         functions as obsolete.
3155         * vc/pcvs-defs.el (cvs-buffer-name-alist)
3156         (cvs-invert-ignore-marks): Remove references to obsolete vars.
3157         * vc/vc-hooks.el (vc-default-registered): Don't use
3158         vc-master-templates.
3160         * font-lock.el (font-lock-reference-face):
3161         Use define-obsolete-variable-alias.
3163         * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
3164         * calendar/calendar.el (calendar-font-lock-keywords):
3165         * calendar/diary-lib.el (diary-font-lock-keywords)
3166         (diary-fancy-font-lock-keywords):
3167         * textmodes/reftex-sel.el (reftex-insert-docstruct):
3168         * textmodes/reftex-index.el (reftex-insert-index):
3169         * textmodes/reftex-cite.el (reftex-format-bib-entry):
3170         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3171         * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
3172         * progmodes/prolog.el (prolog-font-lock-keywords):
3173         * progmodes/idlwave.el (idlwave-idl-keywords):
3174         * progmodes/ada-mode.el (ada-font-lock-keywords):
3175         * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
3177 2012-09-24  Glenn Morris  <rgm@gnu.org>
3179         * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
3181 2012-09-23  Fabián Ezequiel Gallina  <fgallina@cuca>
3183         * progmodes/python.el (python-indent-line): More consistent cursor
3184         movement behavior.
3186 2012-09-23  Stefan Merten  <smerten@oekonux.de>
3188         * textmodes/rst.el: Fix compiler warning.
3190 2012-09-23  Roland Winkler  <winkler@gnu.org>
3192         * textmodes/bibtex.el (bibtex-autokey-transcriptions):
3193         Transcribe also LaTeX hyphenation.
3194         (bibtex-reformat): Bug fix. Do not quote twice the elements of
3195         bibtex-reformat-previous-options.
3197 2012-09-23  Roland Winkler  <winkler@gnu.org>
3199         * proced.el (proced-renice-command): New variable.
3200         (proced-marked-processes): New function.
3201         (proced-with-processes-buffer): New macro.
3202         (proced-send-signal): Use them.
3203         (proced-renice): New command bound to r.
3205 2012-09-23  Roland Winkler  <winkler@gnu.org>
3207         * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
3208         ibuffer-saved-filter-groups has one element, shortcut the call of
3209         completing-read.  (Bug#12331)
3211 2012-09-23  Chong Yidong  <cyd@gnu.org>
3213         * bindings.el (mode-line-toggle-read-only):
3214         * bs.el (bs-toggle-readonly):
3215         * buff-menu.el (Buffer-menu-toggle-read-only):
3216         * dired.el (dired-toggle-read-only):
3217         * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
3219 2012-09-23  Chong Yidong  <cyd@gnu.org>
3221         * image.el (image-type-available-p): Adapt to init-image-library
3222         argument changes.
3224 2012-09-22  Juri Linkov  <juri@jurta.org>
3226         * dired.el (dired-mode-map): Add [remap read-only-mode] for
3227         `dired-toggle-read-only'.  (Bug#12462)
3229 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
3231         * subr.el (temp-output-buffer-show): New function.
3232         (with-output-to-temp-buffer): Call temp-output-buffer-show
3233         instead of internal-temp-output-buffer-show.
3235 2012-09-22  Chong Yidong  <cyd@gnu.org>
3237         * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
3238         (Bug#12462).
3240         * repeat.el (repeat): Doc fix (Bug#12348).
3242         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
3243         (Bug#10909).
3245         * simple.el (shell-command-on-region): Doc fix.
3246         (read-only-mode): Doc fix.
3248 2012-09-22  Eli Zaretskii  <eliz@gnu.org>
3250         * emacs-lisp/timer.el (run-with-idle-timer)
3251         (timer-activate-when-idle): Warn against reinvoking an idle timer
3252         from within its own timer action.  (Bug#12447)
3254 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
3256         * cus-start.el (window-combination-limit): Add new optional
3257         values.
3258         * window.el (temp-buffer-window-show)
3259         (window--try-to-split-window): Handle new values of
3260         window-combination-limit (Bug#1806).
3261         (split-window): Test window-combination-limit for t instead of
3262         non-nil.
3263         (display-buffer-at-bottom): New buffer display action function.
3264         * help.el (temp-buffer-resize-regexps): New option.
3265         (temp-buffer-resize-mode): Rewrite doc-string.
3266         (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
3267         Don't resize reused window.  Suggested by Glenn Morris.
3269 2012-09-22  Stefan Merten  <smerten@oekonux.de>
3271         * textmodes/rst.el: Revamp section title faces.
3272         (rst-official-version)
3273         (rst-package-emacs-version-alist): Sync with official version
3274         V1.4.0.
3275         (rst-faces-defaults, rst-set-level-default)
3276         (rst-level-face-max, rst-level-face-base-color)
3277         (rst-level-face-base-light, rst-level-face-format-light)
3278         (rst-level-face-step-light, rst-define-level-faces): Obsolete.
3279         (rst-adornment-faces-alist): Match new setup.
3280         (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
3281         (rst-level-5, rst-level-6): New faces.
3283 2012-09-22  Chong Yidong  <cyd@gnu.org>
3285         * simple.el (undo): Handle indirect buffers (Bug#8207).
3287 2012-09-21  Leo Liu  <sdl.web@gmail.com>
3289         IDO: Disable match re-ordering for buffer switching.
3290         * ido.el (ido-buffer-disable-smart-matches): New variable.
3291         (ido-set-matches-1): Use it.  (Bug#2042)
3293 2012-09-21  Jose Marino  <marinoj@nso.edu>  (tiny change)
3295         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
3296         Fix 2011-05-17 change.  (Bug#12418)
3298 2012-09-21  Leo Liu  <sdl.web@gmail.com>
3300         * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
3302 2012-09-21  Glenn Morris  <rgm@gnu.org>
3304         * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
3305         Be more robust about locating simple.el.
3307 2012-09-21  Glenn Morris  <rgm@gnu.org>
3309         * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
3311 2012-09-21  Joel Bion  <jpbion@westvi.com>  (tiny change)
3313         * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz.  (Bug#12382)
3315 2012-09-20  Juri Linkov  <juri@jurta.org>
3317         * replace.el (query-replace-read-from): Use `read-regexp' instead
3318         of `read-from-minibuffer' when `regexp-flag' is non-nil.
3319         (occur-read-primary-args): Use `read-regexp' instead of
3320         `read-string'.
3321         (multi-occur-in-matching-buffers): Use `read-regexp' instead of
3322         `read-from-minibuffer'.
3323         * isearch.el (isearch-occur): Use `read-regexp' instead of
3324         `read-string'.
3325         * dired.el (dired-read-regexp): Use `read-regexp' instead of
3326         `read-from-minibuffer'.
3327         * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
3328         of `read-string'.  (Bug#7567)
3330         * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
3331         and allow accepting a list of strings prepended to a list of
3332         standard default values.  Doc fix.  (Bug#12321)
3334         * replace.el (read-regexp): Add HISTORY arg.  (Bug#7567)
3336         * replace.el (read-regexp): Don't add ": " when PROMPT already
3337         ends with a colon and space.  (Bug#12321)
3339 2012-09-20  Tassilo Horn  <tsdh@gnu.org>
3341         * doc-view.el (doc-view-display): Better fix for the cl-assertion
3342         error.
3344 2012-09-20  Stefan Merten  <smerten@oekonux.de>
3346         * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
3347         Fixes feature request bug#11711.
3348         (rst-mode): Create `imenu-create-index-function'.
3349         (rst-get-stripped-line): Delete after refactoring.
3350         (rst-section-tree, rst-section-tree-rec)
3351         (rst-section-tree-point): Refactor and document properly.
3352         (rst-imenu-find-adornments-for-position)
3353         (rst-imenu-convert-cell, rst-imenu-create-index):
3354         New function.
3356 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3358         * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
3359         (macroexp--expand-all): Use it.
3360         (macroexp--funcall-and-return): Remove by folding it into its sole
3361         caller (macroexp--warn-and-return).
3362         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
3363         Use macroexp--obsolete-warning.
3365         * calc/calc.el: Fix last change by removing the whole chunk, since it
3366         was only needed back when Calc was not bundled.
3368 2012-09-20  Martin Rudalics  <rudalics@gmx.at>
3370         * emacs-lisp/debug.el (debug): Restore assignment to
3371         debugger-old-buffer removed on 2012-09-08.
3373 2012-09-20  Juri Linkov  <juri@jurta.org>
3375         * dired-aux.el (dired-diff): Remove (require 'diff) since
3376         `diff-latest-backup-file' is now autoloaded.
3378 2012-09-20  Chong Yidong  <cyd@gnu.org>
3380         * vc/diff.el (diff-latest-backup-file): Autoload.
3382 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3384         * calc/calc.el: Remove redundant autoload shape check.
3385         (sel-mode): Don't defvar.
3386         (calc-get-stack-element): Add `sel-mode' arg instead.
3387         (calc-top, calc-top-list): Pass it this additional argument.
3388         * calc/calc-store.el (calc-store-map):
3389         * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
3390         (calc-map-equation, calc-outer-product, calc-inner-product):
3391         * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
3393         * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
3395 2012-09-19  Juri Linkov  <juri@jurta.org>
3397         * dired-aux.el (dired-diff): Add (require 'diff) because
3398         `diff-latest-backup-file' is not autoloaded.
3399         (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
3400         of `dired-get-filename' to t to not report error when there is
3401         no default file on the current line.
3403 2012-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3405         * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
3406         macroexp--eval-if-compile.
3407         (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
3408         (macroexp--expand-all): Use them (bug#12371).
3410         * doc-view.el (doc-view-guess-paper-size)
3411         (doc-view-scale-bounding-box): Fix unbound `caddr'.
3413 2012-09-19  Tassilo Horn  <tsdh@gnu.org>
3415         New feature: set optimal slice from BoundingBox information.
3416         * doc-view.el (doc-view-mode-map): Add keybinding.
3417         (doc-view-menu): Add menu entry.
3418         (doc-view-set-slice): Adapt docstring.
3419         (doc-view-get-bounding-box, doc-view-guess-paper-size)
3420         (doc-view-scale-bounding-box)
3421         (doc-view-set-slice-from-bounding-box): New functions.
3422         (doc-view-paper-sizes): New defvar.
3424 2012-09-19  Glenn Morris  <rgm@gnu.org>
3426         * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
3427         (byte-compile-log-warning): Autoload.  (Bug#12371)
3429         * calendar/calendar.el (calendar-american-month-header)
3430         (calendar-european-month-header, calendar-iso-month-header)
3431         (calendar-month-header): New options.
3432         (calendar-set-date-style): Set calendar-month-header.  Redraw calendar.
3433         (calendar-generate-month): Use calendar-month-header.  (Bug#9510)
3435 2012-09-19  Jan Djärv  <jan.h.d@swipnet.se>
3437         * startup.el (command-line-ns-option-alist): Add -g and --geometry.
3439 2012-09-18  Juri Linkov  <juri@jurta.org>
3441         * dired-aux.el (dired-diff): Restore original functionality of
3442         getting the default value, but keep new feature of using the
3443         latest existing backup file (`diff-latest-backup-file').
3445 2012-09-18  Juri Linkov  <juri@jurta.org>
3447         * dired.el (dired-mark): If the region is active in Transient Mark
3448         mode, mark all files in the active region.  Doc fix.
3449         (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
3450         Doc fix.  (Bug#10624)
3452 2012-09-18  Juri Linkov  <juri@jurta.org>
3454         * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
3455         attributes for M-n are pulled from the file at point.
3456         (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
3457         Suggested by Drew Adams.  (Bug#10624)
3459 2012-09-18  Dmitry Gutov  <dgutov@yandex.ru>
3461         * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
3462         whitespace after "end".
3463         (ruby-do-end-to-brace): Collapse block to one line if it fits
3464         within fill-column.
3466 2012-09-18  Martin Rudalics  <rudalics@gmx.at>
3468         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
3469         value.
3470         (debug): Don't remove debugger window when debugger is expected
3471         to be back.
3473 2012-09-18  Chong Yidong  <cyd@gnu.org>
3475         * custom.el (defface): Doc fix.
3477         * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
3479 2012-09-18  Martin Blais  <blais@furius.ca>  (tiny change)
3481         * progmodes/compile.el (compilation-start): Use compilation-always-kill
3482         to initialize query-on-exit; then test that instead (bug#12288).
3484 2012-09-17  Stefan Merten  <smerten@oekonux.de>
3486         * textmodes/rst.el: Add support for `testcover'.
3487         (rst-defcustom-testcover, rst-testcover-add-compose)
3488         (rst-testcover-add-1value): New functions.
3489         (rst-portable-mark-active-p): Replace by `use-region-p'.
3490         (rst-update-section, rst-classify-adornment)
3491         (rst-find-title-line): Mark `1value' forms.
3492         (rst-classify-adornment): Remove superfluous form.
3493         (rst-update-section, rst-get-adornments-around)
3494         (rst-adornment-complete-p, rst-get-next-adornment)
3495         (rst-adjust, rst-promote-region)
3496         (rst-display-adornments-hierarchy, rst-straighten-adornments)
3497         (rst-find-pfx-in-region, rst-section-tree-rec)
3498         (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
3499         (rst-toc-node, rst-toc, rst-forward-section)
3500         (rst-iterate-leftmost-paragraphs)
3501         (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
3502         (rst-bullet-list-region)
3503         (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
3504         (rst-compile-find-conf, rst-compile)
3505         (rst-repeat-last-character): Fix style.
3507 2012-09-17  Chong Yidong  <cyd@gnu.org>
3509         * comint.el (comint--complete-file-name-data): Don't add a space
3510         if the status is `sole'; that adds a gratuitous space in the
3511         completion-cycling case (Bug#12092).
3513         * pcomplete.el (pcomplete-completions-at-point): Likewise.
3515 2012-09-17  Richard Stallman  <rms@gnu.org>
3517         * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
3518         only in the mime-shown mode, not in raw mode.
3519         (rmail-mime): Toggle off mime by displaying the message without
3520         mime processing.  (Bug#12305)
3522         * mail/rmail.el (rmail-retry-failure):
3523         Turn off mime processing first.  (Bug#12037)
3525         * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
3527 2012-09-17  Chong Yidong  <cyd@gnu.org>
3529         * shell.el (shell-file-name-chars, shell-file-name-quote-list)
3530         (shell-dynamic-complete-functions): Convert to defcustom.
3531         (shell-prompt-pattern, shell-completion-fignore): Doc fix.
3533         * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
3534         * comint.el (comint-prompt-read-only):
3535         * custom.el (defcustom):
3536         * hi-lock.el (hi-lock-mode):
3537         * ibuffer.el (ibuffer-formats):
3538         * ielm.el (ielm-prompt-read-only):
3539         * novice.el (disable-command):
3540         * saveplace.el (toggle-save-place):
3541         * speedbar.el (speedbar-supported-extension-expressions):
3542         * startup.el (auto-save-list-file-prefix, init-file-user)
3543         (after-init-hook, inhibit-startup-echo-area-message):
3544         * strokes.el (strokes-help):
3545         * time-stamp.el (time-stamp):
3546         * calendar/calendar.el (calendar, diary-file):
3547         * calendar/diary-lib.el (diary-mail-entries, diary)
3548         (diary-list-entries-hook):
3549         * calendar/holidays.el (holidays, calendar-holidays):
3550         * calendar/lunar.el (lunar-phases):
3551         * calendar/solar.el (sunrise-sunset):
3552         * emulation/edt.el (edt-load-keys):
3553         * emulation/viper.el (viper-mode):
3554         * eshell/em-alias.el (eshell-command-aliases-list):
3555         * eshell/esh-util.el (eshell-convert-numeric-arguments):
3556         * international/ogonek.el (ogonek-information):
3557         * net/tramp-cmds.el (tramp-bug):
3558         * net/quickurl.el (quickurl-reread-hook-postfix):
3559         * play/decipher.el (decipher-font-lock-keywords):
3560         * progmodes/cc-styles.el (c-set-style):
3561         * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
3562         * progmodes/inf-lisp.el (inferior-lisp-prompt):
3563         * progmodes/octave-mod.el (octave-mode):
3564         * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
3565         * progmodes/verilog-mode.el (verilog-read-defines):
3566         * textmodes/two-column.el (2C-mode): Likewise.
3568 2012-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
3570         * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
3571         that holds many addresses.
3573 2012-09-16  Chong Yidong  <cyd@gnu.org>
3575         * align.el (align-areas): Call the indication function with
3576         positions instead of markers for arguments (Bug#12343).
3578         * files.el (parse-colon-path): Use split-string (Bug#12351).
3580         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
3581         (display-buffer-function): Mark as obsolete.
3583         * progmodes/compile.el (compilation-parse-errors): Accept list
3584         values similar to font-lock-keywords (Bug#12136).
3585         Suggested by Oleksandr Manzyuk.
3586         (compilation-error-regexp-alist): Doc fix.
3588 2012-09-15  Glenn Morris  <rgm@gnu.org>
3590         * version.el (emacs-bzr-version-bzr): New function.
3591         (emacs-bzr-get-version): Add optional EXTERNAL argument.
3593         * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
3594         checkouts, check the parent dirstate matches the branch.
3595         Add "--tree" to "bzr revno" arguments.  Don't try to shorten the
3596         empty string.
3598         * version.el (emacs-bzr-version): Doc fix.
3599         (emacs-bzr-version-dirstate): New function.
3600         (emacs-bzr-get-version): For lightweight checkouts, if the parent
3601         is local try and check that it matches the branch.  If not, just
3602         use dirstate information.  (Bug#12441)
3604 2012-09-14  Juri Linkov  <juri@jurta.org>
3606         * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
3607         (Bug#12399)
3609 2012-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3611         * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
3613         * emacs-lisp/edebug.el: Miscellaneous cleanup.
3614         Remove obsolete byte-compiler hack that tried to silence some warnings.
3615         (edebug-submit-bug-report): Remove.
3616         (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
3617         Remove aliases, use the un-prefixed name instead.
3618         (edebug-pop-to-buffer): Consider other frames.
3619         (edebug-original-read):: Make it more obvious that it's always defined.
3620         (edebug--make-form-data-entry, edebug--form-data-name)
3621         (edebug--form-data-begin, edebug--form-data-end): Rename from the
3622         single-dashed name, and implement with cl-defstruct.
3623         (edebug-set-form-data-entry): Use the standard accessors.
3624         (edebug-make-top-form-data-entry): Use push.
3625         (edebug-no-match): Drop useless `funcall'.
3626         (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
3627         to functions.
3628         (defsubst, dont-compile, eval-when-compile, eval-and-compile)
3629         (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
3630         (with-syntax-table, push, pop, 1value, noreturn, defadvice)
3631         (easy-menu-define, with-custom-print): Remove redundant specs.
3632         (edebug-outside-overriding-local-map)
3633         (edebug-outside-overriding-terminal-local-map): Remove, unused.
3634         (edebug--display): Bind unread-command-events directly to nil rather
3635         than binding it to unread-command-events and later setting it to nil.
3636         (edebug--display): Kill edebug-eval-buffer here...
3637         (edebug--recursive-edit): ...rather than here.
3638         Bind standard-output and standard-input.
3639         (edebug-eval): Check cl-macroexpand-all is fboundp.
3640         (edebug-temp-display-freq-count): Fix last change.
3642         * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
3643         * subr.el (noreturn, 1value): Add `debug' spec.
3644         * emacs-lisp/advice.el: Require cl-lib.
3645         (ad-copy-tree): Remove, use copy-tree instead.
3646         (ad-dolist): Remove use dolist or cl-dolist instead.
3647         (ad-do-return): Remove, use cl-return instead.
3648         (defadvice): Add `debug' spec.
3650 2012-09-13  Juri Linkov  <juri@jurta.org>
3652         * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
3653         (Bug#12399)
3655 2012-09-13  Glenn Morris  <rgm@gnu.org>
3657         * calc/calc.el (math-compose-expr):
3658         * calc/calc-ext.el (math-compose-expr):
3659         * progmodes/cc-defs.el (cl-macroexpand-all):
3660         * progmodes/cc-langs.el (delete-duplicates, mapcan)
3661         (cl-macroexpand-all): Update declarations.
3663         * vc/vc.el: No need to require ediff.
3664         (ediff-load-version-control): Declare.
3665         (ediff-vc-internal): Fix declaration.
3666         (vc-version-ediff): Require ediff.
3668 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
3670         Use a more backwards-compatible timer format (Bug#12430).
3671         * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
3672         being right after USECS, as that better supports old code that
3673         inadvisedly looked directly at the timer vector.
3675 2012-09-13  Kenichi Handa  <handa@gnu.org>
3677         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
3678         ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
3679         `coding-priority' property of these language environment.
3681 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
3683         Fix glitches caused by addition of psec to timers (Bug#12430).
3684         * image.el (image-animate-timer):
3685         * time.el (display-time-world-timer):
3686         Use timer--function and timer--args rather than raw access to
3687         timer vector.
3689 2012-09-13  Glenn Morris  <rgm@gnu.org>
3691         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
3692         If not compiling a file, try using load-file-name.
3694 2012-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3696         * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
3697         Fix last change.
3698         (edebug-update-eval-list): Use `push'.
3700         * emacs-lisp/edebug.el: Use lexical-binding.
3701         Remove the "edebug-" prefix from non-dynamically-scoped variables.
3702         Mark unused args with underscore.
3703         (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
3704         (edebug-form-data): Use defvar-local.
3705         (edebug-make-before-and-after-form, edebug-make-after-form):
3706         Use backquote.
3707         (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
3708         Not dynamically scoped any more.
3709         (edebug--enter-trace): Add arguments `function' and `args'.
3710         Rename from edebug-enter-trace.
3711         (edebug-enter): Call it accordingly.  Bind edebug-function explicitly.
3712         (edebug--update-coverage): Add `after-index' and `value' args.
3713         Rename from edebug-update-coverage.
3714         (edebug-slow-after): Call it accordingly.
3715         (edebug--recursive-edit): Add arg `arg-mode'.  Rename from
3716         edebug-recursive-edit.
3717         (edebug--display): Call it accordingly.  Add args `value',
3718         `offset-index', and `arg-mode'.  Rename from edebug-display.
3719         (edebug-debugger, edebug): Call it accordingly.
3720         (edebug-eval-display-list): Use dolist.
3722 2012-09-12  Juri Linkov  <juri@jurta.org>
3724         * info.el (Info-search): Don't check for isearch-mode and
3725         isearch-regexp before let-binding search-spaces-regexp to
3726         Info-search-whitespace-regexp.
3727         (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
3728         search-whitespace-regexp if isearch-lax-whitespace or
3729         isearch-regexp-lax-whitespace is non-nil.
3730         (Info-mode): Don't set local variable search-whitespace-regexp.
3731         http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
3733 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3735         * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
3736         (debugger-env-macro): Remove support for unread-command-char.
3738         * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
3739         the temporary map re-appearing on emulation-mode-map-alists.
3741         * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
3742         since 22.1.
3744         * ehelp.el (with-electric-help): Accept functions in
3745         electric-help-form-to-execute.
3746         (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
3747         And replace unread-command-char -> unread-command-events.
3749 2012-09-12  Michael Albinus  <michael.albinus@gmx.de>
3751         Sync with Tramp 2.2.6.
3753         * net/tramp.el (tramp-accept-process-output): Don't use
3754         JUST-THIS-ONE in the XEmacs case.
3756         * net/trampver.el: Update release number.
3758 2012-09-12  Martin Rudalics  <rudalics@gmx.at>
3760         * emacs-lisp/debug.el (debugger-previous-window-height):
3761         New variable.
3762         (debug): When debugger-jumping-flag is non-nil try to restore
3763         height of debugger window.  (Bug#8789)
3765 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3767         * emacs-lisp/edebug.el (edebug-enter): Don't mess with
3768         overriding-local-map and pre/post-command-hook here.
3769         (edebug-recursive-edit): Do it here instead (bug#12345).
3770         (edebug-outside-unread-command-char): Remove all uses of
3771         unread-command-char.
3773         * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
3774         inhibit-debugger is bound instead.
3776 2012-09-11  Bastien Guerry  <bzg@gnu.org>
3778         * subr.el (set-temporary-overlay-map): Add a docstring.
3779         (Bug#12346)
3781 2012-09-11  Bastien Guerry  <bzg@gnu.org>
3783         * minibuffer.el (completion-table-subvert): Fix docstring.
3784         (Bug#12347)
3786 2012-09-11  Bastien Guerry  <bzg@gnu.org>
3788         * help-fns.el (describe-variable): Fix typo.  (Bug#12346)
3790 2012-09-10  Michael R. Mauger  <mmaug@yahoo.com>
3792         * progmodes/sql.el: Version 3.1
3793         (sql-db2-escape-newlines): New variable.
3794         (sql-escape-newlines-filter): Use it.
3796 2012-09-10  Juanma Barranquero  <lekktu@gmail.com>
3798         * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
3800 2012-09-10  Dan Nicolaescu  <dann@gnu.org>
3802         * vc/diff-mode.el (diff-mode-menu):
3803         Bind diff-remove-trailing-whitespace.
3805 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3807         * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
3808         (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
3809         (emacs-lisp-byte-code-mode): New functions.
3810         (eval-sexp-add-defvars): Don't skip defvars in column >0.
3811         (eval-defun-2): Remove bogus interactive spec.
3812         (lisp-indent-line): Remove redundant whole-exp code, now done in
3813         indent-according-to-mode.
3814         (save-match-data): Remove redundant indent data.
3816         * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
3817         Use `declare'.
3819 2012-09-09  Juri Linkov  <juri@jurta.org>
3821         * replace.el (replace-regexp-lax-whitespace): New defcustom.
3822         (replace-lax-whitespace, query-replace-regexp)
3823         (query-replace-regexp-eval, replace-regexp): Doc fix.
3824         (perform-replace, replace-highlight): Let-bind
3825         isearch-lax-whitespace to replace-lax-whitespace and
3826         isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
3828         * isearch.el (isearch-query-replace): Let-bind
3829         replace-lax-whitespace to isearch-lax-whitespace and
3830         replace-regexp-lax-whitespace to
3831         isearch-regexp-lax-whitespace.  (Bug#10885)
3833 2012-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3835         * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
3837 2012-09-09  Alan Mackenzie  <acm@muc.de>
3839         * progmodes/cc-engine.el (c-state-cache-init):
3840         Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
3841         (c-record-parse-state-state):
3842         Record c-state-semi-nonlit-pos-cache\(-limit\)?.
3844 2012-09-09  Andreas Schwab  <schwab@linux-m68k.org>
3846         * register.el (register-separator): Rename from
3847         separator-register.  All uses changed.  Doc fix.
3848         (register): Fix version.
3850 2012-09-09  Chong Yidong  <cyd@gnu.org>
3852         * replace.el (query-replace-map): Bind four new symbols for
3853         requesting window scrolling.
3855         * subr.el (y-or-n-p): Handle the window-scrolling bindings in
3856         query-replace-map (Bug#8948).
3858         * custom.el (custom-theme-load-confirm): Use y-or-n-p.
3860         * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
3861         since they are now in query-replace-map.
3863         * window.el (scroll-other-window-down): Make the arg optional.
3865 2012-09-09  Chong Yidong  <cyd@gnu.org>
3867         * files.el (hack-local-variables-confirm): Use quit-window to kill
3868         the *Local Variables* buffer.
3870 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
3872         * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
3873         not just expect to be at its beginning.  Adjust callees.
3874         Succeed when do-end block has no space before the pipe character.
3875         (ruby-brace-to-do-end): When the original block is one-liner,
3876         convert to multiline.  Reindent the result.
3878 2012-09-08  Jambunathan K  <kjambunathan@gmail.com>
3880         * register.el (register): New group.
3881         (separator-register): New user option.
3882         (increment-register): Route it to `append-to-register', if
3883         register contains text.  Implication is that `C-x r +' can now be
3884         used for appending to a text register (bug#12217).
3885         (append-to-register, prepend-to-register): Add separator based on
3886         `separator-register'.
3888 2012-09-08  Alan Mackenzie  <acm@muc.de>
3890         AWK Mode: make auto-newline work when there's "==" in the pattern.
3891         * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
3892         correctly.
3893         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
3894         Test more rigorously for "=" token.
3896 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
3898         * progmodes/ruby-mode.el (ruby-match-expression-expansion):
3899         Only fail when reached LIMIT.
3901 2012-09-08  Chong Yidong  <cyd@gnu.org>
3903         * dired.el (dired-mode-map): Don't bind M-=.
3905         * dired-aux.el (dired-diff): Use backup file as default.
3907 2012-09-08  Drew Adams  <drew.adams@oracle.com>
3909         * subr.el (add-to-history): Fix delete usage (Bug#12314).
3911 2012-09-08  Chong Yidong  <cyd@gnu.org>
3913         * subr.el (syntax-after, syntax-class): Doc fix.
3915 2012-09-08  Martin Rudalics  <rudalics@gmx.at>
3917         * window.el (display-buffer-in-previous-window): New buffer
3918         display action function.
3920         * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
3921         (debugger-previous-window): New variable.
3922         (debug): Rewrite using display-buffer-in-previous-window,
3923         quit-restore-window and debugger-bury-or-kill.  (Bug#8789)
3925 2012-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3927         * emacs-lisp/byte-run.el (defun): Tweak message.  Simplify code.
3929 2012-09-07  Matt McClure  <mlm@aya.yale.edu>  (tiny change)
3931         * progmodes/python.el (python-shell-send-string):
3932         When default-directory is remote, create temp file on remote
3933         filesystem.
3934         (python-shell-send-file): When file is remote, pass local view of
3935         file paths to remote Python interpreter.  (Bug#12340)
3937 2012-09-07  Chong Yidong  <cyd@gnu.org>
3939         * window.el (switch-to-buffer): Doc fix (Bug#12181).
3941         * files.el (after-find-file): Don't fail on a read-only buffer if
3942         require-final-newline is `visit' or `visit-save' (Bug#11156).
3944         * subr.el (read-char-choice): Allow quitting via ESC ESC.
3946         * userlock.el (ask-user-about-supersession-threat):
3947         Use read-char-choice (Bug#12093).
3949 2012-09-07  Chong Yidong  <cyd@gnu.org>
3951         * subr.el (buffer-narrowed-p): New function.
3953         * ses.el (ses-widen):
3954         * simple.el (count-words--buffer-message):
3955         * net/browse-url.el (browse-url-of-buffer): Use it.
3957         * simple.el (count-words-region): Don't signal an error if there
3958         is a non-nil prefix arg and the mark is not set.
3960         * help.el (describe-key-briefly): Allow the message to be seen
3961         when invoked from the minibuffer (Bug#7014).
3963 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
3965         * progmodes/ruby-mode.el (ruby-end-of-defun)
3966         (ruby-beginning-of-defun): Simplify, allow indentation before
3967         block beginning and end keywords.
3968         (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
3969         (ruby-end-of-defun): Expect that the point is at the beginning of
3970         the defun.
3972 2012-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3974         * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
3975         (bug#12367).
3976         (cl--make-usage-args): Strip _ from argument names.
3978 2012-09-06  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3980         * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
3981         obsolete alias speedbar-key-map.
3982         (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
3983         (vhdl-index-menu-init): Don't use obsolete variable
3984         font-lock-maximum-size.
3986 2012-09-06  Chong Yidong  <cyd@gnu.org>
3988         * frame.el (window-system-version): Mark as obsolete.
3990         * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
3991         of obsolete variable speedbar-key-map.
3993 2012-09-06  Juri Linkov  <juri@jurta.org>
3995         * replace.el (replace-lax-whitespace): New defcustom.
3996         (query-replace, query-replace-regexp, query-replace-regexp-eval)
3997         (replace-string, replace-regexp): Mention it in docstrings.
3998         (perform-replace, replace-highlight): Let-bind
3999         isearch-lax-whitespace and isearch-regexp-lax-whitespace according
4000         to the values of replace-lax-whitespace and regexp-flag.
4001         Don't let-bind search-whitespace-regexp.  (Bug#10885)
4003         * isearch.el (isearch-query-replace): Let-bind
4004         replace-lax-whitespace instead of let-binding
4005         replace-search-function and replace-re-search-function.
4006         (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
4007         and isearch-regexp-lax-whitespace to lazy-highlight variables.
4008         (isearch-toggle-symbol): Set isearch-regexp to nil
4009         in isearch-word mode (like in isearch-toggle-word).
4011 2012-09-06  Juri Linkov  <juri@jurta.org>
4013         * replace.el (replace-search-function)
4014         (replace-re-search-function): Set default values to nil.
4015         (perform-replace): Let-bind isearch-related variables based on
4016         replace-related values, call `isearch-search-fun' and let-bind
4017         the result to `search-function'.  Remove code that sets
4018         `search-function' and `search-string' separately for
4019         `delimited-flag'.
4020         (replace-highlight): Add new argument `delimited-flag' and
4021         rename other arguments to the names used in `perform-replace'.
4022         Let-bind `isearch-word' to the argument `delimited-flag'.
4023         (Bug#10885, bug#10887)
4025 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
4027         * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
4028         ruby-beginning-of-indent, simplify, allow all keywords to have
4029         indentation before them.
4030         (ruby-beginning-of-indent): Adjust for above.  Search until the
4031         found point is not inside a string or comment.
4032         (ruby-font-lock-keywords): Allow symbols to start with "@"
4033         character, give them higher priority than variables.
4034         (ruby-syntax-propertize-function)
4035         (ruby-font-lock-syntactic-keywords): Remove the "not comments"
4036         matchers.  Expression expansions are not comments when inside a
4037         string, and there comment syntax status is irrelevant.
4038         (ruby-match-expression-expansion): New function.  Check that
4039         expression expansion is inside a string, and it's not escaped.
4040         (ruby-font-lock-keywords): Use it.
4042 2012-09-05  Martin Rudalics  <rudalics@gmx.at>
4044         * help.el (temp-buffer-max-height): New default value.
4045         (temp-buffer-resize-frames): New option.
4046         (resize-temp-buffer-window): Optionally resize frame.
4048         * window.el (fit-frame-to-buffer-bottom-margin): New option.
4049         (fit-frame-to-buffer): New function.
4051 2012-09-05  Glenn Morris  <rgm@gnu.org>
4053         * emulation/cua-rect.el (cua--init-rectangles):
4054         * textmodes/picture.el (picture-mode-map):
4055         * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
4056         like forward-char and backward-char.  (Bug#12317)
4058 2012-09-05  Leo Liu  <sdl.web@gmail.com>
4060         * progmodes/flymake.el (flymake-warning-re): New variable.
4061         (flymake-parse-line): Use it.
4063 2012-09-05  Glenn Morris  <rgm@gnu.org>
4065         * calendar/holidays.el (holiday-christian-holidays):
4066         Rename an entry.  (Bug#12289)
4068 2012-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4070         * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
4071         (bug#12222).
4073 2012-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
4075         * loadup.el: Load macroexp.  Remove hack.
4076         * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
4077         (macroexp--expand-all): Use it to get better warnings.
4078         (macroexp--backtrace, macroexp--trim-backtrace-frame)
4079         (internal-macroexpand-for-load): New functions.
4080         (macroexp--pending-eager-loads): New var.
4081         (emacs-startup-hook): New hack to replace one in loadup.el.
4082         * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
4083         (cl--compiler-macro-cXXr): Move to top, before they can be used.
4084         (cl-psetf): Simplify.
4085         (cl-defstruct): Add indent rule.
4087 2012-09-04  Lars Ingebrigtsen  <larsi@gnus.org>
4089         * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
4090         over `user-mail-address' for the SMTP MAIL FROM envelope.
4091         (smtpmail-via-smtp): Ditto.
4093 2012-09-04  Dmitry Gutov  <dgutov@yandex.ru>
4095         * progmodes/ruby-mode.el: Clean up keybindings.
4096         (ruby-mode-map): Don't bind ruby-electric-brace,
4097         ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
4098         backward-kill-word, reindent-then-newline-and-indent.
4099         (ruby-mark-defun): Remove.
4100         (ruby-electric-brace): Remove.  Obsoleted by electric-indent-chars.
4101         (ruby-mode): Set local beginning-of-defun-function and
4102         end-of-defun-function values.
4104 2012-09-03  Martin Rudalics  <rudalics@gmx.at>
4106         * window.el (temp-buffer-window-setup-hook)
4107         (temp-buffer-window-show-hook): New hooks.
4108         (temp-buffer-window-setup, temp-buffer-window-show)
4109         (with-temp-buffer-window): New functions.
4110         (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
4111         (special-display-popup-frame): Make sure the window used shows BUFFER.
4113         * help.el (temp-buffer-resize-mode): Fix doc-string.
4114         (resize-temp-buffer-window): New optional argument WINDOW.
4116         * files.el (recover-file, save-buffers-kill-emacs):
4117         * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
4119 2012-09-02  Michael Albinus  <michael.albinus@gmx.de>
4121         * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
4122         remote definition of `default-directory', ensure we can connect.
4124 2012-09-02  Juri Linkov  <juri@jurta.org>
4126         Toggle whitespace matching mode with M-s SPC.
4127         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
4129         * isearch.el (search-whitespace-regexp): Doc fix.
4130         Remove cons cell customization.
4131         (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
4132         (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
4133         New variables.
4134         (isearch-forward, isearch-forward-regexp): Doc fix.
4135         (isearch-toggle-lax-whitespace): New command.
4136         (search-forward-lax-whitespace, search-backward-lax-whitespace)
4137         (re-search-forward-lax-whitespace)
4138         (re-search-backward-lax-whitespace): New functions.
4139         (isearch-whitespace-regexp): Remove function.
4140         (isearch-query-replace): Let-bind replace-search-function and
4141         replace-re-search-function.
4142         (isearch-occur): Let-bind search-spaces-regexp according to the
4143         value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
4144         (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
4145         condition for C-q SPC.
4146         (isearch-search-fun-default): Use new functions mentioned above.
4147         (isearch-search-forward, isearch-search-backward): Remove functions.
4148         (isearch-search): Don't let-bind search-spaces-regexp.
4149         (isearch-lazy-highlight-space-regexp): Remove variable.
4150         (isearch-lazy-highlight-lax-whitespace)
4151         (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
4152         (isearch-lazy-highlight-new-loop): Use them.
4153         (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
4155 2012-09-02  Chong Yidong  <cyd@gnu.org>
4157         * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
4159 2012-09-02  Glenn Morris  <rgm@gnu.org>
4161         * simple.el (undo): Tweak message in undo-only case.  (Bug#12283)
4163 2012-09-01  Glenn Morris  <rgm@gnu.org>
4165         * term.el: Tidy up menu definitions.
4166         (term-mode-map): Use easymenu for In/Out, Complete menus.
4167         (term-pager-break-map): Initialize in the defvar.
4168         (term-terminal-menu, term-signals-menu): Define with easymenu.
4169         (term-terminal-menu): Also show it in line-mode.  (Bug#11957)
4170         (term-pager-menu): New, extracted from term-process-pager.
4171         (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
4172         (term-update-mode-line): Propertize line/char and page items.
4173         (term-process-pager): Move keymap initialization elsewhere.
4175 2012-09-01  Martin Rudalics  <rudalics@gmx.at>
4177         * window.el (switch-to-prev-buffer): Handle additional values of
4178         BURY-OR-KILL argument.  Don't switch in minibuffer window.
4179         (switch-to-next-buffer): Don't switch in minibuffer window.
4180         (quit-restore-window): New function based on quit-window.
4181         Handle additional values of former KILL argument.
4182         (quit-window): Call quit-restore-window with appropriate
4183         interpretation of KILL argument.
4184         (display-buffer-below-selected): New buffer display action
4185         function.
4187 2012-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4189         * minibuffer.el (completion-at-point-functions): Complete docstring
4190         (bug#12254).
4192 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4194         Better seed support for (random).
4195         * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
4196         * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
4197         * play/mpuz.el, play/tetris.el, play/zone.el:
4198         * calc/calc-comb.el (math-init-random-base):
4199         * play/blackbox.el (bb-init-board):
4200         * play/life.el (life):
4201         * server.el (server-use-tcp):
4202         * type-break.el (type-break):
4203         Remove unnecessary call to (random t).
4204         * net/sasl.el (sasl-unique-id-function):
4205         Change (random t) to (random), now that the latter is more random.
4206         * play/life.el (life-initialized): Remove no-longer-needed var.
4208 2012-08-31  Alp Aker  <alp.tekin.aker@gmail.com>
4210         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4211         Consider frame's buffer predicate when choosing the buffer.
4212         (Bug#12081)
4214 2012-08-30  Richard Stallman  <rms@gnu.org>
4216         * simple.el (special-mode-map): Delete binding for `z'.
4218 2012-08-30  Andreas Schwab  <schwab@linux-m68k.org>
4220         * progmodes/compile.el (compilation-always-kill): Doc fix.
4222 2012-08-30  Chong Yidong  <cyd@gnu.org>
4224         * window.el (display-buffer-reuse-frames): Make the obsolescence
4225         message more informative.
4227 2012-08-30  Glenn Morris  <rgm@gnu.org>
4229         * paren.el (show-paren-delay):
4230         Add a :set function.  Doc fix.  (Bug#12297)
4232 2012-08-29  Martin Blais  <blais@furius.ca>  (tiny change)
4234         * progmodes/compile.el (compilation-always-kill): New var.
4235         (compilation-start): Use it.
4237 2012-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4239         * simple.el (read-only-mode): Move from files.el for bootstrapping.
4240         * files.el (read-only-mode): Move to simple.el.
4242         * files.el (read-only-mode): New minor mode.
4243         (toggle-read-only): Use it and mark obsolete.
4244         (find-file--read-only):
4245         * vc/vc.el (vc-next-action, vc-checkout):
4246         * vc/vc-cvs.el (vc-cvs-checkout):
4247         * obsolete/vc-mcvs.el (vc-mcvs-update):
4248         * ffap.el (ffap--toggle-read-only): Update callers.
4250 2012-08-29  Michael Albinus  <michael.albinus@gmx.de>
4252         * eshell/esh-ext.el (eshell-external-command): Do not examine
4253         remote shell scripts.
4254         See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
4256         * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
4257         "/usr/local/sbin".
4259 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4261         * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
4263 2012-08-28  Leo Liu  <sdl.web@gmail.com>
4265         * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
4266         completion-at-point.  (Bug#12220)
4268         * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
4270         * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
4272 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4274         * files.el (safe-local-eval-forms): Fix before-save-hook entry to
4275         be buffer-local; add delete-trailing-whitespace (bug#12259).
4277 2012-08-28  Jeremy Moore  <jmoore@ieee.org>  (tiny change)
4279         * progmodes/hideif.el (hif-compress-define-list):
4280         Fix typo.  (Bug#11951)
4282 2012-08-28  Dan Nicolaescu  <dann@gnu.org>
4284         * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
4285         buffer local setting.
4287         * net/rcirc.el (rcirc-split-message): Fix for buffer-local
4288         rcirc-encode-coding-system.
4290 2012-08-28  Leo Liu  <sdl.web@gmail.com>
4292         * net/rcirc.el (rcirc-split-message): New function.
4293         (rcirc-send-message): Use it.  (Bug#12051)
4295 2012-08-28  Juri Linkov  <juri@jurta.org>
4297         * info.el (Info-fontify-node): Hide empty lines at the end of
4298         the node.  (Bug#12272)
4300 2012-08-27  Drew Adams  <drew.adams@oracle.com>
4302         * dired.el (dired-pop-to-buffer): Make window start at beginning
4303         of buffer (Bug#12281).
4305 2012-08-26  Chong Yidong  <cyd@gnu.org>
4307         * window.el (special-display-regexps, special-display-frame-alist)
4308         (special-display-buffer-names, special-display-function)
4309         (display-buffer-reuse-frames): Mark as obsolete.
4311         * progmodes/compile.el: Don't use display-buffer-reuse-frames.
4313         * help.el (help-print-return-message): Don't treat
4314         display-buffer-reuse-frames specially.
4316 2012-08-26  Chong Yidong  <cyd@gnu.org>
4318         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
4319         New variable, replacing gdb-frame-parameters.
4320         (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
4321         (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
4322         (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
4323         (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
4324         (def-gdb-frame-for-buffer): Macro deleted.  It is easier to define
4325         the functions directly with gdb-display-buffer-other-frame-action.
4326         (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
4327         (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
4328         (gdb-display-stack-buffer, gdb-display-locals-buffer)
4329         (gdb-display-registers-buffer): Define directly.
4330         (def-gdb-display-buffer): Macro deleted.
4331         (gdb-display-buffer): Remove second and third args, callers don't
4332         use them.  Defer to the default display-buffer behavior, apart
4333         from making windows dedicated.
4334         (gdb-setup-windows): Don't call display-buffer unnecessarily.
4336         * progmodes/gud.el (gud-display-line): Just use display-buffer.
4338         * window.el (display-buffer-pop-up-frame): Handle a
4339         pop-up-frame-parameters alist entry.
4340         (display-buffer): Document it.
4342 2012-08-26  Chong Yidong  <cyd@gnu.org>
4344         * isearch.el (search-whitespace-regexp): Make string and nil
4345         values apply to both ordinary and regexp search.  Allow a cons
4346         cell value to distinguish between the two.
4347         (isearch-whitespace-regexp, isearch-search-forward)
4348         (isearch-search-backward): New functions.
4349         (isearch-occur, isearch-search-fun-default, isearch-search)
4350         (isearch-lazy-highlight-new-loop): Use them.
4351         (isearch-forward, isearch-forward-regexp): Doc fix.
4353 2012-08-26  Chong Yidong  <cyd@gnu.org>
4355         * faces.el (help-argument-name): Always inherit from italic
4356         (Bug#12213).
4358 2012-08-25  Martin Rudalics  <rudalics@gmx.at>
4360         * window.el (window--even-window-heights): Even heights when
4361         WINDOW and the selected window form a vertical combination.
4362         (display-buffer-use-some-window): Provide that window used gets
4363         sized back by quit-window.  (Bug#11880) and (Bug#12091)
4365 2012-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4367         Fix file time stamp problem with bzr and CVS (Bug#12001).
4368         * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
4369         in the file's time stamp, since the version control system loses
4370         that information.
4372 2012-08-22  Juri Linkov  <juri@jurta.org>
4374         * info.el (Info-fontify-node): Hide the suffix of the
4375         Info file name in the header line.  (Bug#12187)
4377 2012-08-22  Glenn Morris  <rgm@gnu.org>
4379         * calendar/cal-tex.el (cal-tex-weekly-common):
4380         Restore leading blank page.
4382 2012-08-22  Le Wang  <l26wang@gmail.com>  (tiny change)
4384         * misc.el (forward-to-word, backward-to-word): Activate or extend
4385         the region under `shift-select-mode'.  (Bug#12231)
4387 2012-08-22  Bastien Guerry  <bzg@gnu.org>
4389         * progmodes/executable.el (executable-prefix): Set to "#!" instead
4390         of "#! ".  http://www.in-ulm.de/~mascheck/various/shebang/#details
4391         gives details on why the space is never needed.
4393 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
4395         * window.el (walk-window-tree, window-with-parameter):
4396         New optional argument MINIBUF to control whether these functions
4397         should run on the minibuffer window.
4398         (window-at-side-list): Don't operate on minibuffer window.
4399         (window-in-direction): Simplify and rewrite doc-string.
4400         (window--size-ignore): Rename to window--size-ignore-p.
4401         Update callers.
4402         (display-buffer-in-atom-window, window--major-non-side-window)
4403         (window--major-side-window, display-buffer-in-major-side-window)
4404         (delete-side-window, display-buffer-in-side-window):
4405         New functions.
4406         (window--side-check, window-deletable-p, delete-window)
4407         (delete-other-windows, split-window): Handle side windows and
4408         atomic windows appropriately.
4409         (window--display-buffer): Call display-buffer-record-window also
4410         when the window buffer did not change.
4412 2012-08-22  Christopher Schmidt  <christopher@ch.ristopher.com>
4414         * help-fns.el (help-fns--key-bindings):
4415         Abbreviate non-symbol remap targets.  (Bug#12174)
4417 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
4419         * dired.el (dired-mark-remembered): Don't clobber point.
4420         (Bug#11795)
4422 2012-08-22  Glenn Morris  <rgm@gnu.org>
4424         * progmodes/bug-reference.el (bug-reference): New custom group.
4425         (bug-reference-bug-regexp): Make it a defcustom.
4427 2012-08-22  Daiki Ueno  <ueno@unixuser.org>
4429         * progmodes/js.el (js-indent-level, js-expr-indent-offset)
4430         (js-paren-indent-offset, js-square-indent-offset)
4431         (js-curly-indent-offset): Add :safe (Bug#12257).
4433 2012-08-22  Edward O'Connor  <hober0@gmail.com>
4435         * json.el (json-key-format): Add error properties.
4436         (json-encode-key): New function.
4437         (json-encode-hash-table, json-encode-alist, json-encode-plist):
4438         Use json-encode-key.
4440 2012-08-22  Glenn Morris  <rgm@gnu.org>
4442         * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
4443         (cal-tex-leftday, cal-tex-rightday): Remove functions.
4444         (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
4445         Update for above change.
4447 2012-08-21  Andreas Schwab  <schwab@linux-m68k.org>
4449         * cus-face.el (custom-face-attributes): Fix customize type for the
4450         :underline attribute.  (Bug#11805)
4452 2012-08-21  Martin Rudalics  <rudalics@gmx.at>
4454         * window.el (window-point-1, set-window-point-1): Remove.
4455         (window-in-direction, record-window-buffer)
4456         (set-window-buffer-start-and-point, split-window-below)
4457         (window--state-get-1, display-buffer-record-window):
4458         Replace calls to window-point-1 and set-window-point-1 by calls to
4459         window-point and set-window-point respectively.
4461 2012-08-21  Glenn Morris  <rgm@gnu.org>
4463         * calendar/cal-tex.el (cal-tex-weekly-common): New function.
4464         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
4465         Use it.
4467         * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
4468         (cal-tex-shortday): New function.
4469         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
4470         (cal-tex-cursor-filofax-daily): Use the above.
4472         * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
4473         New functions.
4474         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
4475         (cal-tex-cursor-filofax-week): Use them.
4477         * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
4478         New constants.
4479         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
4480         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
4482         * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
4483         (cal-tex-end-document): Don't rely on buffer name.
4485         * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
4486         Use cal-tex-vspace.
4487         (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
4488         (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
4489         (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
4490         Use cal-tex-arg.
4492         * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
4493         (cal-tex-cursor-week, cal-tex-cursor-week2)
4494         (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
4495         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
4496         (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
4497         (cal-tex-insert-preamble, cal-tex-b-document)
4498         (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
4499         Improve cal-tex-cmd usage.
4501         * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
4502         (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
4503         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
4504         (cal-tex-weekly-paper): New function.
4505         (cal-tex-cursor-week, cal-tex-cursor-week2)
4506         (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
4507         (cal-tex-cursor-day): Use it.
4509         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
4510         (cal-tex-cursor-filofax-week): Remove leading blank page.
4512         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
4513         Add autoload cookie.  For now at least, don't use color, since
4514         no other cal-tex function does.
4516         * calendar/cal-tex.el (cal-tex-cursor-week-iso)
4517         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
4518         (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
4520 2012-08-21  Juri Linkov  <juri@jurta.org>
4522         * info.el (Info-file-attributes): New variable.
4523         (info-insert-file-contents): Add file attributes to
4524         `Info-file-attributes'.  Clear the caches `Info-index-nodes' and
4525         `Info-toc-nodes' when previous modtime of the Info file is less
4526         than new modtime.
4527         (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
4528         of info.el.  (Bug#12230)
4530 2012-08-20  Glenn Morris  <rgm@gnu.org>
4532         * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
4533         * calendar/holidays.el (calendar-holiday-list):
4534         Report errors with display-warning rather than beep'n'sleep.
4536 2012-08-20  Michael Albinus  <michael.albinus@gmx.de>
4538         * net/tramp.el (tramp-accept-process-output): Accept only output
4539         from PROC.  Otherwise, process filters and sentinels might be
4540         confused.  (Bug#12145)
4542 2012-08-20  Chong Yidong  <cyd@gnu.org>
4544         * descr-text.el (describe-text-properties-1): Use overlays-in to
4545         report on empty overlays (Bug#3322).
4547 2012-08-20  Glenn Morris  <rgm@gnu.org>
4549         * mail/rmailout.el (rmail-output-read-file-name):
4550         Trap and report errors in rmail-output-file-alist elements.
4552         * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
4553         since most non-font-lock faces are not also variables).
4555 2012-08-20  Edward Reingold  <reingold@iit.edu>
4557         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
4558         New function.  (Bug12160)
4560 2012-08-19  Glenn Morris  <rgm@gnu.org>
4562         * mail/rmailout.el (rmail-output-read-file-name):
4563         Fix previous change (when the alist is nil or does not match).
4565 2012-08-19  Chong Yidong  <cyd@gnu.org>
4567         * xml.el (xml-escape-string): Don't refer to xml-entity-alist
4568         (Bug#12228).
4570 2012-08-18  Chong Yidong  <cyd@gnu.org>
4572         * simple.el (yank-handled-properties): New defcustom.
4573         (yank-excluded-properties): Add font-lock-face and category.
4574         (yank): Doc fix.
4576         * subr.el (remove-yank-excluded-properties):
4577         Obey yank-handled-properties.  The special handling of font-lock-face
4578         and category is now done this way, instead of being hard-coded.
4579         (insert-for-yank-1): Remove font-lock-face handling.
4580         (yank-handle-font-lock-face-property)
4581         (yank-handle-category-property): New function.
4583 2012-08-17  Glenn Morris  <rgm@gnu.org>
4585         * mail/rmailout.el (rmail-output-read-file-name):
4586         Check rmail-output-file-alist against the full message body
4587         in the correct rmail buffer.  (Bug#12214)
4589 2012-08-17  Michael Albinus  <michael.albinus@gmx.de>
4591         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4592         Eliminate superfluous prompt.  (Bug#12203)
4594 2012-08-17  Chong Yidong  <cyd@gnu.org>
4596         * mouse.el (mouse-appearance-menu): If x-select-font returns a
4597         font spec, set the font directly (Bug#3228).
4599 2012-08-17  Martin Rudalics  <rudalics@gmx.at>
4601         * window.el (delete-window): Fix last fix.
4603 2012-08-16  Martin Rudalics  <rudalics@gmx.at>
4605         * window.el (window-valid-p): Move to window.c.
4606         (window-child, window-child-count, window-last-child)
4607         (window-normalize-window, window-combined-p)
4608         (window-combinations, window-atom-root, window-min-size)
4609         (window-sizable, window-sizable-p, window-size-fixed-p)
4610         (window-min-delta, window-max-delta, window--resizable)
4611         (window--resizable-p, window-resizable, window-total-size)
4612         (window-full-height-p, window-full-width-p, window-body-size)
4613         (window-at-side-p, adjust-window-trailing-edge, maximize-window)
4614         (minimize-window, window-deletable-p, delete-window)
4615         (delete-other-windows, set-window-buffer-start-and-point)
4616         (next-buffer, previous-buffer, split-window, balance-windows-2)
4617         (set-window-text-height, window-buffer-height)
4618         (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
4619         (truncated-partial-width-window-p): Minor code adjustments.
4620         In doc-strings state whether the argument window has to denote a
4621         live, valid or any window.
4623 2012-08-16  Phil Sainty  <psainty@orcon.net.nz>  (tiny change)
4625         * progmodes/subword.el (subword-forward-function)
4626         (subword-backward-function, subword-forward-regexp)
4627         (subword-backward-regexp): New variables.
4628         (subword-forward, subword-forward-internal, subword-backward-internal):
4629         Use new variables, eg so that different "word" definitions
4630         can be easily used.  (Bug#11411)
4632 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4634         * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
4635         for composite selectors.
4636         * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
4637         operation just because we can't find a previous revision.
4639 2012-08-15  Chong Yidong  <cyd@gnu.org>
4641         * frame.el (set-frame-font): Accept font objects.
4643 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4645         * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
4647 2012-08-15  Wolfgang Jenkner  <wjenkner@inode.at>
4649         * man.el (Man-overstrike-face, Man-underline-face)
4650         (Man-reverse-face): Remove variables.
4651         (Man-overstrike, Man-underline, Man-reverse): New faces.
4652         (Man-fontify-manpage): Use them instead of the variables.
4653         (Man-cleanup-manpage): Comment change.
4654         (Man-ansi-color-map): New variable.
4655         (Man-fontify-manpage): Use it.
4656         Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
4658         Implement ANSI SGR parameters 22-27 (bug#12146).
4659         * ansi-color.el (ansi-colors): Doc fix.
4660         (ansi-color-context, ansi-color-context-region): Doc fix.
4661         (ansi-color--find-face): New function.
4662         (ansi-color-apply, ansi-color-apply-on-region): Use it.
4663         Rename the local variable `face' to `codes' since it is now a list of
4664         ansi codes.  Doc fix.
4665         (ansi-color-get-face): Remove.
4666         (ansi-color-parse-sequence): New function, derived from
4667         ansi-color-get-face.
4668         (ansi-color-apply-sequence): Use it.  Rewrite, and support ansi
4669         codes 22-27.
4671 2012-08-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4673         * subr.el (read-passwd): Allow use from a minibuffer.
4675 2012-08-14  Eli Zaretskii  <eliz@gnu.org>
4677         * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
4678         inside comments and strings as identifiers.
4680         * progmodes/gud.el (gud-tooltip-print-command): Quote the
4681         expression to evaluate.  This allows to evaluate expressions with
4682         embedded whitespace.
4683         (gud-tooltip-tips): Add a blank before the newline in the
4684         message-box text, for the benefit of message-box emulation on
4685         MS-Windows.
4687         * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
4688         messages from GDB, pop them up in a tooltip to give feedback to
4689         user.
4690         (gdb-tooltip-print-1): Quote the expression to evaluate.
4691         This allows to evaluate expressions with embedded whitespace.
4692         (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
4693         if the TTY name is nil or empty (which happens when communicating
4694         with the inferior via pipes, e.g. on MS-Windows).
4695         (gdb-internals): If GDB sends a "&\n" empty debugging message,
4696         don't send that to the GUD buffer.
4698 2012-08-14  Glenn Morris  <rgm@gnu.org>
4700         * emacs-lisp/bytecomp.el (byte-compile-setq-default):
4701         Optimize away setq-default with no args, as for setq.  (Bug#12195)
4703 2012-08-14  Chong Yidong  <cyd@gnu.org>
4705         * minibuffer.el (read-file-name): Doc fix (Bug#10881).
4707         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
4708         (Bug#12085).
4710 2012-08-14  Glenn Morris  <rgm@gnu.org>
4712         * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
4714 2012-08-14  Michael Albinus  <michael.albinus@gmx.de>
4716         * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
4717         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4718         Use cached shell name.
4720 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
4722         * progmodes/python.el (python-shell-send-string):
4723         (python-shell-send-setup-code): Do not use `format' with `message'.
4725 2012-08-14  Dmitry Gutov  <dgutov@yandex.ru>
4727         * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
4728         (ruby-percent-literal-beg-re): New constant.
4729         (ruby-syntax-general-delimiters-goto-beg): Rename to
4730         `ruby-syntax-enclosing-percent-literal', improve literal type check.
4731         (ruby-syntax-propertize-general-delimiters): Rename to
4732         `ruby-syntax-propertize-percent-literal', it's a shorter and more
4733         popular term.  Adjust comments everywhere.
4734         (ruby-syntax-propertize-percent-literal): Only propertize when not
4735         inside a simple string or comment.  When the literal is unclosed,
4736         leave the text after it unpropertized.
4737         (ruby-syntax-methods-before-regexp): New constant.
4738         (ruby-syntax-propertize-function): Use it to recognize regexps.
4739         Don't look at the text after regexp, just use the whitelist.
4741 2012-08-14  Andreas Schwab  <schwab@linux-m68k.org>
4743         * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
4744         non-nil always load the compiled file if it exists.  (Bug#12197)
4746 2012-08-14  Chong Yidong  <cyd@gnu.org>
4748         * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
4749         (hi-lock-set-pattern): When deciding whether to use font lock or
4750         overlays, look at font-lock-mode instead of font-lock-fontified
4751         (Bug#12168).
4752         (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
4753         (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
4755 2012-08-14  Daiki Ueno  <ueno@unixuser.org>
4757         * subr.el (internal--after-with-selected-window): Fix typo
4758         (Bug#12193).
4760 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
4762         Use `completion-table-dynamic' for completion functions.
4763         * progmodes/python.el
4764         (python-shell-completion--do-completion-at-point)
4765         (python-shell-completion--get-completions):
4766         Remove functions.
4767         (python-shell-completion-complete-at-point): New function.
4768         (python-completion-complete-at-point): Use it.
4770 2012-08-13  Jambunathan K  <kjambunathan@gmail.com>
4772         * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
4773         (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
4775 2012-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4777         * subr.el (function-get): Refine `autoload' arg so it can also
4778         autoload functions for gv.el (bug#12191).
4779         * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
4780         autoloads macros.
4782         * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
4783         Prefer pcase-let over destructuring-bind.
4784         * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
4785         Also, remove whitespace as we go, rather than after accumulating the
4786         various places.
4788         * subr.el (internal--before-with-selected-window)
4789         (internal--after-with-selected-window): Fix typo seleted->selected.
4790         (with-selected-window): Adjust callers.
4791         Reported by Dmitry Gutov <dgutov@yandex.ru>.
4793 2012-08-13  Bastien Guerry  <bzg@gnu.org>
4795         * window.el (special-display-popup-frame): Minor docstring
4796         enhancement.  (Bug#12172)
4798 2012-08-13  Andreas Schwab  <schwab@linux-m68k.org>
4800         * tar-mode.el (tar-header-data-end): Only ignore size for files of
4801         type 1-6.
4802         (tar-header-block-summarize, tar-get-descriptor): Handle pax
4803         extended headers.
4805         * files.el (hack-local-variables-filter): Remove useless eval.
4807 2012-08-13  Martin Rudalics  <rudalics@gmx.at>
4809         * subr.el (with-selected-window): Fix last change.
4811 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4813         * subr.el (internal--before-with-seleted-window)
4814         (internal--after-with-seleted-window): New functions.
4815         (with-selected-window): Use them, to replace dependency on
4816         tty-top-frame.
4818 2012-08-12  Nobuyoshi Nakada  <nobu@ruby-lang.org>
4820         * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
4821         binding for `newline'.
4822         (ruby-move-to-block): When moving backward, stop at block opening,
4823         not indentation.
4824         * progmodes/ruby-mode.el (ruby-brace-to-do-end)
4825         (ruby-do-end-to-brace, ruby-toggle-block): New functions.
4826         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4827         `ruby-toggle-block'.
4829 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4831         * ibuffer.el (ibuffer-do-toggle-read-only):
4832         * dired.el (dired-toggle-read-only):
4833         * buff-menu.el (Buffer-menu-toggle-read-only):
4834         * bindings.el (mode-line-toggle-read-only):
4835         * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
4837 2012-08-12  Andreas Schwab  <schwab@linux-m68k.org>
4839         * descr-text.el (describe-char): Put the overlays over the
4840         "displayed as" character.
4842 2012-08-12  Jay Belanger  <jay.p.belanger@gmail.com>
4844         * calc/calc-units.el (math-default-units-table): Give an
4845         initial value.
4846         (math-put-default-units): Add options to put composite units and
4847         unit systems in the default units table.
4848         (calc-convert-units): Send composite units to
4849         `math-put-default-units' when appropriate.
4851 2012-08-11  Glenn Morris  <rgm@gnu.org>
4853         * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
4855         * tutorial.el (help-with-tutorial):
4856         * emacs-lisp/copyright.el (copyright-update-directory):
4857         * emacs-lisp/autoload.el (autoload-find-generated-file)
4858         (autoload-find-file): Disable local eval: (for insurance).
4860         * files.el (hack-local-variables-filter): If an eval: form is not
4861         known to be safe, and enable-local-variables is :safe, then ignore
4862         the form totally, as is done for non-eval forms.  (Bug#12155)
4863         This is CVE-2012-3479.
4865 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4867         * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
4868         (rx-form): Simplify.
4870 2012-08-09  Dmitry Gutov  <dgutov@yandex.ru>
4872         * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
4873         ?, _, and : are symbol constituents, ! is not (but kinda should be).
4874         (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
4875         (ruby-syntax-propertize-function): Adjust for changes in
4876         `ruby-syntax-propertize-heredoc'.
4878 2012-08-09 Nobuyoshi Nakada  <nobu@ruby-lang.org>
4880         * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
4881         binding (use `M-;' instead).
4882         (ruby-singleton-class-p): New function.
4883         (ruby-expr-beg, ruby-in-here-doc-p) Use it.
4885 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4887         * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
4889 2012-08-10  Chong Yidong  <cyd@gnu.org>
4891         * progmodes/python.el (python-shell-get-process-name): Don't mess
4892         with same-window-buffer-names.
4894         * eshell/eshell.el (eshell-add-to-window-buffer-names)
4895         (eshell-remove-from-window-buffer-names): Make obsolete.
4896         (eshell-buffer-name, eshell-unload-hook): Don't use them.
4897         (eshell): Just use pop-to-buffer-same-window instead.
4899 2012-08-10  Chong Yidong  <cyd@gnu.org>
4901         * bindings.el: Bind M-= back to count-words-region.
4903         * simple.el (count-words-region): Accept a prefix arg for acting
4904         on the entire buffer.
4905         (count-words--buffer-message): New helper function.
4907 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4909         * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
4910         * subr.el (eventp): `nil' is not an event, and eventp is not hot.
4911         (event-start, event-end): Use posn-at-point to return a more
4912         informative posn.
4913         (posnp): New function.
4914         * mouse.el (popup-menu-normalize-position): Use it.
4916 2012-08-10  Masatake YAMATO  <yamato@redhat.com>
4918         * mouse.el (popup-menu-normalize-position): New function.
4919         (popup-menu): Use `popup-menu-normalize-position' to normalize
4920         the form for POSITION argument.
4922         * term/x-win.el (x-menu-bar-open):
4923         Use the value returend from (posn-at-point) as position
4924         passed to `popup-menu'.
4926 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
4928         * calc/calccomp.el (math-compose-expr): Add extra argument
4929         indicating that parentheses should be put around products in
4930         denominators.  Give multiplication precedence over division during
4931         composition.
4933 2012-08-09  Chong Yidong  <cyd@gnu.org>
4935         * man.el (Man-switches, Man-sed-command, Man-awk-command)
4936         (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
4937         (Man-untabify-command, manual-program): Convert to defcustom
4938         (Bug#10429).
4940         * vc/add-log.el (change-log-mode): Bind comment-start to nil.
4942         * descr-text.el (describe-char): Don't insert extra newlines
4943         (Bug#10127).
4945         * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
4946         (log-view-diff-changeset, log-view-minor-wrap): Likewise.
4948         * align.el (align-region): Delete temporary markers (Bug#10047).
4949         Plus some code cleanups.
4951 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
4953         * progmodes/python.el (python-pdbtrack-tracked-buffer)
4954         (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
4955         (python-shell-internal-last-output): Use make-local-variable
4956         instead of make-variable-buffer-local.
4958 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
4960         * progmodes/python.el: Enhancements to forward-sexp.
4961         (python-nav-forward-sexp): Rename from
4962         python-nav-forward-sexp-function.
4963         (python-nav--forward-sexp, python-nav--backward-sexp):
4964         New functions.
4966 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
4968         * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
4969         modes and simplification modes.
4971 2012-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4973         * delsel.el (delete-selection-pre-hook): Don't propagate the
4974         file-supersession signals (bug#12161).
4976 2012-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4978         * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
4979         (cl-map-extents): Add compatibility aliases (bug#12135).
4981 2012-08-08  Michael Albinus  <michael.albinus@gmx.de>
4983         * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
4984         tests by `ignore-error'.
4985         (tramp-find-shell): Open also a new shell, when cache is already
4986         set.  Reported by Carsten Bormann <cabo@tzi.org>.  (Bug#12148)
4988 2012-08-08  Juri Linkov  <juri@jurta.org>
4990         * bookmark.el: Add `defaults' property to the bookmark record.
4991         (bookmark-current-buffer): Doc fix.
4992         (bookmark-make-record): Add `defaults' property with default values
4993         to the bookmark record.
4994         (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
4995         with `bookmark-insert-current-bookmark'.
4996         (bookmark-set): Get `defaults' property from the bookmark record
4997         and use it in `read-from-minibuffer'.
4998         (bookmark-insert-current-bookmark): Remove function.
5000         * info.el (Info-bookmark-make-record): Add `defaults' property
5001         with values of canonical Info node name, the current Info file
5002         name and the current Info node name.  (Bug#12107)
5004 2012-08-08  Juri Linkov  <juri@jurta.org>
5006         * files.el (basic-save-buffer): Use `buffer-name' as the default
5007         of `read-file-name' when buffer is not visiting a file (bug#12128).
5009 2012-08-08  Juri Linkov  <juri@jurta.org>
5011         * info.el (Info-isearch-search): Doc fix.
5012         (Info-search): Change search-failed message from "initial node" to
5013         "end of node" (bug#12078).
5014         (Info-isearch-search): Change `isearch-string-state' to
5015         `isearch--state-string'.
5017 2012-08-08  Glenn Morris  <rgm@gnu.org>
5019         * language/persian.el: Remove file.
5020         * language/misc-lang.el: Move unique part of persian.el here.
5021         * loadup.el: Remove language/persian.
5023 2012-08-08  Óscar Fuentes  <ofv@wanadoo.es>
5025         * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
5027 2012-08-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5029         * progmodes/python.el Fixed defsubst warning.
5030         (python-syntax-context) Rename from python-info-ppss-context.
5031         (python-syntax-context-type): Rename from
5032         python-info-ppss-context-type.
5033         (python-syntax-comment-or-string-p): Rename from
5034         python-info-ppss-comment-or-string-p.
5036 2012-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
5038         * calc/calc-misc.el (calc-record-why): Don't record a message twice.
5040 2012-08-07  Andreas Schwab  <schwab@linux-m68k.org>
5042         * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
5043         a defcustom that is quoted with backquote.
5045         * calc/calc-prog.el (math-do-defmath): Use backquote forms.
5046         Fix handling of interactive spec when the body uses return.
5047         (math-do-arg-check, math-define-function-body): Use backquote forms.
5048         * calc/calc-ext.el (math-defcache): Likewise.
5049         * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
5050         * allout.el (allout-new-exposure): Likewise.
5051         * calc/calcalg2.el (math-tracing-integral): Likewise.
5052         * info.el (Info-last-menu-item): Likewise.
5053         * emulation/vip.el (vip-loop): Likewise.
5054         * textmodes/artist.el (artist-funcall): Likewise.
5055         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
5056         Construct menu-item directly.
5058         * progmodes/autoconf.el (font-lock-syntactic-keywords):
5059         Don't declare.
5061 2012-08-07  Chong Yidong  <cyd@gnu.org>
5063         * simple.el (deactivate-mark): Preserve text properties when
5064         saving the primary selection (Bug#8384).
5066 2012-08-07  Kevin Ryde  <user42@zip.com.au>
5068         * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
5069         (woman-parse-numeric-value): On a bad .IP line, issue a warning
5070         and continue processing (Bug#12110).
5072 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5074         * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
5075         syntax-propertize-function (bug#10095).
5077 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5079         * help-fns.el (help-fns--key-bindings, help-fns--signature)
5080         (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
5081         describe-function-1.
5082         (describe-function-1): Use them.  Move compiler macro after sig.
5083         (help-fns--compiler-macro): Use function-get.  Assume we're already in
5084         standard-output.  Adjust layout to new call order.
5086         * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
5087         re-binding a symbol that has a symbol-macro (bug#12119).
5089 2012-08-06  Mohsen BANAN  <libre@mohsen.1.banan.byname.net>
5091         * language/persian.el: New file.  (Bug#11812)
5092         * loadup.el: Add language/persian.el.
5094 2012-08-06  Chong Yidong  <cyd@gnu.org>
5096         * window.el (window--maybe-raise-frame): New function.
5097         (window--display-buffer): Split off from here.
5098         (display-buffer-reuse-window, display-buffer-pop-up-frame)
5099         (display-buffer-pop-up-window, display-buffer-use-some-window):
5100         Obey an inhibit-switch-frame action alist entry.
5101         (display-buffer): Update doc.
5103         * replace.el (occur-after-change-function): Avoid losing focus by
5104         using the inhibit-switch-frame display parameter (Bug#12139).
5106 2012-08-06  Fabián Ezequiel Gallina  <fgallina@cuca>
5108         Make internal shell process buffer names start with space.
5109         * progmodes/python.el (python-shell-make-comint): Add optional
5110         argument INTERNAL.
5111         (run-python-internal): Use it.
5112         (python-shell-internal-get-or-create-process): Check for new
5113         internal buffer names.
5115 2012-08-06  Glenn Morris  <rgm@gnu.org>
5117         * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
5118         Do less getting and setting of environment variables.
5120 2012-08-05  Chong Yidong  <cyd@gnu.org>
5122         * proced.el (proced): Add substitution string to docstring to
5123         trigger autoloading of the proced library on C-h f (Bug#1768).
5125         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
5126         Don't show defvars which have no second argument (Bug#8638).
5128         * imenu.el (imenu-generic-expression): Move documentation here
5129         from imenu--generic-function.
5130         (imenu--generic-function): Refer to imenu-generic-expression.
5132 2012-08-05  Vegard Øye  <vegard_oye@hotmail.com>  (tiny change)
5134         * emulation/viper-init.el (viper-deflocalvar): Add docstring and
5135         indentation declaration.
5136         (viper-loop): Add indentation declaration (Bug#7025).
5138 2012-08-05  Chong Yidong  <cyd@gnu.org>
5140         * help-fns.el (describe-variable): Add hyperlink for
5141         directory-local variables files.  Improve buffer-local and
5142         permanent-local reporting; suggested by MON KEY (Bug#6644).
5144         * help-mode.el (help-dir-local-var-def): New button type.
5146         * files.el (kill-buffer-hook): Provide a defvar.
5148 2012-08-05  Glenn Morris  <rgm@gnu.org>
5150         * eshell/esh-ext.el (eshell/addpath):
5151         Also update eshell-path-env.  (Bug#12013)
5153 2012-08-05  Chong Yidong  <cyd@gnu.org>
5155         * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
5157         * fringe.el (fringe-styles): Add docstring.
5158         (fringe--check-mode): New function.
5159         (set-fringe-mode, set-fringe-style): Use it.
5160         (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
5162         * files.el (set-auto-mode): Fix invalid setq call.
5164 2012-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5166         * isearch.el: Misc simplification; use defstruct.
5167         (isearch-mode-map): Dense maps now work like sparse ones.
5168         (isearch--state): New defstruct.
5169         (isearch-string-state, isearch-message-state, isearch-point-state)
5170         (isearch-success-state, isearch-forward-state)
5171         (isearch-other-end-state, isearch-word-state, isearch-error-state)
5172         (isearch-wrapped-state, isearch-barrier-state)
5173         (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
5174         replaced by defstruct's accessors.
5175         (isearch--set-state): Rename from isearch-top-state and change
5176         calling convention.
5177         (isearch-push-state): Use new isearch--get-state.
5178         (isearch-toggle-word): Disable regexp when enabling word.
5179         (isearch-message-prefix): Remove unused arg _c-q-hack.
5180         (isearch-message-suffix): Remove unused arg _ellipsis.
5182 2012-08-04  Andreas Schwab  <schwab@linux-m68k.org>
5184         * simple.el (list-processes--refresh): For a server use :host or
5185         :local as the address.
5186         (list-processes): Doc fix.
5188 2012-08-04  Michal Nazarewicz  <mina86@mina86.com>
5190         * lisp/mpc.el: Support password in host argument.
5191         (mpc--proc-connect): Parse and use new password element.
5192         Set mpc-proc variable instead of returning process.
5193         (mpc-proc): Adjust accordingly.
5195 2012-08-03  Eli Zaretskii  <eliz@gnu.org>
5197         * whitespace.el (whitespace-display-mappings): Use Unicode
5198         codepoints, instead of emacs-mule codepoints.  See
5199         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
5200         for the details.
5202         * files.el (file-truename): Don't skip symlink-chasing part on
5203         windows-nt.  Incorporate the resolution of 8+3 short aliases on
5204         Windows into the loop that recursively chases symlinks.
5205         Compare directory and its parent case-insensitively on MS-Windows and
5206         MS-DOS.
5208 2012-08-03  Chong Yidong  <cyd@gnu.org>
5210         * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
5212         * sort.el (sort-regexp-fields): Doc fix.
5214 2012-08-03  Tassilo Horn  <tsdh@gnu.org>
5216         * textmodes/reftex.el (reftex-compile-variables): Make keyvals
5217         labels regex position point at the expected place.
5219 2012-08-03  MON KEY  <monkey@sandpframing.com>
5221         * net/imap.el (imap-interactive-login, imap-authenticate)
5222         (imap-mailbox-lsub, imap-mailbox-list)
5223         (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
5224         (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
5225         (imap-parse-response): Doc fix.
5227 2012-08-03  João Távora  <joaotavora@gmail.com>
5229         * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
5230         if sexp scanning does not move point (Bug#5734).
5232 2012-08-02  Tassilo Horn  <tsdh@gnu.org>
5234         * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
5235         Add listings, minted, and ctable packages.
5236         (reftex-label-alist-builtin): Move listings, minted, and ctable
5237         entries before LaTeX.
5238         (reftex-label-alist): Docfix.
5240 2012-08-02  Bastien Guerry  <bzg@gnu.org>
5242         * replace.el (occur): Fix docstring (bug#12122).
5244 2012-08-02  Glenn Morris  <rgm@gnu.org>
5246         * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
5248 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
5250         Obsolete alias inactivate-current-input-method-function (Bug#10150).
5251         * international/mule-cmds.el: Create
5252         inactivate-current-input-method-function as an obsolete alias for
5253         deactivate-current-input-method-function.  See Katsumi Yamaoka in
5254         <http://bugs.gnu.org/10150#46>.
5256 2012-08-01  Jay Belanger  <jay.p.belanger@gmail.com>
5258         * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
5259         of nested `if's.
5261 2012-08-01  Glenn Morris  <rgm@gnu.org>
5263         * progmodes/autoconf.el (autoconf-definition-regexp):
5264         Add AH_TEMPLATE, adjust submatch numbering.
5265         (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
5266         (autoconf-current-defun-function): Update for above change.
5267         (autoconf-current-defun-function): First skip to end of current word.
5269 2012-08-01  Rupert Swarbrick  <rswarbrick@gmail.com>  (tiny change)
5271         * calendar/cal-html.el (cal-html-insert-agenda-days):
5272         Fix typo.  (Bug#12018)
5274 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
5276         Shell processes: enhancements to startup and CEDET compatibility.
5277         * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
5278         (python-shell-make-comint): accept-process-output at startup.
5279         (run-python-internal): Set inferior-python-mode-hook to nil.
5280         (python-shell-internal-get-or-create-process): call sit-for.
5281         (python-preoutput-result): Add obsolete alias.
5282         (python-shell-internal-send-string): Use it.
5283         (python-shell-send-setup-code): Remove call to
5284         accept-process-output.
5286 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
5288         * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
5289         (Bug#12108)
5291 2012-07-31  Jay Belanger  <jay.p.belanger@gmail.com>
5293         * calc-mode.el (calc-basic-simplification-mode): Rename from
5294         `calc-limited-simplification-mode'.
5295         (calc-alg-simplification-mode): New function.
5296         (calc-set-simplify-mode): Adjust message.
5298         * calc.el (calc-set-mode-line): Adjust mode line display for
5299         basic simplification mode.
5301         * calc-help.el (calc-m-prefix-help): Update help message.
5303         * calc-ext.el (calc-init-extensions): Add bindings and autoloads
5304         for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
5306 2012-07-31  Bastien Guerry  <bzg@gnu.org>
5308         * man.el (man): Fix comment.  (bug#12101)
5310 2012-07-31  Martin Rudalics  <rudalics@gmx.at>
5312         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
5313         Don't return a non-nil value when no suitable buffer was found.
5315 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
5317         * progmodes/python.el (run-python-internal): Disable font lock for
5318         internal shells.
5320 2012-07-30  Stefan Merten  <smerten@oekonux.de>
5322         * textmodes/rst.el: Silence `checkdoc-ispell'.
5323         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
5324         (rst-official-version, rst-official-cvs-rev)
5325         (rst-package-emacs-version-alist): Update to upstream V1.3.1.
5326         (rst-mode-map): New key binding.
5328 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
5330         Update .PHONY listings in makefiles.
5331         * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
5332         autoloads, update-subdirs, updates, bzr-update, update-authors,
5333         compile-onefile, compile-calc, backup-compiled-files,
5334         compile-after-backup, compile-one-process, mh-autoloads,
5335         bootstrap-clean, distclean, maintainer-clean.
5337 2012-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
5339         * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
5340         (calc-set-mode-line): Don't display "AlgSimp ".
5342         * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
5343         (calc-lim-simplify-mode): New function.
5344         (calc-set-simplify-mode): Default to 'alg.
5345         (calc-default-simplify-mode): Make algebraic simplifications
5346         the default.
5348         * calc/calc-ext.el (calc-init-extensions): Remove binding for
5349         `calc-alg-simplify-mode'.  Add binding for `calc-lim-simplify-mode'.
5351         * calc/calc-help.el (calc-m-prefix-help): Change messages to
5352         indicate new simplification modes.
5354         * calc/README: Mention new default simplification mode.
5356         * calc/calc.el (math-normalize-error): New variable.
5357         (math-normalize): Set `math-normalize-error' to t
5358         when there's an error.
5360         * calc/calc-alg.el (math-simplify): Don't simplify when
5361         `math-normalize' returns an error.
5363 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
5365         * international/mule-cmds.el (set-locale-environment): Revert last
5366         change, since display-graphic-p returns nil when this function is
5367         called during startup.  Instead...
5369         * term/w32console.el (terminal-init-w32console): ...setup the
5370         keyboard and terminal encoding for TTY sessions here.  (Bug#12082)
5372 2012-07-29  Juri Linkov  <juri@jurta.org>
5374         * simple.el (goto-line): Don't display default line number in the
5375         prompt because it should be displayed by `read-number' (bug#9952).
5376         Add the current line number to the defaults of `goto-line' to
5377         allow its easier modification by users with `M-n' (bug#9201).
5379         * subr.el (read-number): Support multiple default values like in
5380         other minibuffer reading functions.  Replace `read' with
5381         `string-to-number' for consistency with `number-to-string'.
5383 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
5385         deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
5386         * emulation/viper-init.el (viper-deactivate-input-method-action):
5387         Rename from viper-inactivate-input-method-action.
5388         (viper-deactivate-input-method):
5389         Rename from viper-inactivate-input-method.
5390         * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
5391         * international/mule-cmds.el (deactivate-input-method):
5392         Rename from inactivate-input-method.
5393         Also run input-method-deactivate-hook.
5394         (deactivate-current-input-method-function):
5395         Rename from inactivate-current-input-method-function.
5396         (input-method-deactivate-hook): New hook.
5397         (input-method-inactivate-hook): Mark obsolete.
5398         (inactivate-input-method): Mark obsolete.
5400         * international/quail.el (quail-activate):
5401         Also run quail-deactivate-hook.
5402         (quail-deactivate): Rename from quail-inactivate.
5403         * international/robin.el (robin-activate):
5404         Also run robin-deactivate-hook.
5405         (robin-deactivate): Rename from robin-inactivate.
5407 2012-07-29  Chong Yidong  <cyd@gnu.org>
5409         * simple.el (indicate-copied-region): New function.
5410         (kill-ring-save): Split off from here.
5412         * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
5413         (kill-rectangle): Set deactivate-mark to t on read-only error.
5415         * register.el (copy-to-register, copy-rectangle-to-register):
5416         Deactivate the mark, and use indicate-copied-region (Bug#10056).
5417         (append-to-register, prepend-to-register): Call indicate-copied-region.
5419 2012-07-29  Juri Linkov  <juri@jurta.org>
5421         * simple.el (async-shell-command-buffer): New defcustom.
5422         (shell-command): Use it.  (Bug#4719)
5424 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
5426         * international/mule-cmds.el (set-locale-environment): In a
5427         console session on MS-Windows, set up keyboard and terminal
5428         encoding from the OEM codepage, not the ANSI codepage.
5429         (Bug#12055)
5431 2012-07-28  Chong Yidong  <cyd@gnu.org>
5433         * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
5434         gdb-get-location.
5436 2012-07-28  Leo Liu  <sdl.web@gmail.com>
5438         * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
5439         the alist (bug#12029).
5441 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
5443         * makefile.w32-in (custom-deps, finder-data, updates, compile)
5444         (compile-always, compile-first)
5445         ($(lisp)/calendar/cal-loaddefs.el)
5446         ($(lisp)/calendar/diary-loaddefs.el)
5447         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
5448         ($(lisp)/net/tramp-loaddefs.el, bootstrap)
5449         ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
5450         instead of on update-subdirs.
5451         (bootstrap-clean): Delete $(lisp)/subdirs.el.
5453 2012-07-28  Chong Yidong  <cyd@gnu.org>
5455         * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
5456         directory if vc-deduce-backend returns nil (Bug#7350).
5458         * simple.el (delete-trailing-lines): New option.
5459         (delete-trailing-whitespace): Obey it (Bug#11879).
5461 2012-07-28  David Engster  <deng@randomsample.de>
5463         * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
5464         Explanation of new 'symbol-qnames feature in doc-strings.
5465         (xml-maybe-do-ns): Return expanded names as plain symbols if
5466         'symbol-qnames was provided in XML-NS argument (Bug#11916).
5467         (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
5469 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
5471         Consistent completion in inferior python with emacs -nw.
5472         * progmodes/python.el (inferior-python-mode): replace "<tab>"
5473         binding in inferior-python-mode-map with "\t".
5474         (python-shell-completion-complete-at-point)
5475         (python-completion-complete-at-point): Remove interactive spec.
5477 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
5479         * calc/calccomp.el (math-compose-expr): Undo previous change.
5481 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
5483         * progmodes/python.el (python-mode-map): Add keybinding for
5484         run-python.
5485         (python-shell-make-comint): Fix pop-to-buffer call.
5486         (run-python): Autoload.  New arg SHOW.
5487         (python-shell-get-or-create-process): Do not pop python process
5488         buffer.
5490 2012-07-27  Michael Albinus  <michael.albinus@gmx.de>
5492         * notifications.el (notifications-on-action-signal)
5493         (notifications-on-closed-signal): Use also the bus address for the map.
5494         (notifications-notify, notifications-close-notification)
5495         (notifications-get-capabilities): Add optional argument BUS.
5497 2012-07-27  Tassilo Horn  <tsdh@gnu.org>
5499         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
5500         Add support for the lstlisting and minted environments, and for the
5501         ctable macro.
5502         * textmodes/reftex.el (reftex-compile-variables): Also recognize
5503         labels written in keyvals syntax.
5505 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
5507         * calc/calccomp.el (math-compose-expr): Use parentheses when
5508         there is a product in the denominator of a fraction.
5510 2012-07-26  Eli Zaretskii  <eliz@gnu.org>
5512         * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
5513         ($(lisp)/calendar/diary-loaddefs.el)
5514         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
5515         ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
5516         Fixes failures in parallel bootstrap because subdirs.el is being
5517         rewritten while the autoload files are built at the same time,
5518         which needs to load subdirs.el.
5520 2012-07-26  Martin Rudalics  <rudalics@gmx.at>
5522         * mouse.el (popup-menu): Fix doc-string and re-indent code.
5523         (mouse-drag-line): Don't exit tracking when a switch-frame or
5524         switch-window event occurs (Bug#12006).
5526 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5528         * mouse.el (popup-menu): Fix last change.
5530 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5532         Autoload from Lisp with more care.  Follow aliases when looking for
5533         function properties.
5534         * subr.el (autoloadp): New function.
5535         (symbol-file): Use it.
5536         (function-get): New function.
5537         * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
5538         autoload-do-load.
5539         * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
5540         (lisp-indent-function):
5541         * emacs-lisp/gv.el (gv-get):
5542         * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
5543         * emacs-lisp/byte-opt.el (byte-optimize-form):
5544         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
5545         * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
5546         Use function-get.
5547         * emacs-lisp/cl.el: Don't propagate function properties any more.
5549         * speedbar.el (speedbar-add-localized-speedbar-support):
5550         * emacs-lisp/disass.el (disassemble-internal):
5551         * desktop.el (desktop-load-file):
5552         * help-fns.el (help-function-arglist, find-lisp-object-file-name)
5553         (describe-function-1):
5554         * emacs-lisp/find-func.el (find-function-noselect):
5555         * emacs-lisp/elp.el (elp-instrument-function):
5556         * emacs-lisp/advice.el (ad-has-proper-definition):
5557         * apropos.el (apropos-safe-documentation, apropos-macrop):
5558         * emacs-lisp/debug.el (debug-on-entry):
5559         * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
5560         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
5561         * calc/calc.el (name): Use autoloadp & autoload-do-load.
5563 2012-07-25  Alp Aker  <alp.tekin.aker@gmail.com>
5565         * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
5566         function, not an obsolete variable (Bug#12046).
5568 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
5570         * faces.el (face-spec-reset-face): Fix last change.  (Bug#12042)
5572 2012-07-25  Christopher Schmidt  <christopher@ch.ristopher.com>
5574         * emacs-lisp/pp.el (pp-display-expression): Select old selected
5575         window only if it is still live (Bug#12034).
5577 2012-07-25  Martin Rudalics  <rudalics@gmx.at>
5579         * subr.el (redirect-frame-focus): Add advertised calling
5580         convention (Bug#12030).
5582 2012-07-25  Paul Eggert  <eggert@cs.ucla.edu>
5584         Prefer typical American spelling for "acknowledgment".
5585         * vc/add-log.el (change-log-acknowledgment): Rename from
5586         change-log-acknowledgement, with an alias for the old name.
5588 2012-07-25  Jay Belanger  <jay.p.belanger@gmail.com>
5590         * calc-alg.el (math-simplify-divide): Don't cross multiply
5591         in an equation when the lhs is a variable.
5593 2012-07-24  Julien Danjou  <julien@danjou.info>
5595         * net/netrc.el (netrc-find-service-number, netrc-store-data):
5596         Remove, unused.
5598 2012-07-23  Eli Zaretskii  <eliz@gnu.org>
5600         * startup.el (command-line): Don't display an empty user name in
5601         the error message about non-existent home directory, when
5602         init-file-user was set to an empty string.  See
5603         http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
5604         for the details and context.
5606 2012-07-22  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5608         * ses.el (ses-cell-formula-aset): New macro.
5609         (ses-cell-references-aset): New macro.
5610         (ses-cell-p): New function.
5611         (ses-rename-cell): Do no longer rely on complex operations like
5612         ses-cell-set-formula or ses-set-cell to change the cell and handle
5613         the undo at the same time, but rather use lower level new macros
5614         `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
5615         the undo directly.  Refresh the mode line.
5617 2012-07-21  Leo Liu  <sdl.web@gmail.com>
5619         * progmodes/cc-cmds.el (c-defun-name):
5620         Use match-string-no-properties instead for consistency.
5622 2012-07-20  Leo Liu  <sdl.web@gmail.com>
5624         * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
5625         (Bug#7879)
5627         * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
5629 2012-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5631         * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
5632         * progmodes/bug-reference.el, misearch.el: Provide themselves
5633         (bug#11915).
5635         * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
5636         of narrowed buffer (bug#11966).
5638 2012-07-20  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5640         * ses.el (ses-rename-cell): Set new name also in reference list of
5641         cells of which the renamed cell depends.
5643 2012-07-20  Masatake YAMATO  <yamato@redhat.com>
5645         * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
5646         to check whether menu-bar is shown or not.  If not shown,
5647         show the menu-bar as a popup menu instead of using tmm.
5648         * mouse.el (popup-menu): Accept `point' as `position' argument.
5650 2012-07-20  Dmitry Gutov  <dgutov@yandex.ru>
5652         * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
5653         up inside string symbol literal (bug#11923).
5655 2012-07-20  Eli Zaretskii  <eliz@gnu.org>
5657         * startup.el (fancy-startup-text): Read the whole tutorial, not
5658         just its first 256 bytes.  Prevents gibberish in display of the
5659         tutorial title.
5661 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
5663         Drop idle buffer compaction due to an absence of the
5664         proved efficiency.
5665         * compact.el: Remove.
5667 2012-07-19  Sam Steingold  <sds@gnu.org>
5669         * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
5670         vc-bzr-pull & vc-bzr-merge-branch.
5671         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
5672         (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
5673         for consistency with compilation-error-regexp-alist.
5674         * vc/vc-git.el (vc-git-error-regexp-alist): Add.
5675         (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
5676         * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
5677         (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
5679 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5681         * emacs-lisp/chart.el: Use lexical-binding.
5682         (chart-emacs-storage): Don't hardcode the list of entries.
5684 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
5686         Next round of tweaks caused by Fgarbage_collect changes.
5687         * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
5689 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
5691         Compact buffers when idle.
5692         * compact.el: New file.
5694 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5696         * subr.el (eventp): Presume that if it looks vaguely like an event,
5697         it's an event (bug#10190).
5699 2012-07-19  Fabián Ezequiel Gallina  <fgallina@cuca>
5701         Enhancements to ppss related code (thanks Stefan).
5702         * progmodes/python.el (python-indent-context)
5703         (python-indent-calculate-indentation, python-indent-dedent-line)
5704         (python-indent-electric-colon, python-nav-forward-block)
5705         (python-mode-abbrev-table)
5706         (python-info-assignment-continuation-line-p): Simplify checks
5707         for ppss context.
5708         (python-info-continuation-line-p): Cleanup.
5709         (python-info-ppss-context): Do not catch 'quote.
5710         (python-info-ppss-context-type)
5711         (python-info-ppss-comment-or-string-p): Simplify.
5713 2012-07-18  Fabián Ezequiel Gallina  <fgallina@cuca>
5715         * progmodes/python.el: Enhancements to eldoc support.
5716         (python-info-current-symbol): New function.
5717         (python-eldoc-at-point): Use python-info-current-symbol.
5718         (python-info-current-defun): Fix cornercase on first defun scan.
5719         (python-eldoc--get-doc-at-point): Use python-info-current-symbol
5720         and signal error when no inferior python process is available.
5722 2012-07-18  Dmitry Gutov  <dgutov@yandex.ru>
5724         * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
5725         assume it's always t.
5726         (vc-git-registered): Remove caching, the function is only called
5727         once.
5728         (vc-git-branches): Use `vc-git--call' instead of `call-process'.
5730 2012-07-18  Chong Yidong  <cyd@gnu.org>
5732         * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
5734         * simple.el (count-words): Report on narrowing (Bug#9959).
5736         * bindings.el: Bind M-= to count-words.
5738         * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
5740 2012-07-18  Masatake YAMATO  <yamato@redhat.com>
5742         * progmodes/sh-script.el (sh-imenu-generic-expression):
5743         Capture a function with `function' keyword and without parentheses
5744         like "function FOO" (bug#11856).
5746 2012-07-18  Tassilo Horn  <tassilo@member.fsf.org>
5748         * window.el (split-window-sensibly): Make WINDOW argument
5749         optional.
5751 2012-07-18  Chong Yidong  <cyd@gnu.org>
5753         * subr.el (keyboard-translate): Doc fix (Bug#7261).
5755         * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
5756         and make C-x 8 RET exit isearch (Bug#11439).
5758         * international/iso-transl.el: Move isearch-mode-map key
5759         definitions to isearch.el.
5761 2012-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5763         * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
5764         (eieio-defclass): Use gv-define-setter when possible.
5766 2012-07-18  Dmitry Antipov  <dmantipov@yandex.ru>
5768         Reflect recent changes in Fgarbage_collect.
5769         * emacs-lisp/chart.el (chart-emacs-storage): Change to
5770         reflect new format of data returned by Fgarbage_collect.
5772 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
5774         New utility functions + python-info-ppss-context fix (Bug#11910).
5775         * progmodes/python.el (python-info-beginning-of-block-statement-p)
5776         (python-info-ppss-comment-or-string-p): New functions.
5777         (python-info-ppss-context): Small fix for string check.
5779 2012-07-17  Juri Linkov  <juri@jurta.org>
5781         * dired-aux.el (dired-do-async-shell-command): Doc fix.
5782         (dired-do-async-shell-command): Don't add `*' at the end of the
5783         command (Bug#11815).
5784         (dired-do-shell-command): Doc fix.
5785         (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
5786         Join the individual commands using either "&" or ";" as the
5787         separator depending on the values of these trailing characters.
5788         At the end re-add the trailing "&".  (Bug#10598)
5790         * simple.el (async-shell-command): Sync the interactive spec with
5791         `shell-command'.  Doc fix.
5792         (shell-command): Doc fix.
5794 2012-07-17  Juri Linkov  <juri@jurta.org>
5796         * descr-text.el (describe-char): Fix format args.  (Bug#10129)
5798 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
5800         Final renames and doc fixes for movement commands (bug#11899).
5801         * progmodes/python.el (python-nav-beginning-of-statement):
5802         Rename from python-nav-statement-start.
5803         (python-nav-end-of-statement): Rename from
5804         python-nav-statement-end.
5805         (python-nav-beginning-of-block): Rename from
5806         python-nav-block-start.
5807         (python-nav-end-of-block): Rename from python-nav-block-end.
5809 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
5811         * progmodes/python.el (python-shell-send-string-no-output):
5812         Allow accept-process-output to quit, keeping shell process ready for
5813         future interactions (Bug#11868).
5815 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5817         * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
5819         * emacs-lisp/elint.el (elint-find-args-in-code):
5820         Use help-function-arglist, so as to handle lexical byte-code.
5822         * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
5823         change (bug#11826).
5825 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5827         * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
5828         Avoid spuriously marking the buffer as modified because of c-is-sws.
5830         * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
5831         as not-a-comment (bug#11946).
5833         * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
5834         for uninterned vars.
5836         * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
5837         Use read-event since we don't really want to read chars but bytes.
5839         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
5840         $$..$$ but also $..$ using regexps (bug#11953).
5841         Use tex-verbatim for \url and \path.
5842         (tex-font-lock-keywords): Define as defconst like the others.
5843         (tex-common-initialization): Don't use font-lock-syntax-table any more.
5845 2012-07-16  René Kyllingstad  <Rene@Kyllingstad.com>  (tiny change)
5847         * international/mule-cmds.el (ucs-insert): Make it an obsolete
5848         alias for insert-char.
5850 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
5852         * progmodes/python.el: Simplified imenu implementation.
5853         (python-nav-jump-to-defun): Remove command.
5854         (python-mode-map): Use `imenu' instead.
5855         (python-nav-list-defun-positions-cache)
5856         (python-imenu-include-defun-type, python-imenu-make-tree)
5857         (python-imenu-subtree-root-label, python-imenu-index-alist):
5858         Remove vars.
5859         (python-nav-list-defun-positions, python-nav-read-defun)
5860         (python-imenu-tree-assoc, python-imenu-make-element-tree)
5861         (python-imenu-make-tree, python-imenu-create-index):
5862         Remove functions.
5863         (python-mode): Update to interact with imenu by setting
5864         `imenu-extract-index-name-function' only.
5866 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
5868         * progmodes/python.el: Enhancements to navigation commands.
5869         (python-nav-backward-sentence)
5870         (python-nav-forward-sentence): Remove.
5871         (python-nav-backward-statement, python-nav-forward-statement)
5872         (python-nav-statement-start, python-nav-statement-end)
5873         (python-nav-backward-block, python-nav-forward-block)
5874         (python-nav-block-start, python-nav-block-end)
5875         (python-nav-forward-sexp-function)
5876         (python-info-current-line-comment-p)
5877         (python-info-current-line-empty-p): New functions.
5878         (python-indent-context): Use `python-nav-statement-start'.
5880 2012-07-16  Michael Albinus  <michael.albinus@gmx.de>
5882         * eshell/em-ls.el (eshell/ls): Use `apply'.
5884         * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
5885         multi-hops, instead of Tramp internals.
5887         * vc/ediff.el (ediff-directories): Add trailing space to prompts.
5889         * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
5890         when F1 and F2 are located on different hosts.
5892 2012-07-14  Chong Yidong  <cyd@gnu.org>
5894         * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
5895         (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
5896         (xterm-mouse-translate-extended, xterm-mouse-translate-1)
5897         (xterm-mouse--read-event-sequence-1000)
5898         (xterm-mouse--read-event-sequence-1006): New functions.  For old
5899         mouse protocol, handle M-mouse-X events correctly.
5900         (xterm-mouse-event): New arg specifying mouse protocol.
5901         (turn-on-xterm-mouse-tracking-on-terminal)
5902         (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
5903         sequence to toggle extended coordinates on newer XTerms.
5904         This appears to be harmless on terminals which do not support this.
5906 2012-07-14  Leo Liu  <sdl.web@gmail.com>
5908         Add fringe bitmap indicators for flymake.  (Bug#11253)
5909         * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
5910         (flymake-make-overlay): New arg BITMAP.
5911         (flymake-error-bitmap, flymake-warning-bitmap)
5912         (flymake-fringe-indicator-position): New user variables.
5914         * fringe.el: New bitmap exclamation-mark.
5916 2012-07-14  Jan Djärv  <jan.h.d@swipnet.se>
5918         * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
5919         also (Bug#7879).
5921 2012-07-14  Chong Yidong  <cyd@gnu.org>
5923         * electric.el (electric-pair-post-self-insert-function): Fix pair
5924         insertion in empty-region case (Bug#11520).
5926 2012-07-14  Chong Yidong  <cyd@gnu.org>
5928         * bindings.el: Consolidate ctl-x-r-map bindings.
5929         Bind copy-rectangle-as-kill to C-x r w.
5931         * rect.el, register.el: Move bindings to bindings.el.
5933 2012-07-14  Reuben Thomas  <rrt@sc3d.org>
5935         * rect.el (copy-rectangle-as-kill): New command (Bug#739).
5937 2012-07-13  Andreas Schwab  <schwab@linux-m68k.org>
5939         * emacs-lisp/cl.el (labels): Remove spurious quote.  (Bug#11938)
5941 2012-07-13  Juanma Barranquero  <lekktu@gmail.com>
5943         * bindings.el (top): Use `mapc' instead of `mapcar'.
5945         * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
5947 2012-07-13  Michael Albinus  <michael.albinus@gmx.de>
5949         * progmodes/sql.el (sql-comint): Suppress the check for program on
5950         remote hosts.  Reported by Francis Devereux <francis@devrx.org>.
5951         (Bug#11908)
5953 2012-07-13  Chong Yidong  <cyd@gnu.org>
5955         * bindings.el: Assign a non-nil permanent-local property to
5956         per-buffer variables which lack a default value (Bug#11930).
5958         * help-fns.el (describe-variable): In the "automatically becomes
5959         local" notice, take note of permanent-local variables.
5961 2012-07-13  Chong Yidong  <cyd@gnu.org>
5963         * files.el (toggle-read-only): Doc fix and code cleanup.  New arg
5964         to allow printing the message when called from Lisp.
5966         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5967         Remove toggle-read-only.
5969         * bs.el (bs-toggle-readonly):
5970         * buff-menu.el (Buffer-menu-toggle-read-only):
5971         Remove with-no-warnings around toggle-read-only.
5973         * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
5974         Remove with-no-warnings around toggle-read-only.
5975         (ffap-read-only, ffap-read-only-other-window)
5976         (ffap-read-only-other-frame): Callers changed.
5978         * help-mode.el: Don't require view package.
5979         (help-mode-finish): Set buffer-read-only instead of calling
5980         toggle-read-only.
5982         * bindings.el (mode-line-toggle-read-only):
5983         * dired.el (dired-toggle-read-only):
5984         * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
5985         with non-nil second arg.
5987         * emacs-lisp/eieio-custom.el (eieio-customize-object):
5988         * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
5989         directly.
5991 2012-07-12  Eli Zaretskii  <eliz@gnu.org>
5993         * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
5994         not incf.
5996 2012-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5998         More CL cleanups and reduction of use of cl.el.
5999         * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
6000         * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
6001         * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
6002         * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
6003         * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
6004         * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
6005         * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
6006         * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
6007         * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
6008         * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
6009         * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
6010         * eshell/em-cmpl.el, eshell/em-banner.el:
6011         * calendar/parse-time.el: Use cl-lib.
6012         * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
6013         * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
6014         * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
6015         * term/ns-win.el, term.el, shell.el, ps-samp.el:
6016         * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
6017         * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
6018         * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
6019         * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
6020         * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
6021         * mail/mailheader.el, mail/feedmail.el: Don't use CL.
6022         * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
6023         * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
6024         `lambda' rather than with `quote'.
6025         (eshell-do-opt): Adjust accordingly.
6026         (eshell-process-option): Simplify.
6027         * eshell/esh-var.el:
6028         * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
6029         * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
6030         (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
6031         to `pcase--dontcare'.
6032         * emacs-lisp/cl.el (labels): Mark obsolete.
6033         (cl--letf, letf): Move to cl-lib.
6034         (cl--letf*, letf*): Remove.
6035         * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
6036         * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
6037         (cl-progv): Rewrite.
6038         (cl--letf, cl-letf): Move from cl.el.
6039         (cl-letf*): New macro.
6040         * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
6042 2012-07-11  Michael Albinus  <michael.albinus@gmx.de>
6044         * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
6046 2012-07-11  Chong Yidong  <cyd@gnu.org>
6048         * vc/log-edit.el (log-edit-vc-backend): New variable.
6049         (log-edit): Doc fix.
6051         * vc/vc-dispatcher.el (vc-log-edit): New args.  Use PARAMS
6052         argument of log-edit to set up all local variables.
6053         (vc-start-logentry): New optional arg specifying VC backend.
6055         * vc/vc.el (vc-checkin): Use it.
6056         (vc-deduce-fileset): Handle Log Edit buffers.
6057         (vc-diff): Make first argument optional too.
6059         * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
6061 2012-07-10  Michael Albinus  <michael.albinus@gmx.de>
6063         * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
6064         command, just in case.  The function is not needed anymore.
6065         (eshell-external-command): Do not call `eshell-remote-command'.
6067 2012-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6069         Reduce use of (require 'cl).
6070         * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
6071         * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
6072         * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
6073         * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
6074         * international/quail.el, info-xref.el, imenu.el, image-mode.el:
6075         * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
6076         * battery.el, avoid.el, abbrev.el: Use cl-lib.
6077         * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
6078         * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
6079         * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
6080         * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
6081         * calculator.el, autorevert.el, apropos.el: Don't require CL.
6082         * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
6083         (byte-compile-unfold-bcf, byte-compile-check-variable):
6084         * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
6085         (byte-compile-nilconstp):
6086         * emacs-lisp/autoload.el (make-autoload): Use pcase.
6087         * face-remap.el (text-scale-adjust): Simplify pcase patterns.
6089         * emacs-lisp/gv.el (cond): Make it a valid place.
6090         (if): Simplify slightly.
6092         * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
6093         (pcase--self-quoting-p): New function.
6094         (pcase--u1): Use it.
6096 2012-07-10  Glenn Morris  <rgm@gnu.org>
6098         * emacs-lisp/authors.el (authors-fixed-entries):
6099         (authors-renamed-files-alist): Update for configure.in -> configure.ac.
6101 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6103         Rename configure.in to configure.ac (Bug#11603).
6104         * emacs-lisp/authors.el (authors-canonical-file-name):
6105         * progmodes/autoconf.el (autoconf-mode):
6106         Prefer configure.ac to configure.in.
6108 2012-07-08  Chong Yidong  <cyd@gnu.org>
6110         * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
6111         Implement the mouse-1-click-follows-link handling properly.
6113         * info.el (Info-link-keymap): Use follow-link mechanism for
6114         header-line links (Bug#374).
6116         * simple.el (deactivate-mark): Do not set the primary selection
6117         if another program has acquired it (Bug#11772).
6119 2012-07-07  Kevin Ryde  <user42@zip.com.au>
6121         * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
6122         (woman-decode-region): Replace escaped-escapes without destroying
6123         bold or underline (Bug#11552).
6124         (woman2-process-escapes): Handle nofill regions (Bug#11591).
6126 2012-07-07  Chong Yidong  <cyd@gnu.org>
6128         * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
6129         (interprogram-cut-function, interprogram-paste-function):
6130         Mention that we typically mean the clipboard.
6132 2012-07-06  Glenn Morris  <rgm@gnu.org>
6134         * kmacro.el (kmacro-call-macro): Restore repeat message.  (Bug#11817)
6136         * files.el (toggle-read-only): Restrict message to interactive use.
6138 2012-07-06  Michael Albinus  <michael.albinus@gmx.de>
6140         * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
6142         * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
6144 2012-07-06  Glenn Morris  <rgm@gnu.org>
6146         * Makefile.in (compile-one-process): Rename from "recompile".
6148         * Makefile.in (bzr-update): "compile" is the same as "recompile
6149         autoloads", but parallelizable, so use that instead.
6151 2012-07-06  Dmitry Gutov  <dgutov@yandex.ru>
6153         * window.el (quit-window): Always restore window height when
6154         it's saved in quit-restore parameter (Bug#11810).
6156 2012-07-06  Glenn Morris  <rgm@gnu.org>
6158         * simple.el (kill-whole-line): Doc tweak.
6160 2012-07-06  Eli Zaretskii  <eliz@gnu.org>
6162         * files.el (file-relative-name): Compare file names
6163         case-insensitively if on MS-Windows or MS-DOS, or if
6164         read-file-name-completion-ignore-case is non-nil.  Don't use
6165         case-fold-search for this purpose.  (Bug#11827)
6167 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
6169         * calendar/cal-dst.el (calendar-current-time-zone):
6170         Return calendar-current-time-zone-cache if non-nil.
6172 2012-07-17  Masatake YAMATO  <yamato@redhat.com>
6173 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
6175         * calendar/cal-dst.el (calendar-current-time-zone):
6176         Return calendar-current-time-zone-cache if non-nil.
6178 2012-07-06  Glenn Morris  <rgm@gnu.org>
6180         * Makefile.in (cvs-update): Remove old alias.
6182 2012-07-05  Michael Albinus  <michael.albinus@gmx.de>
6184         Sync with Tramp 2.2.6-pre.
6186         * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
6187         compatible declaration.
6189         * net/tramp-cmds.el (tramp-append-tramp-buffers):
6190         Protect `list-load-path-shadows' call.
6192         * net/tramp-compat.el (top): Require packages, which aren't
6193         autoloaded anymore for XEmacs.  Protect call of
6194         `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
6195         compiler.  Do not require tramp-util.el and tramp-vc.el anymore,
6196         it hurts at least for SXEmacs.
6197         (tramp-compat-temporary-file-directory): In XEmacs, there is no
6198         standard-value for `temporary-file-directory'.
6200         * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
6201         Redirect stderr to /dev/null.
6202         (tramp-sh-handle-write-region): uid and gid can be floats.
6203         Reported by Russell Sim <russell.sim@gmail.com>.
6204         (tramp-sh-handle-vc-registered): Hide errors.
6205         (tramp-vc-file-name-handler): Use dummy results for `process-file'
6206         and `start-file-process'.
6207         (tramp-maybe-open-connection): Check also whether `non-essential'
6208         is bound.
6210 2012-07-04  Chong Yidong  <cyd@gnu.org>
6212         * xml.el (xml--parse-buffer): Use xml-syntax-table.
6213         (xml-parse-tag): Likewise, and avoid changing entity tables.
6214         (xml-syntax-table): Define from scratch, making sure not to give
6215         x2000 and other Unicode spaces whitespace syntax, since those are
6216         not spaces in XML.
6217         (xml-parse-fragment): Delete unused function.
6218         (xml-name-start-char-re, xml-name-char-re, xml-name-re)
6219         (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
6220         (xml-entity-ref, xml-pe-reference-re)
6221         (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
6222         (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
6223         (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
6224         (xml-entity-value-re): Use syntax references in regexps where
6225         possible; no need to define inside a let-binding.
6226         (xml-parse-dtd): Use xml-pe-reference-re.
6227         (xml-entity-or-char-ref-re): New defconst.
6228         (xml-parse-string, xml-substitute-special): Use it.
6230 2012-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6232         * files.el (locate-dominating-file): Allow `name' to be a predicate.
6233         (find-file--read-only): New function.
6234         (find-file-read-only, find-file-read-only-other-window)
6235         (find-file-read-only-other-frame): Use it.
6236         (insert-file-contents-literally): Don't `fset'.
6237         (get-free-disk-space): Use locate-dominating-file.
6239         * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
6240         function is already compiled.
6242         * xml.el (xml-name-regexp): Remove, redundant.  Use xml-name-re.
6244 2012-07-03  Michael Albinus  <michael.albinus@gmx.de>
6246         * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
6247         files on the same host.
6249 2012-07-03  Andreas Schwab  <schwab@linux-m68k.org>
6251         * help-fns.el (describe-function-1): Only call
6252         help-fns--autoloaded-p when we have a file name.  (Bug#11848)
6254 2012-07-03  Chong Yidong  <cyd@gnu.org>
6256         * xml.el: Protect parser against XML bombs.
6257         (xml-entity-expansion-limit): New variable.
6258         (xml-parse-string, xml-substitute-special): Use it.
6259         (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
6261 2012-07-03  Glenn Morris  <rgm@gnu.org>
6263         * progmodes/bug-reference.el (bug-reference-bug-regexp):
6264         Allow linking to specific messages in debbugs reports (eg 123#5).
6266 2012-07-02  Chong Yidong  <cyd@gnu.org>
6268         * xml.el: Fix entity and character reference expansion, allowing
6269         them to expand into markup as per XML spec.
6270         (xml-default-ns): New variable.
6271         (xml-entity-alist): Use XML spec definitions for lt and amp.
6272         (xml-parse-region): Make first two arguments optional.
6273         Discard text properties.
6274         (xml-parse-tag-1): New function, spun off from xml-parse-tag.
6275         All callers changed.
6276         (xml-parse-tag): Call xml-parse-tag-1.  For backward
6277         compatibility, this function should not modify buffer contents.
6278         (xml-parse-tag-1): Fix opening-tag regexp.
6279         (xml-parse-string): Rewrite, handling entity and character
6280         references properly.
6281         (xml--entity-replacement-text): Signal an error if a parameter
6282         entity is undefined.
6284 2012-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6286         * comint.el (comint-output-filter): Filter out repeated prompts.
6288         * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
6289         and file-name-absolute-p.
6290         (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
6291         internal calls.
6293 2012-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6295         Spelling fixes.
6296         * emacs-lisp/bytecomp.el (byte-compile--reify-function):
6297         Rename from byte-compile--refiy-function.  All uses changed.
6299 2012-07-01  Chong Yidong  <cyd@gnu.org>
6301         * xml.el (xml--parse-buffer): New function.  Move most of
6302         xml-parse-region here.
6303         (xml-parse-region): Copy region into a temporary buffer, since
6304         parameter entity substitution requires changing buffer contents.
6305         Use xml--parse-buffer.
6306         (xml-parse-file): Use xml--parse-buffer.
6307         (xml-parse-dtd): Make parameter entity substitution work right.
6308         Use proper regexps for ELEMENT declarations (Bug#7172).
6310 2012-06-30  Glenn Morris  <rgm@gnu.org>
6312         * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
6314         * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
6315         Remove outdated and unnecessary dbus declarations.
6317 2012-06-30  Eli Zaretskii  <eliz@gnu.org>
6319         * emacs-lisp/timer.el (timer-until): Subtract results of
6320         float-time, instead of taking float-time of the result of
6321         time-subtract, since float-time signals an error for negative time
6322         arguments.
6324 2012-06-30  Chong Yidong  <cyd@gnu.org>
6326         * xml.el (xml-*-re): Convert defvars into defconsts, and
6327         eval-and-compile them so eval-and-compile works on derivatives.
6328         (xml--entity-replacement-text): Use eval-and-comple.
6330 2012-06-30  Michael Albinus  <michael.albinus@gmx.de>
6332         * vc/vc-git.el (vc-git-registered): Use cache property
6333         `git-registered'.
6334         (vc-git-mode-line-string): Call `vc-working-revision' instead of
6335         `vc-git-working-revision' in order to benefit from the cache.
6336         (vc-git-root): Use cache property `git-root'.  (Bug#11757)
6338 2012-06-30  Dmitry Gutov  <dgutov@yandex.ru>
6340         * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
6341         removed (likely outside Emacs).  (Bug#11757)
6343 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6345         * emacs-lisp/cl-lib.el: Require macroexp.
6347 2012-06-30  Chong Yidong  <cyd@gnu.org>
6349         * xml.el: Implement XML parameter entities.
6350         (xml-parameter-entity-alist): New variable.
6351         (xml-parse-region, xml-parse-fragment): Preserve previous values
6352         of xml-entity-alist and xml-parameter-entity-alist, so that
6353         repeated calls on different documents do not change them.
6354         (xml-parse-tag): Fix doctype regexp.
6355         (xml--entity-replacement-text): New function.
6356         (xml-parse-dtd): Use it.  Don't handle system entities; doing that
6357         properly requires url retrieval which is unimplemented.
6358         (xml-escape-string): Doc fix.
6360 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6362         * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
6364 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
6366         * fringe.el (fringe-mode): Doc fix.
6368 2012-06-29  Michael Albinus  <michael.albinus@gmx.de>
6370         * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
6371         is non-nil.
6372         (ange-ftp-ignore-errors-if-non-essential): New defmacro.
6373         (ange-ftp-file-name-all-completions): Use it.  (Bug#11808)
6375 2012-06-29  Andreas Schwab  <schwab@linux-m68k.org>
6377         * calendar/cal-dst.el (calendar-current-time-zone):
6378         Return calendar-current-time-zone-cache if non-nil.
6380 2012-06-29  Masatake YAMATO  <yamato@redhat.com>
6382         * progmodes/which-func.el (which-func-format):
6383         Add mouse-face.  (Bug#11698)
6385 2012-06-29  Leo Liu  <sdl.web@gmail.com>
6387         * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
6389 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6391         * minibuffer.el (minibuffer-confirm-exit-commands):
6392         Add completion-at-point (bug#11725).
6394 2012-06-29  Glenn Morris  <rgm@gnu.org>
6396         * progmodes/f90.el (f90-font-lock-keywords-2):
6397         Add some preprocessor elements.  (Bug#10499)
6399 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6401         * progmodes/cperl-mode.el (cperl-update-syntaxification):
6402         Use syntax-propertize (bug#11739).
6404 2012-06-28  Juanma Barranquero  <lekktu@gmail.com>
6406         * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
6408 2012-06-28  Julien Danjou  <julien@danjou.info>
6410         * term.el (term-handle-colors-array): Use a set of new faces to
6411         color the terminal.  Also uses :inverse-video property.
6412         (term-default-fg-color): Set to nil by default, deprecate in favor
6413         of `term-face'.
6414         (term-default-bg-color): Set to nil by default, deprecate in favor
6415         of `term-face'.
6416         (term-current-face): Use `term-face' by default.
6417         (term-bold-attribute): Variable deleted.
6419 2012-06-28  Glenn Morris  <rgm@gnu.org>
6421         * simple.el (completion-list-mode-finish):
6422         Don't use toggle-read-only.  (Since completion-list-mode has
6423         a special mode-class, it wasn't doing anything extra anyway.)
6425 2012-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6427         Make inlining of other-mode interpreted functions work (bug#11799).
6428         * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
6429         (byte-compile): Use it to fix compilation of lexical-binding closures.
6430         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
6431         function, if needed.
6433 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6435         * help-mode.el (help-make-xrefs): Don't just withstand
6436         cyclic-variable-indirection but any error in documentation-property.
6438         * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
6439         memory use.
6440         * bindings.el (bindings--define-key): New function.
6441         * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
6442         * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
6443         * bindings.el: Use it to purecopy define-key bindings.
6445         * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
6447         * emacs-lisp/cl.el (flet): Mark obsolete.
6448         * emacs-lisp/cl-macs.el (cl-flet*): New macro.
6449         * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
6450         * progmodes/js.el (js-c-fill-paragraph):
6451         * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
6452         (ebrowse-switch-member-buffer-to-derived-class):
6453         * play/5x5.el (5x5-solver): Use cl-flet.
6455         * emacs-lisp/cl.el: Use lexical-binding.  Fix flet (bug#11780).
6456         (cl--symbol-function): New macro.
6457         (cl--letf, cl--letf*): Use it.
6459         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
6460         Strip "toggle-" if any.
6462 2012-06-27  Glenn Morris  <rgm@gnu.org>
6464         * info.el (Info-default-directory-list): Move here from paths.el.
6465         * paths.el: Remove file, which is now empty.
6466         * loadup.el: No longer load "paths".
6468         * custom.el (custom-initialize-delay): Doc fix.
6470         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
6471         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
6472         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
6473         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
6474         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
6475         * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
6476         * eshell/eshell.el (eshell-defgroup): Remove alias.
6478 2012-06-27  Chong Yidong  <cyd@gnu.org>
6480         * help.el (help-enable-auto-load): New variable.
6482         * help-fns.el (help-fns--autoloaded-p): New function.
6483         (describe-function-1): Refer to a function as "autoloaded" if it
6484         was autoloaded at any time in the past.  Perform autoloading if
6485         help-enable-auto-load is non-nil.
6487 2012-06-26  Eli Zaretskii  <eliz@gnu.org>
6489         * makefile.w32-in (compile, compile-always): Depend on
6490         update-subdirs, not on subdirs.el.  Otherwise, several different
6491         sub-targets of 'bootstrap' running in parallel could
6492         simultaneously write to subdirs.el, producing a garbled file.
6494 2012-06-26  Sam Steingold  <sds@gnu.org>
6496         * files.el (file-name-base): New convenience function.
6497         * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
6498         * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
6499         * progmodes/cc-defs.el, progmodes/cperl-mode.el:
6500         * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
6501         * textmodes/ispell.el, textmodes/reftex-ref.el:
6502         * textmodes/tex-mode.el: Use it.
6503         Did not touch cedet and org because they are maintained elsewhere.
6505 2012-06-26  Martin Rudalics  <rudalics@gmx.at>
6507         * calendar/calendar.el (calendar-exit): Don't try to delete or
6508         iconify last frame.  See:
6509         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
6511 2012-06-25  Jim Diamond  <Jim.Diamond@AcadiaU.ca>  (tiny change)
6513         * server.el (server-process-filter): Remember dir in the
6514         process's `server-client-directory' properties.
6516 2012-06-24  Chong Yidong  <cyd@gnu.org>
6518         * xml.el (xml-parse-tag): Correctly handle comment embedded in
6519         non-tag text.
6521 2012-06-23  Juanma Barranquero  <lekktu@gmail.com>
6523         * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
6525 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6527         * help-fns.el (describe-variable): Don't croak when doc is not found.
6528         * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
6529         * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
6530         * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
6531         * emacs-lisp/smie.el (smie-next-sexp): CSE.
6532         * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
6533         ((lambda ..) ..).
6534         * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
6536 2012-06-23  Chong Yidong  <cyd@gnu.org>
6538         * info.el (Info-mouse-follow-link): Accept symbol values of
6539         link-args.  Select window; suggested by Gerhard Kahl (Bug#11672).
6540         (Info-fontify-node): Use Info-link-keymap for all navigation
6541         buttons, with link-args property to perform the desired action.
6542         (Info-link-keymap): Doc fix.
6543         (Info-next-link-keymap, Info-prev-link-keymap)
6544         (Info-up-link-keymap): Delete now-unused keymaps.
6546 2012-06-23  Chong Yidong  <cyd@gnu.org>
6548         * mouse.el (mouse-drag-track): Deactivate the mark before popping.
6550         * progmodes/python.el (python-skeleton-define): Mark abbrevs as
6551         system abbrevs.
6553         * ansi-color.el (ansi-color-apply-on-region): Doc fix.
6555 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6557         * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
6558         (bug#11719).
6560         * minibuffer.el (completion--twq-try): Try to fail more gracefully when
6561         the requote function doesn't work properly (bug#11714).
6563 2012-06-23  Glenn Morris  <rgm@gnu.org>
6565         * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
6567 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6569         Further GV/CL cleanups.
6570         * emacs-lisp/gv.el (gv-get): Autoload functions to find their
6571         gv-expander.
6572         (gv--defun-declaration): New function.
6573         (defun-declarations-alist): Use it.
6574         (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
6575         (gv-place): Autoload.
6576         * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
6577         original definition of dotimes and dolist.
6578         * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
6579         (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
6580         * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
6581         (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6582         (cl-ninth, cl-tenth): Move gv handler to the function's definition.
6583         * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
6584         to the function's definition.
6585         * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
6586         * window.el:
6587         * files.el:
6588         * faces.el:
6589         * env.el: Don't use CL.
6591 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
6593         Support higher-resolution time stamps (Bug#9000).
6595         * calendar/time-date.el (with-decoded-time-value): New arg
6596         PICO-SYMBOL in VARLIST.  It's optional, for backward compatibility.
6597         (encode-time-value): New optional arg PICO.  New type 3.
6598         (time-to-seconds) [!float-time]: Support the new picoseconds
6599         component if it's used.
6600         (seconds-to-time, time-subtract, time-add):
6601         Support ps-resolution time stamps as well.
6603         * emacs-lisp/timer.el (timer): New component psecs.  All uses changed.
6604         (timerp): Timer vectors now have length 9, not 8.
6605         (timer--time): Support new-style (4-part) time stamps.
6606         (timer-next-integral-multiple-of-time): Time stamps now have
6607         picosecond resolution, so take a bit more care about rounding.
6608         (timer-relative-time, timer-inc-time): New optional arg psecs.
6609         (timer-set-time-with-usecs): Set psecs to 0.
6610         (timer--activate): Check psecs component, too.
6612         * proced.el (proced-time-lessp): Support ps-resolution stamps.
6614 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6616         * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
6617         Move the non-essential binding to the post/pre-command-hook where it is
6618         more obviously correct.
6620         * subr.el (read-passwd): Don't use a history at all.
6621         * savehist.el (savehist-save): Remove password saved accidentally
6622         because of the above bug.
6624 2012-06-22  Bastien Guerry  <bzg@gnu.org>
6626         * files.el (toggle-read-only): Display a message telling whether
6627         the buffer is read-only or not (bug#11726).
6629 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6631         * emacs-lisp/gv.el: New file.
6632         * subr.el (push, pop): Extend to generalized variables.
6633         * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
6634         * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
6635         * emacs-lisp/cl-macs.el: Require gv.  Use gv-define-setter,
6636         gv-define-simple-setter, and gv-define-expander.
6637         Remove setf-methods defined in gv.  Rename cl-setf -> setf.
6638         (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
6639         (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
6640         (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
6641         (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
6642         gv-letplace.
6643         (cl-defstruct): Don't define setf-method any more.
6644         * emacs-lisp/cl.el (flet): Don't autoload.
6645         (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
6646         (define-setf-expander, defsetf, define-modify-macro)
6647         (cl-struct-setf-expander): Move from cl-lib.el.
6648         * emacs-lisp/syntax.el:
6649         * emacs-lisp/ewoc.el:
6650         * emacs-lisp/smie.el:
6651         * emacs-lisp/cconv.el:
6652         * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
6653         (timer--time): Use gv-define-simple-setter.
6654         * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
6655         to avoid coding-system problems in subr.el.  Adjust all users.
6656         (macroexp--maxsize, macroexp-small-p): New functions.
6657         * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
6658         * scroll-bar.el (scroll-bar-mode):
6659         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
6660         (normal-erase-is-backspace-mode): Don't use the `eq' place.
6661         * winner.el (winner-configuration, winner-make-point-alist)
6662         (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
6663         * files.el (locate-file-completion-table): Avoid list*.
6665 2012-06-22  Chong Yidong  <cyd@gnu.org>
6667         * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
6668         (dired-create-files): Doc fix (Bug#11329).
6669         (dired-do-copy): Doc fix (Bug#11334).
6670         (dired-mark-read-string): Doc fix (Bug#11553).
6672         * dired.el (dired-recursive-copies, dired-recursive-deletes):
6673         Doc fix (Bug#11326).
6674         (dired-make-relative): Doc fix (Bug#11332).  Remove unused arg.
6675         (dired-dwim-target): Doc fix.
6677         * wdired.el (wdired-mode): Doc fix.
6679 2012-06-22  Glenn Morris  <rgm@gnu.org>
6681         * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
6682         (pcmpl-rpm-cache-stamp-file): New constant.
6683         (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
6684         (pcmpl-rpm-packages): Optionally cache list of packages.
6686         * pcmpl-rpm.el (pcmpl-rpm): New group.
6687         (pcmpl-rpm-query-options): New option.
6688         (pcmpl-rpm-packages): No need to inline it.
6689         Use pcmpl-rpm-query-options.
6691         * calendar/calendar.el (calendar-in-read-only-buffer):
6692         Avoid some needless mode changes.
6694 2012-06-21  Chong Yidong  <cyd@gnu.org>
6696         * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
6697         (desktop-path): Remove . from the default value (Bug#10977).
6698         (desktop-read): Use user-emacs-directory if desktop-path is nil.
6700 2012-06-20  Chong Yidong  <cyd@gnu.org>
6702         * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
6704 2012-06-20  David Röthlisberger  <david@rothlis.net>  (tiny change)
6706         * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
6707         (bug#11201).
6709 2012-06-20  Chong Yidong  <cyd@gnu.org>
6711         * term.el (term-window-width): Handle the case of a missing right
6712         fringe (Bug#8837).
6713         (term-check-size): Use window-text-height (Bug#5445).
6714         (term-mode): Use define-derived-mode.  Minor cleanups.
6715         Set font-lock-defaults (Bug#7692).
6716         (term-move-columns, term-insert-char, term-emulate-terminal)
6717         (term-erase-in-line, term-insert-spaces): Use font-lock-face.
6719 2012-06-20  Michael Albinus  <michael.albinus@gmx.de>
6721         * net/ange-ftp.el (ange-ftp-get-passwd):
6722         Bind `enable-recursive-minibuffers'.
6723         (ange-ftp-get-process): Throw if `non-essential' is non-nil.
6725 2012-06-19  David Röthlisberger  <david@rothlis.net>  (tiny change)
6727         * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
6729 2012-06-19  Glenn Morris  <rgm@gnu.org>
6731         * progmodes/python.el (python-mode): Derive from prog-mode.
6733 2012-06-19  Kevin Gallagher  <Kevin.Gallagher@boeing.com>
6735         * emulation/edt.el (edt-default-menu-bar-update-buffers)
6736         (edt-user-menu-bar-update-buffers): New functions.
6737         (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
6739 2012-06-19  Chong Yidong  <cyd@gnu.org>
6741         * subr.el (with-selected-window): Preserve the selected window's
6742         terminal's top-frame (Bug#4702).
6744         * window.el (save-selected-window): Likewise.
6746 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6748         * progmodes/python.el (python-rx-constituents): Move backquote.
6749         (python-skeleton-define, python-define-auxiliary-skeleton):
6750         Use `declare'.
6752 2012-06-18  Michael Albinus  <michael.albinus@gmx.de>
6754         * minibuffer.el (read-file-name-default): Revert the patch from
6755         2012-06-17.
6757 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6759         * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
6760         (pcase--u1, pcase--q1): Don't use apply-partially.
6762 2012-06-18  Glenn Morris  <rgm@gnu.org>
6764         * progmodes/python.el (python-proc, python-buffer)
6765         (python-send-receive, python-send-string): Fix obsolete versions.
6767 2012-06-18  Martin Rudalics  <rudalics@gmx.at>
6769         * window.el (special-display-p): Completely remove stringp
6770         check.  Suggested by Andreas Schwab <schwab@linux-m68k.org>.
6772 2012-06-17  Michael Albinus  <michael.albinus@gmx.de>
6774         * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
6776         * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
6778         * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
6779         * net/tramp-sh.el (tramp-maybe-open-connection):
6780         Throw if `non-essential' is non-nil.
6782 2012-06-17  Martin Rudalics  <rudalics@gmx.at>
6784         * window.el (special-display-p): Signal an error if BUFFER-NAME
6785         is not a string (Bug#11713).
6787 2012-06-17  Paul Eggert  <eggert@cs.ucla.edu>
6789         * progmodes/python.el (python-info-beginning-of-backslash):
6790         Rename from python-info-beginning-of-backlash, as a spelling fix.
6792 2012-06-17  Chong Yidong  <cyd@gnu.org>
6794         * term.el (term-emulate-terminal): If term-check-size is called,
6795         move point to the process mark without resetting point (Bug#4635).
6797 2012-06-17  Glenn Morris  <rgm@gnu.org>
6799         * international/mule-cmds.el (mule-menu-keymap)
6800         (set-language-environment, set-locale-environment): Doc tweaks.
6802 2012-06-16  Aurelien Aptel  <aurelien.aptel@gmail.com>
6804         * cus-face.el (custom-face-attributes): Add wave-style underline
6805         attribute.
6806         * faces.el (set-face-attribute): Update docstring to describe
6807         wave-style underline attribute.
6809 2012-06-16  Chong Yidong  <cyd@gnu.org>
6811         * term/xterm.el (terminal-init-xterm): Discard input before
6812         querying background mode (Bug#10959).
6814 2012-06-16  Stefan Merten  <smerten@oekonux.de>
6816         * textmodes/rst.el: Added and corrected some comments.
6817         (rst-re-alist-def): Improve symbol syntax.
6818         (rst-mode-syntax-table): Correct syntax entries.
6819         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
6820         (rst-official-version, rst-official-cvs-rev): Update version
6821         information.
6823 2012-06-15  Juanma Barranquero  <lekktu@gmail.com>
6825         * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
6826         in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
6828 2012-06-15  Fabián Ezequiel Gallina  <fgallina@cuca>
6830         * progmodes/python.el: New python.el merge.
6831         (python-guess-indent): Obsolete var.
6832         (python-indent-guess-indent-offset): New defcustom.
6833         (python-indent): Obsolete var.
6834         (python-indent-offset): New defcustom.
6835         (python-python-command, python-jython-command): Delete var.
6836         (python-shell-interpreter): New defcustom.
6837         (python-pdbtrack-do-tracking-p): Delete var.
6838         (python-pdbtrack-activate): New defcustom.
6839         (python-use-skeletons): Obsolete var.
6840         (python-skeleton-autoinsert): New defcustom.
6841         (inferior-python-filter-regexp, python-continuation-offset)
6842         (python-honour-comment-indentation, python-indent-string-contents)
6843         (python-jython-packages, python-mode-hook)
6844         (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
6845         (python-shell-prompt-alist)
6846         (python-source-modes): Delete defcustoms.
6847         (python-check-buffer-name, python-eldoc-setup-code)
6848         (python-eldoc-string-code, python-ffap-setup-code)
6849         (python-ffap-string-code, python-fill-comment-function)
6850         (python-fill-decorator-function, python-fill-paren-function)
6851         (python-fill-string-function, python-imenu-include-defun-type)
6852         (python-imenu-make-tree, python-imenu-subtree-root-label)
6853         (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
6854         (python-shell-compilation-regexp-alist)
6855         (python-shell-completion-module-string-code)
6856         (python-shell-completion-pdb-string-code)
6857         (python-shell-completion-setup-code)
6858         (python-shell-completion-string-code)
6859         (python-shell-enable-font-lock, python-shell-exec-path)
6860         (python-shell-extra-pythonpaths)
6861         (python-shell-internal-buffer-name, python-shell-interpreter-args)
6862         (python-shell-process-environment)
6863         (python-shell-prompt-block-regexp)
6864         (python-shell-prompt-output-regexp)
6865         (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
6866         (python-shell-send-setup-max-wait, python-shell-setup-codes)
6867         (python-shell-virtualenv-path): New defcustoms.
6868         (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
6869         (inferior-python-mode-syntax-table, python--prompt-regexp)
6870         (python-buffer, python-command python-python-command)
6871         (python-default-template, python-imports, python-indent-index)
6872         (python-indent-list, python-indent-list-length)
6873         (python-mode-running, python-pdbtrack-is-tracking-p)
6874         (python-preoutput-continuation, python-preoutput-leftover)
6875         (python-preoutput-result, python-preoutput-skip-next-prompt)
6876         (python-prev-dir/file, python-recursing)
6877         (python-saved-check-command, python-version-checked)
6878         (python-which-func-length-limit)
6879         (view-return-to-alist): Delete vars.
6880         (python-check-custom-command, python-dotty-syntax-table)
6881         (python-imenu-index-alist, python-indent-current-level)
6882         (python-indent-dedenters, python-indent-levels)
6883         (python-nav-beginning-of-defun-regexp)
6884         (python-nav-list-defun-positions-cache)
6885         (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
6886         (python-shell-internal-buffer)
6887         (python-skeleton-available): New vars.
6888         (def-python-skeleton): Delete macro.
6889         (python-skeleton-define): New macro.
6890         (python-define-auxiliary-skeleton, python-rx): New macros.
6891         (python-insert-class): Delete command.
6892         (python-skeleton-class): New command.
6893         (python-insert-def): Delete command.
6894         (python-skeleton-def): New command.
6895         (python-insert-for): Delete command.
6896         (python-skeleton-for): New command.
6897         (python-insert-if): Delete command.
6898         (python-skeleton-if): New command.
6899         (python-insert-try/except, python-insert-try/finally): Delete commands.
6900         (python-skeleton-try): New command.
6901         (python-insert-while): Delete command.
6902         (python-skeleton-while): New command.
6903         (python-backspace): Delete command.
6904         (python-indent-dedent-line-backspace): New command.
6905         (python-electric-colon): Delete command.
6906         (python-indent-electric-colon): New command.
6907         (python-guess-indent): Delete command.
6908         (python-indent-guess-indent-offset): New command.
6909         (python-shift-left): Delete command.
6910         (python-indent-shift-left): New command.
6911         (python-shift-right): Delete command.
6912         (python-indent-shift-right): New command.
6913         (python-find-function): Delete command.
6914         (python-nav-jump-to-defun): New command.
6915         (python-next-statement): Delete command.
6916         (python-nav-forward-sentence): New command.
6917         (python-previous-statement): Delete command.
6918         (python-nav-backward-sentence): New command.
6919         (python-fill-paragraph): Delete command.
6920         (python-fill-paragraph-function): New command.
6921         (python-send-buffer): Delete command.
6922         (python-shell-send-buffer): New command.
6923         (python-send-defun): Delete command.
6924         (python-shell-send-defun): New command.
6925         (python-send-region, python-send-region-and-go): Delete commands.
6926         (python-shell-send-region)
6927         (python-shell-switch-to-shell): New commands.
6928         (python-send-string): Delete command.
6929         (python-shell-send-string): New command.
6930         (python-switch-to-python): Delete command.
6931         (python-shell-switch-to-shell): New command.
6932         (python-describe-symbol): Delete command.
6933         (python-eldoc-at-point): New command.
6934         (python--set-prompt-regexp, python-args-to-list)
6935         (python-after-info-look, python-check-version)
6936         (python-check-comint-prompt, python-find-imports)
6937         (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
6938         (python-unload-function, python-expand-template)
6939         (python-maybe-jython, python-preoutput-filter)
6940         (python-pdbtrack-get-source-buffer)
6941         (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
6942         (python-pdbtrack-toggle-stack-tracking)
6943         (python-pdbtrack-track-stack-file, python-initial-text)
6944         (python-first-word, python-comment-line-p, python-send-command)
6945         (python-setup-brm, python-sentinel, python-set-proc)
6946         (python-skip-out, python-input-filter, python-outdent-p)
6947         (python-outline-level, python-backslash-continuation-line-p)
6948         (python-end-of-block, python-end-of-statement, python-mark-block)
6949         (python-beginning-of-block, python-beginning-of-statement)
6950         (python-blank-line-p, python-beginning-of-string)
6951         (python-open-block-statement-p): Delete functions.
6952         (python-indent-line, python-indent-line-1): Delete functions.
6953         (python-indent-line): New function.
6954         (python-indentation-levels): Delete function.
6955         (python-indent-calculate-levels): New function.
6956         (python-proc): Delete function.
6957         (python-shell-get-process): New function.
6958         (python-send-receive): Delete function.
6959         (python-shell-send-string-no-output): New function.
6960         (python-module-path): Delete function.
6961         (python-ffap-module-path): New function.
6962         (python-completion-at-point)
6963         (python-symbol-completions): Delete functions.
6964         (python-completion-complete-at-point): New function.
6965         (python-load-file): Delete function.
6966         (python-shell-send-file): New function.
6967         (python-calculate-indentation): Delete function.
6968         (python-indent-calculate-indentation): New function.
6969         (python-skip-comments/blanks): Delete function.
6970         (python-util-forward-comment): New function.
6971         (python-continuation-line-p): Delete function.
6972         (python-info-continuation-line-p): New function.
6973         (python-which-func, python-current-defun): Delete function.
6974         (python-info-current-defun): New function.
6975         (python-beginning-of-defun): Delete function.
6976         (python-nav-beginning-of-defun): New function.
6977         (python-close-block-statement-p)
6978         (python-block-end-p): Delete function.
6979         (python-info-closing-block): New function.
6980         (python-comint-output-filter-function)
6981         (python-eldoc--get-doc-at-point, python-end-of-defun-function)
6982         (python-fill-comment, python-fill-decorator, python-fill-paren)
6983         (python-fill-string, python-imenu-make-element-tree)
6984         (python-imenu-make-tree, python-imenu-tree-assoc)
6985         (python-indent-context, python-indent-dedent-line)
6986         (python-indent-line-function)
6987         (python-indent-post-self-insert-function)
6988         (python-indent-toggle-levels)
6989         (python-info-assignment-continuation-line-p)
6990         (python-info-beginning-of-backlash)
6991         (python-info-block-continuation-line-p)
6992         (python-info-closing-block-message)
6993         (python-info-line-ends-backslash-p)
6994         (python-info-looking-at-beginning-of-defun)
6995         (python-info-ppss-context, python-info-ppss-context-type)
6996         (python-nav-list-defun-positions, python-nav-read-defun)
6997         (python-nav-sentence-end, python-nav-sentence-start)
6998         (python-pdbtrack-comint-output-filter-function)
6999         (python-pdbtrack-set-tracked-buffer)
7000         (python-shell-calculate-exec-path)
7001         (python-shell-calculate-process-environment)
7002         (python-shell-completion--do-completion-at-point)
7003         (python-shell-completion--get-completions)
7004         (python-shell-completion-complete-at-point)
7005         (python-shell-completion-complete-or-indent)
7006         (python-shell-get-or-create-process)
7007         (python-shell-get-process-name)
7008         (python-shell-internal-get-or-create-process)
7009         (python-shell-internal-get-process-name)
7010         (python-shell-internal-send-string, python-shell-make-comint)
7011         (python-shell-parse-command, python-shell-send-setup-code)
7012         (python-skeleton-add-menu-items)
7013         (python-util-clone-local-variables, python-util-position)
7014         (run-python-internal, python-indentation-levels)
7015         (python-nav-beginning-of-defun)
7016         (python-completion-complete-at-point): New functions.
7017         (run-python): Change arguments.  New API requirements.
7019 2012-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7021         * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
7022         (bug#11649).
7024         * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
7025         (macroexp--expand-all): Use it.
7027         * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
7028         (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
7029         Use `cl-function' instead.
7031 2012-06-14  Juanma Barranquero  <lekktu@gmail.com>
7033         * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
7034         Suggested by Stefan Monnier while discussing bug#11657.
7036 2012-06-14  Sam Steingold  <sds@gnu.org>
7038         * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
7040 2012-06-14  Andreas Schwab  <schwab@linux-m68k.org>
7042         * play/doctor.el (doctor-doc): Remove parameter and use
7043         doctor-sent instead of sent.
7044         (doctor-read-print): Use doctor-sent instead of sent.  (Bug#11708)
7046 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7048         * files.el: Require cl-lib.
7049         (file-name-non-special): Replace case -> cl-case.
7051         * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
7053         * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
7054         mapping from #' to function*.
7056 2012-06-13  Chong Yidong  <cyd@gnu.org>
7058         * mouse.el (mouse-drag-track): Do not set the mark if the user
7059         releases the mouse without selecting anything (Bug#11588).
7061 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7063         * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
7064         as well (bug#11646).
7066         * loadup.el: Count byte-code functions as well.
7068         * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
7069         * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
7071         * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
7072         (bug#11649).  Add cl-defun and cl-defmacro.
7074 2012-06-13  Drew Adams  <drew.adams@oracle.com>
7076         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
7077         Fix last change.
7079 2012-06-13  Michael Albinus  <michael.albinus@gmx.de>
7081         * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
7082         Otherwise, it blocks in batch mode.
7084 2012-06-13  Juanma Barranquero  <lekktu@gmail.com>
7086         * help-mode.el (bookmark-make-record-default): Declare.
7088 2012-06-13  Chong Yidong  <cyd@gnu.org>
7090         * emacs-lisp/package.el (list-packages): Compute a list of
7091         packages that are newly-available since the last list-packages
7092         invocation.
7093         (package-menu--new-package-list): New var.
7094         (package-menu--generate, package-menu--print-info)
7095         (package-menu--status-predicate, package-menu-mark-install):
7096         Handle new status label "new".
7098 2012-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7100         * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
7101         conversion to backquotes.
7103 2012-06-12  Chong Yidong  <cyd@gnu.org>
7105         * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
7106         Rename from gud-inhibit-global-bindings.
7108         * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
7110         * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
7111         hook from nxml-glyph-set-hook.
7113         * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
7114         declaration.
7116         * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
7118         * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
7119         Convert to defcustom.
7121 2012-06-12  Drew Adams  <drew.adams@oracle.com>
7123         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
7124         New functions.
7125         (help-mode): Use them.
7127 2012-06-11  Glenn Morris  <rgm@gnu.org>
7129         * progmodes/fortran.el (fortran-font-lock-keywords-3):
7130         Use preprocessor face for directives.
7131         (fortran-directive-re): Doc fix.
7133 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7135         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
7136         conversion to backquotes (bug#11652).
7138         Fix compiler-expansion of CL's cXXr functions (bug#11673).
7139         * emacs-lisp/cl-lib.el (cl--defalias): New function.
7140         (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
7141         (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
7142         (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
7143         (cl-ninth, cl-tenth): Mark them as inlinable.
7144         (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
7145         (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
7146         (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
7147         (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
7148         Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
7149         (cl-list*, cl-adjoin): Don't put an autoload manually.
7150         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
7151         (cl--compiler-macro-list*): Add autoload cookie.
7152         (cl--compiler-macro-cXXr): New function.
7154         * help-fns.el (help-fns--compiler-macro): New function extracted from
7155         describe-function-1; follow aliases and use `compiler-macro' property.
7156         (describe-function-1): Use it.
7158 2012-06-11  Chong Yidong  <cyd@gnu.org>
7160         * startup.el (fancy-splash-head): Use splash.svg even if librsvg
7161         is uninstalled, if imagemagick is installed.
7163 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7165         * emacs-lisp/cl-lib.el: Use lexical-binding.
7166         (cl-map-extents, cl-maclisp-member): Remove.
7167         (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
7168         (cl--set-substring, cl--block-wrapper, cl--block-throw)
7169         (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
7170         * emacs-lisp/cl-extra.el: Use lexical-binding.
7171         (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
7172         (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
7173         (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
7174         (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
7175         * emacs-lisp/cl-seq.el: Use lexical-binding.
7176         (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
7177         (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
7178         (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
7179         * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
7180         * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
7181         CL's internals.
7183 2012-06-11  Michael Albinus  <michael.albinus@gmx.de>
7185         Sync with Tramp 2.2.6-pre.
7187         * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
7188         `print-length' and `print-level' to nil, in order to avoid
7189         truncation.  Reported by Christopher Schmidt
7190         <christopher@ristopher.com>.
7192         * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
7194         * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
7195         New defmacro.
7196         (tramp-compat-copy-directory): Add optional argument
7197         COPY-CONTENTS.  It is not handled yet.
7199         * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
7200         (tramp-ftp-file-name-p): Simplify.
7202         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
7203         * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
7204         connection vector.
7206         * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
7207         (tramp-methods): Do not use `tramp-password-end-of-line'.
7208         (tramp-completion-function-alist-putty): Handle UNIX case.
7209         (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
7210         (tramp-do-file-attributes-with-stat)
7211         (tramp-do-directory-files-and-attributes-with-stat) Return uid and
7212         gid as real numbers.  They could run out of integer range on cygwin.
7213         (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
7214         (tramp-sh-handle-expand-file-name): Handle hops.
7215         (tramp-open-connection-setup-interactive-shell):
7216         Use `tramp-cleanup'.  Move check for busyboxes ...
7217         (tramp-find-shell): ... here.  Simplify implementation.
7218         Set "remote-shell" property also for alternative shells.
7219         (tramp-remote-coding-commands): Check "test -c /dev/stdout".
7220         If failing, a regular file would be written otherwise.
7221         Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
7222         (tramp-find-inline-encoding): Cache the coding commands in the
7223         process cache.  Apply test command on the remote side, if defined.
7224         (tramp-find-inline-compress): Cache the compress commands in the
7225         process cache.
7226         (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
7227         when requested.  Handle hops.
7228         (tramp-current-connection): New defvar.
7229         (tramp-maybe-open-connection): Use `tramp-cleanup'.
7230         Throw `suppress', if there was a failed connection shortly before.
7231         Handle user interrupt.  (Bug#10187)
7232         (tramp-get-inline-compress, tramp-get-inline-coding):
7233         Read connection properties from the process cache.
7235         * net/tramp-smb.el (tramp-smb-server-version)
7236         (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
7237         New defconsts.
7238         (tramp-smb-prompt): Extend for powershell prompt.
7239         (tramp-smb-file-name-handler-alist): Add handlers for
7240         `process-file', `shell-command' and `start-file-process'.
7241         (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
7242         (tramp-smb-winexe-shell-command-switch): New defcustoms.
7243         (tramp-smb-file-name-p): Simplify.
7244         (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
7245         (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
7246         (tramp-smb-shell-quote-argument): New defuns.
7247         (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
7248         Implement using "tar".  By this, time-stamps are preserved.
7249         (tramp-smb-handle-copy-file): Handle also the case of directories.
7250         (tramp-smb-do-file-attributes-with-stat)
7251         (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
7252         Use `tramp-get-connection-buffer').
7253         (tramp-smb-handle-rename-file): Use "rename", when source and
7254         target are on the same share.
7255         (tramp-smb-maybe-open-connection): Handle wrong passwords.
7256         Use `tramp-smb-server-version'.
7257         (tramp-smb-wait-for-output): Remove prompt.
7259         * net/tramp.el (top): Require 'cl.
7260         (tramp-methods, tramp-rsh-end-of-line):
7261         Remove `tramp-password-end-of-line' from docstring.
7262         (tramp-save-ad-hoc-proxies): New defcustom.
7263         (tramp-completion-function-alist): Adapt docstring.
7264         (tramp-default-password-end-of-line): Remove defcustom.
7265         (tramp-shell-prompt-pattern): Allow "[]" style prompts.  (Bug#11065)
7266         (tramp-user-regexp, tramp-file-name-regexp-unified)
7267         (tramp-file-name-regexp-url): Extend regexp by hop separator.
7268         (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
7269         (tramp-remote-file-name-spec-regexp): New defconst.
7270         (tramp-file-name-structure): Extend structure for hops.
7271         (tramp-get-method-parameter): Move up.
7272         (tramp-file-name-p, tramp-dissect-file-name)
7273         (with-parsed-tramp-file-name): Handle hops.
7274         (tramp-file-name-hop): New defun.
7275         (tramp-make-tramp-file-name): New optional arg HOP.
7276         (tramp-message-show-progress-reporter-message): New defvar.
7277         (tramp-with-progress-reporter): Use it.  We cannot use
7278         `tramp-message-show-message' here, because this suppresses also
7279         error buffers.
7280         (tramp-error-with-buffer): Suppress buffer view, if
7281         `tramp-message-show-message' is nil.
7282         Use `tramp-get-connection-buffer'.
7283         (tramp-cleanup): New defun.
7284         (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
7285         (tramp-file-name-handler): If `debug-on-error' is set, propagate
7286         an error unchanged.
7287         (tramp-completion-handle-file-name-all-completions): Handle hops.
7288         Fix an error when called from ido.
7289         (tramp-completion-dissect-file-name): Use better local variable
7290         name.  Add hop to the vector.
7291         (tramp-handle-insert-file-contents): Use progress-reporter for the
7292         whole scenario.
7293         (tramp-action-password): Let-bind `enable-recursive-minibuffers'
7294         to `t'.
7295         (tramp-check-for-regexp): Simplify search.
7296         (tramp-enter-password): Remove it.  Move implementation ...
7297         (tramp-action-password): ... here.
7298         (tramp-mode-string-to-int, tramp-local-host-p)
7299         (tramp-make-tramp-temp-file, tramp-read-passwd)
7300         (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
7301         Set tramp-autoload cookie.
7303         * net/trampver.el: Update release number.
7305 2012-06-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7306             Michael Albinus  <michael.albinus@gmx.de>
7308         * net/tramp.el (tramp-set-completion-function): Fix docstring.
7309         (tramp-parse-group, tramp-parse-file)
7310         (tramp-parse-shostkeys-sknownhosts): New defuns.
7311         (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
7312         (tramp-parse-shosts-group, tramp-parse-sconfig)
7313         (tramp-parse-sconfig-group, tramp-parse-shostkeys)
7314         (tramp-parse-sknownhosts, tramp-parse-hosts)
7315         (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
7316         Use them.
7317         (tramp-parse-passwd-group, tramp-parse-netrc-group)
7318         (tramp-parse-putty-group): Don't narrow.
7319         (tramp-parse-putty): Make a loop.
7320         (tramp-file-name-handler): Catch the `suppress' signal.
7322 2012-06-11  Chong Yidong  <cyd@gnu.org>
7324         * image.el (imagemagick-register-types): Put the ImageMagick entry
7325         at the end of image-type-file-name-regexps.
7327 2012-06-11  Johan Bockgård  <bojohan@gnu.org>
7329         * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
7330         (pcase, pcase-let*, pcase-dolist): Use them.
7332 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7334         * emacs-lisp/pcase.el (pcase--let*): New function.
7335         (pcase-let*): Use it.  Use pcase--memoize to avoid repeated expansions.
7336         (pcase--expand): Use macroexp-let².
7338 2012-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7340         * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
7341         * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
7342         * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
7343         * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
7344         * emacs-lisp/derived.el: Use pcase instead of `cl'.
7345         * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
7347 2012-06-10  Glenn Morris  <rgm@gnu.org>
7349         * mail/rmail.el (rmail-yank-current-message): Leave point at
7350         correct position.  (Bug#11660)
7352 2012-06-10  Chong Yidong  <cyd@gnu.org>
7354         * allout-widgets.el: Fix code header.
7356 2012-06-10  Chong Yidong  <cyd@gnu.org>
7358         * cus-edit.el (customize-changed-options-previous-release):
7359         Bump to 24.1.
7361 2012-06-09  Andreas Schwab  <schwab@linux-m68k.org>
7363         * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
7365 2012-06-09  Chong Yidong  <cyd@gnu.org>
7367         * ebuff-menu.el (electric-buffer-list): Preserve header line.
7369 2012-06-09  Martin Rudalics  <rudalics@gmx.at>
7371         * window.el (special-display-popup-frame): Don't use
7372         window--display-buffer (Bug#11651).
7374 2012-06-09  Eli Zaretskii  <eliz@gnu.org>
7376         Fix parallel builds: make sure loaddefs.el is not being written
7377         while Lisp files are compiled.
7378         (compile): Don't depend on 'mh-autoloads'.
7379         (compile-CMD, compile-SH): Depend on 'autoloads'.
7380         (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
7382         * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200.  (Bug#11649)
7384 2012-06-09  Chong Yidong  <cyd@gnu.org>
7386         * face-remap.el (face-remap-add-relative, face-remap-set-base)
7387         (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
7388         Doc fixes (Bug#11225).
7390 2012-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7392         * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
7393         a function if there's a clear indication that it has a compiler-macro.
7394         * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
7395         (macro-declarations-alist): Add arglist to declaration functions.
7396         (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
7397         * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
7398         * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
7399         * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
7400         Also add autoload to find the compiler macro.
7401         * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
7402         (cl--compiler-macro-member, cl--compiler-macro-assoc)
7403         (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
7404         (cl--compiler-macro-get): New functions, replacing calls to
7405         cl-define-compiler-macro.
7406         (cl-typep) [compiler-macro]: Use macroexp-let².
7408 2012-06-08  Nick Dokos  <nicholas.dokos@hp.com>  (tiny change)
7410         * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
7411         string properly, fixes Bug#11473.
7413 2012-06-08  Chong Yidong  <cyd@gnu.org>
7415         * faces.el (set-face-attribute): Doc fix.
7416         (modify-face): Don't use :bold and :italic.
7417         (error, warning, success): Tweak definitions.
7419         * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
7420         (custom-modified, custom-set, custom-changed, custom-themed)
7421         (custom-saved, custom-button, custom-button-mouse)
7422         (custom-button-pressed, custom-state, custom-comment-tag)
7423         (custom-variable-tag, custom-group-tag-1, custom-group-tag)
7424         (custom-group-subtitle): Use new-style face specs.
7425         (custom-invalid-face, custom-rogue-face, custom-modified-face)
7426         (custom-set-face, custom-changed-face, custom-saved-face)
7427         (custom-button-face, custom-button-pressed-face)
7428         (custom-documentation-face, custom-state-face)
7429         (custom-comment-face, custom-comment-tag-face)
7430         (custom-variable-tag-face, custom-variable-button-face)
7431         (custom-face-tag-face, custom-group-tag-face-1)
7432         (custom-group-tag-face): Remove obsolete face alias.
7434         * epa.el (epa-validity-high, epa-validity-medium)
7435         (epa-validity-low, epa-mark, epa-field-name, epa-string)
7436         (epa-field-name, epa-field-body):
7437         * font-lock.el (font-lock-comment-face, font-lock-string-face)
7438         (font-lock-keyword-face, font-lock-builtin-face)
7439         (font-lock-function-name-face, font-lock-variable-name-face)
7440         (font-lock-type-face, font-lock-constant-face):
7441         * ido.el (ido-first-match, ido-only-match, ido-subdir)
7442         (ido-virtual, ido-indicator, ido-incomplete-regexp):
7443         * speedbar.el (speedbar-button-face, speedbar-file-face)
7444         (speedbar-directory-face, speedbar-tag-face)
7445         (speedbar-selected-face, speedbar-highlight-face)
7446         (speedbar-separator-face):
7447         * whitespace.el (whitespace-newline, whitespace-space)
7448         (whitespace-hspace, whitespace-tab, whitespace-trailing)
7449         (whitespace-line, whitespace-space-before-tab)
7450         (whitespace-space-after-tab, whitespace-indentation)
7451         (whitespace-empty):
7452         * emulation/cua-base.el (cua-global-mark):
7453         * eshell/em-prompt.el (eshell-prompt):
7454         * net/newst-plainview.el (newsticker-new-item-face)
7455         (newsticker-old-item-face, newsticker-immortal-item-face)
7456         (newsticker-obsolete-item-face, newsticker-date-face)
7457         (newsticker-statistics-face, newsticker-default-face):
7458         * net/newst-reader.el (newsticker-feed-face)
7459         (newsticker-extra-face, newsticker-enclosure-face):
7460         * net/newst-treeview.el (newsticker-treeview-face)
7461         (newsticker-treeview-new-face, newsticker-treeview-old-face)
7462         (newsticker-treeview-immortal-face)
7463         (newsticker-treeview-obsolete-face)
7464         (newsticker-treeview-selection-face):
7465         * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
7466         (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
7467         (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
7468         (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
7469         * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
7470         (nxml-outline-active-indicator, nxml-outline-ellipsis):
7471         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
7472         (mpuz-text):
7473         * progmodes/vera-mode.el (vera-font-lock-number)
7474         (vera-font-lock-function, vera-font-lock-interface):
7475         * textmodes/table.el (table-cell): Use new-style face specs, and
7476         don't use the old :bold and :italic attributes.
7478         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
7479         (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
7480         (ebrowse-member-class, ebrowse-progress): Likewise.
7481         (ebrowse-tree-mark-face, ebrowse-root-class-face)
7482         (ebrowse-file-name-face, ebrowse-default-face)
7483         (ebrowse-member-attribute-face, ebrowse-member-class-face)
7484         (ebrowse-progress-face): Remove obsolete faces.
7486         * progmodes/flymake.el (flymake-errline, flymake-warnline):
7487         Inherit from error and warning faces respectively.
7489         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
7490         Likewise.
7491         (flyspell-incorrect-face, flyspell-duplicate-face):
7492         Remove obsolete aliases.
7494 2012-06-08  Michael Albinus  <michael.albinus@gmx.de>
7496         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
7497         Avoid infloop.
7499 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7501         * startup.el (argv, argi): Make lexically scoped.
7502         * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
7503         * emacs-lisp/cl-macs.el: Use lexical-binding.
7504         Rename cl-bind-* to cl--bind-*.
7505         * files.el: Don't require `cl' since it doesn't use it.
7506         * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
7508 2012-06-08  Juanma Barranquero  <lekktu@gmail.com>
7510         * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
7511         (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
7512         instead of calling external sort utility.
7513         (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
7515 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
7517         * descr-text.el (describe-char): Mention how to insert the
7518         character, if the current input method doesn't support it.
7519         See the discussion in this thread for the details:
7520         http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
7522 2012-06-08  Sam Steingold  <sds@gnu.org>
7524         * bindings.el (global-map): Bind XF86Forward to next-buffer and
7525         XF86Back to previous-buffer.
7526         (minibuffer-local-map): Bind them to next-history-element and
7527         previous-history-element respectively.
7528         * help-mode.el (help-mode-map): Bind them to help-go-forward and
7529         help-go-back respectively.
7530         * info.el (Info-mode-map): Bind them to Info-history-forward and
7531         Info-history-back respectively.
7532         These are the keys next to Up on the ThinkPad keyboard.
7534 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7536         Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
7537         * emacs-lisp/cl-macs.el: Provide itself.
7538         (cl--labels-convert-cache): New var.
7539         (cl--labels-convert): New function.
7540         (cl-flet, cl-labels): New implementation with new semantics, relying on
7541         lexical-binding.
7542         * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
7543         (cl-closure-vars, cl--function-convert-cache)
7544         (cl--function-convert): Move from cl-macs.el.
7545         (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
7546         rename by removing the "cl-" prefix.
7547         * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
7549 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7551         * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
7552         (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
7553         (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
7554         (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
7555         (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
7556         (cl-hash-table-count): Add old compatibility aliases.
7558         * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
7559         Use macroexpand-all-environment instead.
7560         (cl--old-macroexpand): New var.
7561         (cl--sm-macroexpand): New function.
7562         (cl-symbol-macrolet): Use it during macro expansion.
7563         (cl--function-convert-cache): New var.
7564         (cl--function-convert): New function, extracted from
7565         cl-macroexpand-all.
7566         (cl-lexical-let): Use it.
7568         * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
7569         (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
7570         (cl-member): Remove old alias.
7572         * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
7573         (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
7574         (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
7575         (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
7576         (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
7577         (cl-macroexpand-cmacs): Remove var.
7578         (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
7579         Use macroexpand-all instead.
7581 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7583         * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
7584         (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
7585         (macroexp-copyable-p): New functions and macros.
7586         * emacs-lisp/edebug.el (edebug-unwrap):
7587         * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
7588         * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
7589         (pcase--let*): Remove.
7590         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
7591         (byte-compile-constp): Remove.  Use macroexp--const-symbol-p and
7592         macroexp-const-p instead.
7593         * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
7595         * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
7596         instead of "cl-" for internal definitions.  Use macroexp-const-p.
7597         (cl-old-bc-file-form): Remove var.
7598         (cl-const-exprs-p): Remove fun.
7599         (cl-labels, cl-macrolet): Use backquote.
7600         (cl-lexical-let): Use cl-symbol-macrolet.  Don't use cl-defun-expander.
7601         (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
7602         (cl-define-setf-expander): Rename from cl-define-setf-method.
7603         * emacs-lisp/cl.el: Adjust alias for define-setf-method.
7605         * international/mule-cmds.el: Don't require CL.
7606         (view-hello-file): Don't use `letf'.
7608 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7610         * tmm.el (tmm-prompt): Use string-prefix-p.
7611         (tmm-completion-delete-prompt): Don't affect current-buffer outside.
7612         (tmm-add-prompt): Use minibuffer-completion-help.
7613         (tmm-delete-map): Remove.
7615         * subr.el (kbd): Make it its own function.
7617 2012-06-07  Stefan Merten  <smerten@oekonux.de>
7619         * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
7620         Silence compiler warnings.  Fix versions.
7621         (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7622         (rst-shift-region, rst-adornment-level, rst-compute-tabs)
7623         (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7624         (rst-package-emacs-version-alist): Correct Emacs version to
7625         represent major merge with upstream.
7626         (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7628 2012-06-06  Glenn Morris  <rgm@gnu.org>
7630         * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
7631         Only print environment variables if set.
7633 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7635         * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
7636         (macroexp--cons): Rename from maybe-cons.
7637         (macroexp--accumulate): Rename from macroexp-accumulate.
7638         (macroexp--all-forms): Rename from macroexpand-all-forms.
7639         (macroexp--all-clauses): Rename from macroexpand-all-clauses.
7640         (macroexp--expand-all): Rename from macroexpand-all-1.
7642 2012-06-06  Sam Steingold  <sds@gnu.org>
7644         * calendar/calendar.el (calendar-in-read-only-buffer):
7645         Call `special-mode' to enable the standard read-only keybindings.
7647 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7649         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
7650         with "loading" messages (bug#11635).
7652 2012-06-06  Michael Albinus  <michael.albinus@gmx.de>
7654         * files.el (enable-remote-dir-locals): New option.
7655         (hack-dir-local-variables): Use it.  (Bug#1933, Bug#6731)
7657         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
7658         Ensure, that the temp directory is local.
7660         * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
7661         `temporary-file-directory'.
7663         * progmodes/python.el (python-send-region): Ensure, that the
7664         temporary file is created also in the remote case.
7666 2012-06-06  Glenn Morris  <rgm@gnu.org>
7668         * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
7669         (vc-rcs-update-changelog): Use it.
7671         * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
7673         * vc/vc-sccs.el (vc-sccs-write-revision): New function.
7674         (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
7675         (vc-sccs-diff): Replace use of the external vcdiff script.
7677 2012-06-05  Glenn Morris  <rgm@gnu.org>
7679         * ledit.el: Move to obsolete/.
7681 2012-06-05  Sam Steingold  <sds@gnu.org>
7683         * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
7684         patch (Bug#11140).
7686 2012-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7688         * emacs-lisp/cust-print.el: Move to obsolete.
7690         * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
7691         compiler-macro expansion.
7693         Add native compiler-macro support.
7694         * emacs-lisp/macroexp.el (macroexpand-all-1):
7695         Support compiler-macros directly.  Properly follow aliases and apply
7696         the compiler macros more thoroughly.
7697         * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
7698         macroexpand now properly follows aliases.
7699         * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
7700         (cl-compiler-macroexpand): Use new prop.
7701         * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
7703         * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
7705 2012-06-05  Martin Rudalics  <rudalics@gmx.at>
7707         * window.el (get-lru-window, get-mru-window, get-largest-window):
7708         New argument NOT-SELECTED to avoid picking the selected window.
7709         (window--display-buffer-1, window--display-buffer-2): Replace by
7710         new function window--display-buffer
7711         (display-buffer-same-window, display-buffer-reuse-window)
7712         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7713         Use window--display-buffer.
7714         (display-buffer-use-some-window): Remove temporary dedication
7715         hack by calling get-lru-window and get-largest-window with
7716         NOT-SELECTED argument non-nil.  Call window--display-buffer.
7718 2012-06-05  Glenn Morris  <rgm@gnu.org>
7720         * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
7721         Replace external vcdiff script.
7723 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7725         * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
7727 2012-06-04  Chong Yidong  <cyd@gnu.org>
7729         * image.el (imagemagick-types-inhibit): Revert last change.
7730         Add INFO and M.
7731         (imagemagick-enabled-types): Remove CIN and EPS*.
7733 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7735         * emacs-lisp/cl-lib.el: Rename from cl.el.
7736         * emacs-lisp/cl.el: New compatibility file.
7737         * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
7738         * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
7739         to obey the "cl-" prefix.
7740         * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
7742 2012-06-03  Glenn Morris  <rgm@gnu.org>
7744         * emacs-lisp/authors.el (authors-aliases): Addition.
7746         * cus-start.el (tool-bar-style, tool-bar-max-label-size):
7747         Fix :version.
7749 2012-06-03  Stefan Merten  <smerten@oekonux.de>
7751         * textmodes/rst.el: Add comments.
7752         (rst-transition, rst-adornment): New faces.
7753         (rst-adornment-faces-alist): Make default safe to reevaluate.
7754         Fixes
7755         http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
7756         Improve customization tags.
7757         (rst-define-level-faces): Clarify meaning.
7759 2012-06-03  Chong Yidong  <cyd@gnu.org>
7761         * progmodes/compile.el (compilation-mode-line-fail)
7762         (compilation-mode-line-run, compilation-mode-line-exit):
7763         New faces.
7764         (compilation-start, compilation-handle-exit): Use them (Bug#11032).
7766 2012-06-03  Jack Duthen  <duthen.mac.01@gmail.com>  (tiny change)
7768         * progmodes/which-func.el (which-func-update-ediff-windows):
7769         New function.  Use it in ediff-select-hook (Bug#11478).
7771 2012-06-03  Chong Yidong  <cyd@gnu.org>
7773         * bindings.el: Remove explicit help text from format-mode-line.
7774         It is now supplied by mode-line-default-help-echo.
7775         (mode-line-front-space, mode-line-end-spaces)
7776         (mode-line-misc-info): New variables.
7777         (mode-line-modes, mode-line-position): Move the default value to
7778         the variable definition.
7779         (mode-line-default-help-echo): New defcustom.
7780         (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
7781         (mode-line-modified-help-echo): New functions.
7782         (mode-line-mule-info, mode-line-modified): Use them.
7783         (mode-line-eol-desc, propertized-buffer-identification):
7784         Consistency fixes for help text.
7785         (mode-line-coding-system-map): Allow using mouse-3 to invoke
7786         set-buffer-file-coding-system (Bug#289).
7787         (mode-line-mule-info-help-echo): Update help text.
7789 2012-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7791         * simple.el (execute-extended-command): Set real-this-command
7792         (bug#11506).
7794 2012-06-02  Chong Yidong  <cyd@gnu.org>
7796         Remove incorrect uses of "modeline" in comments, docstrings, and
7797         function/variable names (Bug#10329).
7799         * cus-edit.el (mode-line):
7800         * dframe.el (dframe-mouse-hscroll):
7801         * emacs-lisp/re-builder.el:
7802         * emacs-lisp/easy-mmode.el (define-minor-mode):
7803         * frame.el (set-frame-name):
7804         * help.el (lookup-minor-mode-from-indicator):
7805         * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
7806         * progmodes/cc-cmds.el (c-toggle-auto-newline)
7807         (c-toggle-hungry-state):
7808         * progmodes/antlr-mode.el (antlr-language-alist):
7809         * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
7810         * progmodes/vhdl-mode.el (vhdl-mode):
7811         * progmodes/which-func.el (which-func, which-func-cleanup-function):
7812         * term/ns-win.el (ns-face-at-pos):
7813         * term/sup-mouse.el (sup-mouse-report):
7814         * textmodes/flyspell.el (flyspell-mode-line-string):
7815         * textmodes/ispell.el (ispell-highlight-face):
7816         * textmodes/reftex-global.el:
7817         * vc/vc-arch.el (vc-arch-mode-line-string):
7818         * vc/vc-cvs.el (vc-cvs-mode-line-string):
7819         * vc/vc-git.el (vc-git-mode-line-string):
7820         * vc/vc-hooks.el (vc-display-status)
7821         (vc-default-mode-line-string):
7822         * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
7824         * ansi-color.el (ansi-color-faces-vector): Change default faces.
7826         * dired.el (dired-sort-set-mode-line): Rename from
7827         dired-sort-set-modeline.  All callers changed.
7829         * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
7830         eshell-status-in-modeline.
7832         * foldout.el (foldout-mode-line-string): Rename from
7833         foldout-modeline-string.  All callers changed.
7834         (foldout-update-mode-line): Rename from foldout-update-modeline.
7836         * subr.el (redraw-modeline): Make into obsolete alias.
7838         * calendar/timeclock.el (timeclock-mode-line-display): Rename from
7839         timeclock-modeline-display.  Make old name an alias.
7840         (timeclock-update-mode-line): Likewise.  All callers changed.
7841         (timeclock-mode-line-display): No need to check before using
7842         add-hook.
7843         (timeclock-relative, timeclock-day-over-hook)
7844         (timeclock-use-elapsed, timeclock-mode-string)
7845         (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
7847         * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
7848         crisp-mode-modeline-string.
7850         * play/solitaire.el (solitaire-build-mode-line): Rename from
7851         solitaire-build-modeline.  All callers changed.
7853         * play/zone.el (zone-hiding-mode-line): Rename from
7854         zone-hiding-modeline.  All callers changed.
7855         (zone): Remove unusued `modeline-hidden-level' property.
7857         * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
7858         xscheme-modeline-initialize.  All callers changed.
7860         * strokes.el (strokes-lighter): Rename from
7861         strokes-modeline-string.
7863         * textmodes/sgml-mode.el (html-face-tag-alist)
7864         (html-tag-face-alist): Use mode-line face instead of obsolete
7865         alias modeline.
7867 2012-06-02  Stefan Merten  <smerten@oekonux.de>
7869         * textmodes/rst.el: Always require `cl'.
7870         (rst-mode-map): Fix meaning of C-M-a / C-M-e.
7872 2012-06-02  Chong Yidong  <cyd@gnu.org>
7874         * image.el (imagemagick-enabled-types): Rename from
7875         imagemagick-types-enable.  Add many more types.
7876         (imagemagick-types-inhibit): Change default to nil.
7877         (imagemagick-filter-types): Caller changed.
7879 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7881         * emacs-lisp/cl-macs.el: Use backquotes.
7882         (cl-transform-function-property): Use eval-and-compile rather than
7883         abusing `require'.
7884         (defstruct): Use declare-function instead of with-no-warnings.
7886         * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
7887         (byte-compile-output-docform): Re-add the print-circle bindings.
7888         (byte-compile-fix-header): Use #$ just because it's shorter.
7889         (byte-compile-output-file-form): Remove defun/defmacro.
7891 2012-06-01  Martin Rudalics  <rudalics@gmx.at>
7893         * simple.el (choose-completion): Remove now obsolete binding for
7894         owindow.
7896 2012-06-01  Michael Albinus  <michael.albinus@gmx.de>
7898         * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
7899         in order to avoid "Stack overflow in regexp matcher".
7901 2012-05-31  Glenn Morris  <rgm@gnu.org>
7903         * image.el: For clarity, call imagemagick-register-types at
7904         top-level, rather than relying on a custom :initialize.
7905         (imagemagick-types-enable): New option.  (Bug#11557)
7906         (imagemagick-filter-types): New function.  (Bug#7406)
7907         (imagemagick-register-types): Use imagemagick-filter-types.
7908         If disabling support, remove elements altogether rather
7909         than using an impossible regexp.
7910         (imagemagick-types-inhibit): Give it the default init function.
7912 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7914         * emacs-lisp/bytecomp.el (byte-compile-fix-header):
7915         Handle arbitrary file name lengths (Bug#11585).
7917 2012-05-31  Martin Rudalics  <rudalics@gmx.at>
7919         * desktop.el (desktop-read): Clear previous and next buffers for
7920         all windows and bury *Messages* buffer (bug#11556).
7922 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7924         Add `declare' for `defun'.  Align `defmacro's with it.
7925         * emacs-lisp/easy-mmode.el (define-minor-mode)
7926         (define-globalized-minor-mode): Don't autoload the var definitions.
7927         * emacs-lisp/byte-run.el: Use lexical-binding.
7928         (defun-declarations-alist, macro-declarations-alist): New vars.
7929         (defmacro, defun): Use them.
7930         (make-obsolete, define-obsolete-function-alias)
7931         (make-obsolete-variable, define-obsolete-variable-alias):
7932         Use `declare'.
7933         (macro-declaration-function): Mark obsolete.
7934         * emacs-lisp/autoload.el: Use lexical-binding.
7935         (make-autoload): Add `expansion' arg.  Rely more on macro expansion.
7937 2012-05-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
7939         * textmodes/ispell.el (ispell-with-no-warnings):
7940         Define as a macro.
7941         (ispell-kill-ispell, ispell-change-dictionary):
7942         Use `called-interactively-p' for Emacs instead of obsolete
7943         `interactive-p'.
7945 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7947         * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
7948         (macro-declaration-function): Move var from C code.
7949         (macro-declaration-function): Define function with defalias.
7950         * emacs-lisp/macroexp.el (macroexpand-all-1):
7951         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
7952         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
7953         defun/defmacro any more.
7954         * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
7955         Provide fallback for unknown arglist.
7956         (byte-compile-arglist-warn): Change calling convention.
7957         (byte-compile-output-file-form): Move print-vars binding.
7958         (byte-compile-output-docform): Simplify accordingly.
7959         (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
7960         (byte-compile-defmacro-declaration): Remove.
7961         (byte-compile-file-form-defmumble): Generalize to defalias.
7962         (byte-compile-output-as-comment): Return byte-positions.
7963         Simplify callers accordingly.
7964         (byte-compile-lambda): Use `assert'.
7965         (byte-compile-defun, byte-compile-defmacro): Remove.
7966         (byte-compile-file-form-defalias):
7967         Use byte-compile-file-form-defmumble.
7968         (byte-compile-defalias-warn): Remove.
7970 2012-05-29  Stefan Merten  <smerten@oekonux.de>
7972         * textmodes/rst.el: Silence `checkdoc-ispell' errors where
7973         possible.  Fix authors.  Improve comments.  Improve loading of `cl'.
7975         (rst-mode-abbrev-table): Merge definition.
7976         (rst-mode): Make sure `font-lock-defaults' is buffer local.
7977         (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
7979 2012-05-29  Ulf Jasper  <ulf.jasper@web.de>
7981         * calendar/icalendar.el
7982         (icalendar-export-region): Export UID properly.
7984 2012-05-29  Leo Liu  <sdl.web@gmail.com>
7985         * calendar/icalendar.el (icalendar-import-format):
7986         Add `icalendar-import-format-uid' (Bug#11525).
7987         (icalendar-import-format-uid): New.
7988         (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
7989         Export UID.
7991 2012-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7993         * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
7994         different alternative patterns.
7995         (pcase-codegen): Be more careful to preserve identity.
7996         (pcase--u1): Don't forget to mark vars as used.
7998         * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
7999         (byte-compile-close-variables): Bind byte-compile--outbuffer here...
8000         (byte-compile-from-buffer): ...rather than here.
8002         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
8003         functions from byte-compile-function-environment.
8005 2012-05-29  Troels Nielsen  <bn.troels@gmail.com>
8007         * window.el (window-deletable-p): Avoid deleting the root window
8008         of a frame with an active minibuffer.
8010 2012-05-29  Martin Rudalics  <rudalics@gmx.at>
8012         * simple.el (choose-completion): Use quit-window (Bug#11567).
8014 2012-05-29  Chong Yidong  <cyd@gnu.org>
8016         * whitespace.el (whitespace-cleanup): Fix usage of
8017         whitespace-empty-at-bob-regexp (Bug#11492).
8019 2012-05-29  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
8021         * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
8022         revert (Bug#11488).
8024 2012-05-29  Juri Linkov  <juri@jurta.org>
8026         * isearch.el (isearch-mode-map): Bind `M-s _' to
8027         `isearch-toggle-symbol'.  Bind `M-s c' to
8028         `isearch-toggle-case-fold'.
8029         (search-map): Bind `M-s _' to `isearch-forward-symbol'.
8030         (isearch-forward): Add `M-s _' to the docstring.
8031         (isearch-forward-symbol, isearch-toggle-case-fold)
8032         (isearch-symbol-regexp): New functions.  (Bug#11381)
8034 2012-05-29  Juri Linkov  <juri@jurta.org>
8036         * isearch.el (isearch-word): Add docstring.  (Bug#11381)
8037         (isearch-occur, isearch-search-and-update): If `isearch-word' is
8038         a function, call it to get the regexp.
8039         (isearch-message-prefix): If `isearch-word' holds a symbol, use its
8040         property `isearch-message-prefix' instead of the string "word ".
8041         (isearch-search-fun-default): For the case of `isearch-word',
8042         return a lambda that calls re-search-forward/re-search-backward
8043         with a regexp returned by `word-search-regexp' or by the function
8044         in `isearch-word'.
8046 2012-05-29  Juri Linkov  <juri@jurta.org>
8048         * isearch.el (isearch-search-fun-default): New function.
8049         (isearch-search-fun): Move default part to the new function
8050         `isearch-search-fun-default'.
8051         (isearch-search-fun-function): Set the default value to
8052         `isearch-search-fun-default'.  (Bug#11381)
8054         * comint.el (comint-history-isearch-end):
8055         Use `isearch-search-fun-default'.
8056         (comint-history-isearch-search): Use `isearch-search-fun-default'
8057         and remove spacial case for `isearch-word'.
8058         (comint-history-isearch-wrap): Remove spacial case for
8059         `isearch-word'.
8061         * hexl.el (hexl-isearch-search-function):
8062         Use `isearch-search-fun-default'.
8064         * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
8065         Use `word-search-regexp' for `isearch-word'.
8067         * misearch.el (multi-isearch-search-fun):
8068         Use `isearch-search-fun-default'.
8070         * simple.el (minibuffer-history-isearch-search):
8071         Use `isearch-search-fun-default' and remove spacial case for
8072         `isearch-word'.
8073         (minibuffer-history-isearch-wrap): Remove spacial case for
8074         `isearch-word'.
8076         * textmodes/reftex-global.el (reftex-isearch-wrap-function):
8077         Remove spacial case for `isearch-word'.
8078         (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
8080 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8082         Decrease XEmacs incompatibilities.
8083         * textmodes/flyspell.el (flyspell-check-pre-word-p):
8084         Use `string-match'.
8085         (flyspell-delete-region-overlays): Use alternative definition for
8086         XEmacs.
8087         (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
8088         (flyspell-word): Use `process-kill-without-query' if XEmacs.
8089         (flyspell-mode-on): Use `interactive-p' if XEmacs.
8090         (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
8091         `define-obsolete-face-alias' under XEmacs, but old method.
8093         * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
8094         `with-no-warnings' definition or Emacs alias.
8095         (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
8096         (ispell-word): Do not use `region-p' if XEmacs.
8098 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8100         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
8101         Check for `ispell-dictionary-base-alist' instead of full
8102         `ispell-dictionary-alist'.
8103         (ispell-init-process): Show spellchecker when starting new Ispell
8104         process.
8106 2012-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8108         * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
8109         http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
8111 2012-05-27  Juanma Barranquero  <lekktu@gmail.com>
8113         * version.el (motif-version-string, gtk-version-string)
8114         (ns-version-string): Declare.
8116 2012-05-27  Juri Linkov  <juri@jurta.org>
8118         * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
8119         after the `eval-defun-1' specialcaseing
8120         like in `edebug-eval-defun' (bug#10181).
8122         * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
8123         like in `eval-defun-1'.
8125 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
8127         * mail/sendmail.el (mail-yank-region):
8128         Recognize rmail-yank-current-message in addition to insert-buffer.
8129         Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
8130         a *mail* buffer created through rmail-start-mail with sendmail as
8131         mail-user-agent.
8133 2012-05-27  Chong Yidong  <cyd@gnu.org>
8135         * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
8136         Default to 256 (Bug#11267).
8138         * help.el (describe-mode): Doc fix.
8140 2012-05-26  Glenn Morris  <rgm@gnu.org>
8142         * w32-fns.el (w32-init-info): Remove.
8143         * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
8145         * info.el (info-initialize): For self-contained NS builds, put the
8146         included info/ directory at the front.  (Bug#2791)
8148         * paths.el (Info-default-directory-list): Make it a defcustom,
8149         mainly so that we can use custom-initialize-delay.
8151 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8153         * subr.el (buffer-has-markers-at): Mark obsolete.
8155         * subr.el (lambda): Use declare.
8157         * emacs-lisp/lisp-mode.el (lambda):
8158         * emacs-lisp/edebug.el (lambda): Move properties to its definition.
8160 2012-05-26  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
8162         * thingatpt.el (forward-same-syntax): Handle no ARG case.  (Bug#11560)
8164 2012-05-26  Glenn Morris  <rgm@gnu.org>
8166         * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
8168 2012-05-25  Glenn Morris  <rgm@gnu.org>
8170         * paths.el: Remove no-byte-compile.
8171         * loadup.el: No need to load paths.el uncompiled.
8173         * image.el (imagemagick-types-inhibit): Doc fix.
8175         * version.el: Remove no-byte-compile and associated formatting.
8176         * loadup.el: No need to load version.el uncompiled.  AFAICS, this
8177         is ancient code from when there was an "inc-vers.el".
8179 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8181         * progmodes/gdb-mi.el: Minor style changes.
8182         (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
8183         Turn into minor modes.
8184         (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
8185         (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
8186         (gdb-shell): Remove unneeded let-binding.
8187         (gdb-get-many-fields): Eliminate O(n²) behavior.
8189 2012-05-25  Eli Zaretskii  <eliz@gnu.org>
8191         * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
8192         platforms that don't link in fontset.c.
8194 2012-05-25  Juri Linkov  <juri@jurta.org>
8196         Use the same diff color scheme as in modern VCSes (bug#10181).
8198         * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
8199         to avoid confusion with `diff-added' that now uses green colors.
8200         (diff-removed): Use shades of red.
8201         (diff-added): Use shades of green.
8202         (diff-changed): Leave just the yellow color.
8203         (diff-use-changed-face): New variable.
8204         (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
8205         how to highlight context diff changes.
8206         (diff-refine-change): Use shades of yellow.
8207         (diff-refine-removed): New face that uses shades of red.
8208         (diff-refine-added): New face that uses shades of green.
8209         (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
8210         `diff-refine-removed' in the call to `smerge-refine-subst'
8211         depending on the value of `diff-use-changed-face'.
8213         * vc/smerge-mode.el (smerge-mine): Use shades of red.
8214         (smerge-other): Use shades of green.
8215         (smerge-base): Use shades of yellow.
8216         (smerge-refined-change): Empty face.
8217         (smerge-refined-removed): New face that uses shades of red.
8218         (smerge-refined-added): New face that uses shades of green.
8219         (smerge-refine-subst): Rename arg `props' to `props-c'.  Add new
8220         args `props-r' and `props-a', and use them.  Doc fix.
8221         (smerge-refine): Evaluate `smerge-use-changed-face' and depending
8222         on its value use different faces `smerge-refined-change',
8223         `smerge-refined-removed', `smerge-refined-added' in the call to
8224         `smerge-refine-subst'.
8226         * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
8227         Add face condition `min-colors 88' with shades of red.
8228         (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
8229         `min-colors 88' with shades of green.
8230         (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
8231         `min-colors 88' with shades of yellow.
8233 2012-05-24  Glenn Morris  <rgm@gnu.org>
8235         * paths.el (prune-directory-list, remote-shell-program): Move to...
8236         * files.el (prune-directory-list, remote-shell-program): ...here.
8237         For the latter, delay initialization, prefer ssh, just search PATH.
8239         * paths.el (term-file-prefix): Move to faces.el (the only user).
8240         * faces.el (term-file-prefix): Move here, make it a defcustom.
8242         * paths.el (news-directory, news-path, news-inews-program):
8243         Move to gnus/nnspool.el.
8245         * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
8247         * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
8248         * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
8249         Make the latter a defcustom, with a delayed initialization.
8251         * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
8252         These were deleted from Gnus itself late 2010.
8254 2012-05-22  Juanma Barranquero  <lekktu@gmail.com>
8256         * progmodes/which-func.el (which-func-ff-hook):
8257         Check against user-error, not error.
8259         * emacs-lisp/edebug.el (top): Do not load or set up loading of
8260         cl-specs.el, which no longer exists.
8262 2012-05-22  Glenn Morris  <rgm@gnu.org>
8264         * info.el (info-emacs-bug): New command.
8265         * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
8266         * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
8268 2012-05-21  Glenn Morris  <rgm@gnu.org>
8270         * makefile.w32-in (update-subdirs-SH):
8271         * Makefile.in (update-subdirs): Update for moved update-subdirs.
8273 2012-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8275         * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
8277         * progmodes/compile.el (compilation-error-regexp-alist-alist):
8278         Simplify Maven regexp, and make sure the file can't start with a space
8279         (bug#11517).
8281 2012-05-21  Glenn Morris  <rgm@gnu.org>
8283         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
8284         Scrap superfluous subshells.
8286 2012-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8288         * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
8289         (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
8291 2012-05-19  Jay Belanger  <jay.p.belanger@gmail.com>
8293         * calc/calc.el (calc-ensure-consistent-units): New variable.
8295         * calc/calc-units.el (math-consistent-units-p)
8296         (math-check-unit-consistency): New functions.
8297         (calc-quick-units, calc-convert-units):
8298         Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
8299         is non-nil.
8300         (calc-extract-units): Fix typo.
8302 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8304         * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
8306         * textmodes/flyspell.el: Commenting style, plus code simplifications.
8307         (flyspell-default-deplacement-commands): Don't spell check after
8308         repeated window/frame switches (e.g. triggered by mouse-movement).
8309         (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
8310         (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
8311         (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
8312         (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
8313         Remove unused vars.
8314         (flyspell-get-casechars, flyspell-get-not-casechars):
8315         Simplify; Don't bother removing a ] just to add it back.
8316         * textmodes/ispell.el (ispell-program-name): Use executable-find.
8318 2012-05-18  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
8320         * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
8321         New functions.
8322         (math-function-table): Add support for more C functions.
8324 2012-05-18  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8326         * textmodes/flyspell.el (flyspell-check-pre-word-p)
8327         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
8328         Protect delay handling for otherchars against empty otherchars.
8330 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8332         * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
8333         their respective macro declarations.
8334         * skeleton.el (define-skeleton):
8335         * progmodes/compile.el (define-compilation-mode):
8336         * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
8337         (define-ibuffer-filter):
8338         * emacs-lisp/generic.el (define-generic-mode):
8339         * emacs-lisp/easy-mmode.el (define-minor-mode)
8340         (define-globalized-minor-mode):
8341         * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
8342         * emacs-lisp/byte-run.el (defsubst):
8343         * custom.el (deftheme): Add doc-string metadata.
8345 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8347         * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
8349 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8351         * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
8353         * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
8354         * emacs-lisp/cl-macs.el: Idem.
8355         * emacs-lisp/cl-specs.el: Remove.
8357 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8359         Minor renaming of internal CL functions and variables.
8360         * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
8361         (cl--position): Rename from cl-position.
8362         (cl--delete-duplicates): Rename from cl-delete-duplicates.
8363         * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
8364         (cl--random-state): Rename from *random-state*.
8366 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8368         * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
8369         parens around the arg list (bug#11499).
8371 2012-05-17  Juri Linkov  <juri@jurta.org>
8373         * isearch.el (word-search-regexp, word-search-backward)
8374         (word-search-forward, word-search-backward-lax)
8375         (word-search-forward-lax): Move functions from search.c
8376         (bug#10145, bug#11381).
8378 2012-05-16  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8380         * textmodes/flyspell.el (flyspell-check-pre-word-p)
8381         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
8382         Delay for otherchars as for normal word components.
8384 2012-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8386         * minibuffer.el (completion--sifn-requote): Fix last change.
8387         (minibuffer-local-must-match-filename-map):
8388         Move define-obsolete-variable-alias before its var.
8390 2012-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8392         * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
8394         * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
8395         behavior.
8396         (completion--string-equal-p): New function.
8397         (completion--twq-all): Use it to get better assertion failure data.
8399         Only handle ".." and '..' quoting in shell-mode (bug#11466).
8400         * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
8401         (shell--requote-argument): New functions.
8402         (shell-completion-vars): Use them.
8403         (shell--parse-pcomplete-arguments): Rename from
8404         shell-parse-pcomplete-arguments.
8405         * comint.el (comint-word): Obey comint-file-name-quote-list.  Simplify.
8406         (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
8407         Obey comint-file-name-quote-list.
8409         * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
8410         (smie-indent-keyword): Use it.
8412 2012-05-14  Stefan Merten  <smerten@oekonux.de>
8414         * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
8416 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8418         * net/rlogin.el (rlogin-mode-map): Fix last change.
8420 2012-05-14  Jason L. Wright  <jason.wright@inl.gov>  (tiny change)
8422         * mail/smtpmail.el (smtpmail-send-command): Send the command and
8423         the following \r\n using a single `process-send-string', since the
8424         Lotus SMTP server refuses to accept any commands if they are sent
8425         with two `process-send-string's (Bug#11444).
8427 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8429         * shell.el (shell-parse-pcomplete-arguments):
8430         Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
8432 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
8434         * image-mode.el: Fit to width/height for rotated images (Bug#11431).
8435         (image-transform-scale, image-transform-right-angle-fudge): New vars.
8436         (image-transform-width, image-transform-fit-width): New functions.
8437         (image-transform-properties): Use them.
8438         (image-transform-check-size): New function.
8439         (image-toggle-display-image): Use it (for testing).
8440         (image-transform-set-rotation): Reduce angle mod 360.
8441         Delete obsolete comment.
8443 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
8445         * image-mode.el: Fix scaling (bug#11399).
8446         (image-transform-resize): Doc fix.
8447         (image-transform-properties): Default scale is 1 and height should
8448         be an integer.
8450 2012-05-13  Johan Bockgård  <bojohan@gnu.org>
8452         * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
8453         than hard-coding `car', to fix misbehavior when moving forward.
8455 2012-05-13  Chong Yidong  <cyd@gnu.org>
8457         * emacs-lisp/tabulated-list.el (tabulated-list-format)
8458         (tabulated-list-entries, tabulated-list-padding)
8459         (tabulated-list-sort-key): Make permanent-local.
8461         * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
8462         (electric-buffer-list): Put electric buffer menu
8463         command descriptions in this docstring, instead of the docstring
8464         of electric-buffer-menu-mode.  Code cleanups.
8465         (electric-buffer-menu-mode): Use define-derived-mode.  Rename from
8466         Electric-buffer-menu-mode.
8467         (electric-buffer-update-highlight): Minor code cleanup.
8469 2012-05-13  Michael Albinus  <michael.albinus@gmx.de>
8471         * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
8472         (Bug#11447)
8474 2012-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8476         Move define-obsolete-variable-alias before the var's definition.
8477         * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
8478         * tooltip.el (tooltip-hook):
8479         * textmodes/reftex-toc.el (reftex-toc-map):
8480         * textmodes/reftex-sel.el (reftex-select-label-map)
8481         (reftex-select-bib-map):
8482         * textmodes/reftex-index.el (reftex-index-map)
8483         (reftex-index-phrases-map):
8484         * speedbar.el (speedbar-syntax-table, speedbar-key-map):
8485         * progmodes/meta-mode.el (meta-mode-map):
8486         * novice.el (disabled-command-hook):
8487         * loadhist.el (unload-hook-features-list):
8488         * frame.el (blink-cursor):
8489         * files.el (find-file-not-found-hooks, write-file-hooks)
8490         (write-contents-hooks):
8491         * emulation/tpu-edt.el (GOLD-map):
8492         * emacs-lock.el (emacs-lock-from-exiting):
8493         * emacs-lisp/generic.el (generic-font-lock-defaults):
8494         * emacs-lisp/chart.el (chart-map):
8495         * dos-fns.el (register-name-alist):
8496         * dired-x.el (dired-omit-files-p):
8497         * desktop.el (desktop-enable):
8498         * cus-edit.el (custom-mode-hook):
8499         * buff-menu.el (buffer-menu-mode-hook):
8500         * bookmark.el (bookmark-read-annotation-text-func)
8501         (bookmark-exit-hooks):
8502         * allout.el (allout-mode-deactivate-hook)
8503         (allout-exposure-change-hook, allout-structure-added-hook)
8504         (allout-structure-deleted-hook, allout-structure-shifted-hook):
8505         * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
8506         (dirtrack-debug): Move call to define-obsolete-variable-alias so it
8507         comes before the corresponding variable's definition.
8509 2012-05-12  Chong Yidong  <cyd@gnu.org>
8511         * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
8512         (Buffer-menu-mouse-select): Restore function (Bug#11459).
8513         (Buffer-menu-mode-map): Bind it.
8514         (Buffer-menu--pretty-name): Add a mouse-face property.
8516 2012-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8518         * progmodes/prolog.el: Use SMIE.  Cleanup regexp setup.
8519         (prolog-upper-case-string, prolog-lower-case-string)
8520         (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
8521         (prolog-use-smie, prolog-smie-grammar): New vars.
8522         (prolog-smie-forward-token, prolog-smie-backward-token)
8523         (prolog-smie-rules): New funs.
8524         (prolog-comment-indent): Remove.
8525         (prolog-mode-variables): Use default comment indentation instead.
8526         Setup SMIE.
8527         (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
8528         (prolog-mode): Don't call them any more.
8529         (prolog-electric-colon, prolog-electric-dash)
8530         (prolog-edit-menu-insert-move): Use indent-according-to-mode.
8532         * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
8534         * minibuffer.el (completion--twq-all): Again, allow case differences.
8536         * term.el: Move keymap initialization code to be more idiomatic.
8537         (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
8538         (term-terminal-menu): Move initialization into declaration.
8539         (term-escape-char): Let the user set it in her .emacs.
8541         * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
8542         Provide SMIE-based indentation (not enabled by default yet).
8543         (sh-mode-map): Don't bind electric keys.
8544         Use electric-pair-mode instead of skeleton-pair.
8545         (sh-assignment-regexp): Fit within 80 columns.
8546         (sh-indent-supported): Specify actual shell name instead of boolean.
8547         (sh--maybe-here-document): New fun, from sh-maybe-here-document.
8548         (sh-maybe-here-document): Use it.  Make obsolete.
8549         (sh-electric-here-document-mode) New minor mode.
8550         (sh-mode): Use it.  Don't set sh-indent-supported-here here.
8551         (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
8552         (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
8553         (sh-smie-rc-grammar, sh-use-smie): New vars.
8554         (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
8555         (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
8556         (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
8557         (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
8558         (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
8559         (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
8560         (sh-set-shell): Use smie-setup if requested.
8562         * term.el (term-set-escape-char): Properly set term-escape-char.
8563         See http://stackoverflow.com/questions/10524656.
8565 2012-05-10  Chong Yidong  <cyd@gnu.org>
8567         * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
8568         Use url-generic-parse-url, and handle host names and Windows
8569         filenames properly.
8570         (ffap-url-unwrap-remote): Use url-generic-parse-url.
8571         (ffap-url-unwrap-remote): Accept list values, specifying a list of
8572         URL schemes to work on.
8573         (ffap--toggle-read-only): New function.
8574         (ffap-read-only, ffap-read-only-other-window)
8575         (ffap-read-only-other-frame): Use it.
8576         (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
8577         necessary for ffap-url-unwrap-remote.
8579 2012-05-10  Dave Abrahams  <dave@boostpro.com>
8581         * cus-start.el (create-lockfiles): Add it.
8583 2012-05-09  Chong Yidong  <cyd@gnu.org>
8585         * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
8586         (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
8588 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8590         * shell.el (shell-completion-vars): Fix last change (bug#11348).
8592 2012-05-09  Chong Yidong  <cyd@gnu.org>
8594         * ansi-color.el (ansi-color-process-output): Check for validity of
8595         comint-last-output-start before using it.  This avoids a bad
8596         interaction with gdb-mi's input/output buffer.
8598 2012-05-09  Glenn Morris  <rgm@gnu.org>
8600         * files.el (dir-locals-read-from-file):
8601         Mention dir-locals in any error message.
8603 2012-05-09  Chong Yidong  <cyd@gnu.org>
8605         * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
8606         package (Bug#11410).
8608         * emacs-lisp/package.el (package-buffer-info): Avoid putting local
8609         variables into description.
8611 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8613         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
8614         shell-delimiter-argument-list (bug#11348).
8615         (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
8617 2012-05-09  Juanma Barranquero  <lekktu@gmail.com>
8619         * textmodes/rst.el: Silence byte-compiler warnings.
8620         (rst-re-alist, rst-reset-section-caches): Move around.
8621         (rst-re): Use `characterp', not `char-valid-p'.
8622         (font-lock-beg, font-lock-end): Declare.
8624         * progmodes/idlw-shell.el (specs): Remove reference to deleted
8625         variable `idlwave-shell-activate-alt-keybindings' and simplify.
8627         * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
8629 2012-05-08  Glenn Morris  <rgm@gnu.org>
8631         * files.el (auto-mode-alist): Treat ".make" like ".mk".
8633 2012-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8635         * vc/log-edit.el: Add GNU coding standards highlighting.
8636         (log-edit-font-lock-gnu-style)
8637         (log-edit-font-lock-gnu-keywords): New vars.
8638         (log-edit-font-lock-keywords): New fun.
8639         (log-edit-mode): Don't fold case in font-lock.
8640         (log-edit-font-lock-keywords): Do not assume case-folding.
8642         * imenu.el: Misc cleanup.  Make docstrings out of comments.
8643         Use lexical-binding.
8644         (imenu--index-alist, imenu--last-menubar-index-alist)
8645         (imenu-menubar-modified-tick): Use defvar-local.
8646         (imenu--split-menu): Remove unused var.
8647         (imenu--cleanup-seen): Declare as global.
8648         (imenu--cleanup): Use dolist.
8650         * subr.el (defvar-local): Add debug spec and doc-string position.
8652 2012-05-08  Glenn Morris  <rgm@gnu.org>
8654         * language/burmese.el, language/cham.el, language/czech.el:
8655         * language/english.el, language/georgian.el, language/greek.el:
8656         * language/japanese.el, language/khmer.el, language/korean.el:
8657         * language/lao.el, language/misc-lang.el, language/romanian.el:
8658         * language/sinhala.el, language/slovak.el, language/tai-viet.el:
8659         * language/thai.el, language/utf-8-lang.el:
8660         Remove no-byte-compile setting.
8662         * play/zone.el (zone-pgm-stress): Don't pollute kill-ring.  (Bug#11388)
8664 2012-05-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
8666         * progmodes/make-mode.el (makefile-browse):
8667         Remove unnecessary interactive.  (Bug#11324)
8669 2012-05-07  Glenn Morris  <rgm@gnu.org>
8671         * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
8673         * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
8675 2012-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8677         * loadup.el: Preload newcomment.el.
8678         * newcomment.el: Move autoload-only code to toplevel.
8680         * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
8681         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
8682         Handle new :right-align column property.
8683         (tabulated-list-print-col): Idem, plus use `display' text-property to
8684         try and preserve alignment for variable pitch fonts.
8686 2012-05-07  Chong Yidong  <cyd@gnu.org>
8688         * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
8689         (tabulated-list-use-header-line): New var.
8690         (tabulated-list-init-header): Use it.
8691         (tabulated-list-print-fake-header): New function.
8692         (tabulated-list-print): Use it.
8693         (tabulated-list-sort-button-map): Add non-header-line commands.
8694         (tabulated-list-init-header): Add column name property to basic
8695         labels as well.
8696         (tabulated-list-col-sort): Handle non-header-line button case.
8697         (tabulated-list--sort-by-column-name): Fix a corner case.
8699         * buff-menu.el (list-buffers--refresh):
8700         Handle Buffer-menu-use-header-line.
8702 2012-05-06  Chong Yidong  <cyd@gnu.org>
8704         * buff-menu.el: Convert to Tabulated List mode.
8705         (Buffer-menu-buffer+size-width): Make obsolete.
8706         (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
8707         (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
8708         (Buffer-menu-mode): Derive from tabulated-list-mode.  Move command
8709         documentation into docstring of buffer-menu.
8710         (Buffer-menu-toggle-files-only): Add an informative message.
8711         (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
8712         (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
8713         (Buffer-menu-unmark, Buffer-menu-backup-unmark)
8714         (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
8715         (Buffer-menu-execute, Buffer-menu-select)
8716         (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
8717         (Buffer-menu-bury): Use Tabulated List machinery.
8718         (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
8719         (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
8720         Delete.
8721         (list-buffers--refresh): New function.
8722         (list-buffers-noselect): Use it.
8723         (tabulated-list-entry-size->, Buffer-menu--pretty-name)
8724         (Buffer-menu--pretty-file-name): New helper functions.
8726         * loadup.el: Preload tabulated-list.
8728         * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
8729         tabulated-list-sort-column.
8730         (tabulated-list-init-header): Add the initial aligning space even
8731         if tabulated-list-padding is zero.
8733 2012-05-06  Christopher Schmidt  <christopher@ch.ristopher.com>
8735         * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
8736         whose cdr is not a cons cell correctly (bug#11038).
8738 2012-05-06  Chong Yidong  <cyd@gnu.org>
8740         * emacs-lisp/tabulated-list.el (tabulated-list-format):
8741         Accept additional plist in column descriptors.
8742         (tabulated-list-init-header): Obey it.
8743         (tabulated-list-get-entry): New function.
8744         (tabulated-list-put-tag): Use it.  Use string-width instead of
8745         length.
8746         (tabulated-list--column-number): New function.
8747         (tabulated-list-print): Use it.
8748         (tabulated-list-print-col): New function.
8749         Set `tabulated-list-column-name' property on each column's text.
8750         (tabulated-list-print-entry): Use it.
8751         (tabulated-list-delete-entry, tabulated-list-set-col):
8752         New functions.
8753         (tabulated-list-sort-column): New command (Bug#11337).
8755         * buff-menu.el (list-buffers): Move C-x C-b binding from
8756         buff-menu.el to bindings.el.
8758         * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
8759         :advertised-binding feature.
8761 2012-05-06  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
8763         * progmodes/compile.el (compilation-internal-error-properties):
8764         Calculate start position correctly when end-col is set but
8765         end-line is not (Bug#11382).
8767 2012-05-06  Wolfgang Jenkner  <wjenkner@inode.at>
8769         * man.el (Man-unindent): Use text-property-default-nonsticky to
8770         prevent untabify from inheriting face properties (Bug#11408).
8772 2012-05-05  Stefan Merten  <smerten@oekonux.de>
8774         * textmodes/rst.el: Major merge with upstream development up to
8775         Docutils SVN r7399 / rst.el V1.2.1.
8777         Clarify maintainership and authors.
8779         (rst-extract-version, rst-cvs-header, rst-cvs-rev)
8780         (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
8781         (rst-official-version, rst-official-cvs-rev, rst-version)
8782         (rst-package-emacs-version-alist): New functions and variables
8783         for version information.
8785         (rst-bullets, rst-uri-schemes, rst-adornment-chars)
8786         (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
8787         (rst-mode-syntax-table, rst-mode): New and corrected functions
8788         and variables representing reStructuredText features.
8790         (rst-re): New function for reStructuredText regexes.  Use in
8791         many places.
8793         (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
8794         (rst-mode-map): Rebind keys.
8796         (rst-mode-lazy, rst-font-lock-keywords)
8797         (rst-font-lock-extend-region)
8798         (rst-font-lock-extend-region-internal)
8799         (rst-font-lock-extend-region-extend)
8800         (rst-font-lock-find-unindented-line-limit)
8801         (rst-font-lock-find-unindented-line-match)
8802         (rst-adornment-level, rst-font-lock-adornment-level)
8803         (rst-font-lock-adornment-match)
8804         (rst-font-lock-handle-adornment-pre-match-form)
8805         (rst-font-lock-handle-adornment-matcher): Major revision of
8806         font-locking.  Integrate with other code.  Use `jit-lock-mode'.
8808         (rst-preferred-adornments, rst-adjust-hook)
8809         (rst-new-adornment-down, rst-preferred-bullets)
8810         (rst-preferred-bullets, rst-indent, rst-indent-width)
8811         (rst-indent-field, rst-indent-literal-normal)
8812         (rst-indent-literal-minimized, rst-indent-comment): Change,
8813         extend and improve customization.
8815         (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
8816         (rst-normalize-cursor-position, rst-get-decoration)
8817         (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
8818         (rst-rstrip, rst-toc-insert-find-delete-contents)
8819         (rst-shift-fill-region, rst-compute-bullet-tabs)
8820         (rst-debug-print-tabs, rst-debug-mark-found)
8821         (rst-shift-region-guts, rst-shift-region-right)
8822         (rst-shift-region-left, rst-use-char-classes)
8823         (rst-font-lock-keywords-function)
8824         (rst-font-lock-indentation-point)
8825         (rst-font-lock-find-unindented-line-begin)
8826         (rst-font-lock-find-unindented-line-end)
8827         (rst-font-lock-find-unindented-line)
8828         (rst-font-lock-adornment-point, rst-font-lock-level)
8829         (rst-adornment-level-alist): Remove functions and variables.
8831         (rst-compare-adornments, rst-get-adornment-match)
8832         (rst-suggest-new-adornment, rst-get-adornments-around)
8833         (rst-adornment-complete-p, rst-get-next-adornment)
8834         (rst-adjust-adornment, rst-display-adornments-hierarchy)
8835         (rst-straighten-adornments): Standardize function names to
8836         use "adornment" instead of "decoration".  Correct callers.
8837         Similar standardizing in many places.
8839         (rst-update-section, rst-adjust, rst-promote-region)
8840         (rst-enumerate-region, rst-bullet-list-region)
8841         (rst-repeat-last-character): Correct use of `interactive'.
8843         (rst-classify-adornment, rst-find-all-adornments)
8844         (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
8845         (rst-find-leftmost-column, rst-repeat-last-character):
8846         Refactor functions.
8848         (rst-find-title-line, rst-reset-section-caches)
8849         (rst-get-adornments-around, rst-adjust-adornment-work)
8850         (rst-arabic-to-roman, rst-roman-to-arabic)
8851         (rst-insert-list-pos, rst-insert-list-new-item)
8852         (rst-insert-list-continue, rst-insert-list, rst-forward-line):
8853         New functions.
8855         (rst-all-sections, rst-section-hierarchy)
8856         (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
8857         New variables.
8859         (rst-toc-return-wincfg, rst-toc-quit-window): Use window
8860         configuration instead of only buffer.  Change where necessary.
8862         (rst-line-tabs, rst-compute-tabs, rst-indent-line)
8863         (rst-shift-region, rst-adaptive-fill): New functions for
8864         indentation and filling.
8866         (rst-comment-line-break, rst-comment-indent)
8867         (rst-comment-insert-comment, rst-comment-region)
8868         (rst-uncomment-region): New functions for handling comments.
8870         (rst-compile): Quote shell arguments.
8872         (rst-compile-pdf-preview, rst-compile-slides-preview):
8873         Delete temporary files after use.
8875 2012-05-05  Glenn Morris  <rgm@gnu.org>
8877         * calendar/cal-html.el: Optionally include holidays in the output.
8878         Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
8879         (cal-html-holidays): New option.
8880         (cal-html-css-default): Add holiday entry.
8881         (holiday-in-range): Autoload it.
8882         (cal-html-htmlify-entry): Add optional class argument.
8883         (cal-html-htmlify-list): Add optional holidays argument.
8884         (cal-html-insert-agenda-days): Include holidays in the output.
8885         (cal-html-one-month): Maybe include holidays.
8887         * calendar/holidays.el (holiday-in-range):
8888         Move here from cal-tex-list-holidays.
8889         * calendar/cal-tex.el (cal-tex-list-holidays):
8890         Make it an obsolete alias for holiday-in-range.  Update all callers.
8892 2012-05-05  Chong Yidong  <cyd@gnu.org>
8894         * select.el (xselect--encode-string): Always use utf-8 for TEXT on
8895         Nextstep.
8897 2012-05-05  Ransom Williams  <auvergnerw@gmail.com>  (tiny change)
8899         * files.el (file-auto-mode-skip): New var.
8900         (set-auto-mode-1): Use it.
8902 2012-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8904         * repeat.el: Use lexical-binding.
8905         (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
8906         (repeat-undo-count): Remove.
8907         (repeat):
8908         * progmodes/octave-mod.el (octave-abbrev-start):
8909         * progmodes/f90.el (f90-abbrev-start):
8910         * face-remap.el (text-scale-adjust):
8911         * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
8913         * emacs-lisp/pcase.el (pcase--let*): New function.
8914         (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
8915         a bit more.
8916         (pcase--split-pred): Be more clever about ruling out overlap between
8917         a predicate and some constant pattern.
8918         (pcase--q1): Use `null' instead of (eq foo nil).
8920         * subr.el (setq-local, defvar-local): New macros.
8921         (kbd): Redefine as an alias.
8922         (with-selected-window): Leave unrelated frames alone.
8923         (set-temporary-overlay-map): New function.
8925 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8927         * subr.el (user-error): New function.
8928         * window.el (switch-to-buffer):
8929         * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
8930         (smerge-match-conflict):
8931         * simple.el (previous-matching-history-element)
8932         (next-matching-history-element, goto-history-element, undo-more)
8933         (undo-start):
8934         * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
8935         (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
8936         (next-file, tags-loop-scan, list-tags, complete-tag):
8937         * progmodes/compile.el (compilation-loop):
8938         * mouse.el (mouse-minibuffer-check):
8939         * man.el (Man-bgproc-sentinel, Man-goto-page):
8940         * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
8941         (Info-history-forward, Info-follow-reference, Info-menu)
8942         (Info-extract-menu-item, Info-extract-menu-counting)
8943         (Info-forward-node, Info-backward-node, Info-next-menu-item)
8944         (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
8945         (Info-next-reference, Info-prev-reference, Info-index)
8946         (Info-index-next, Info-follow-nearest-node)
8947         (Info-copy-current-node-name):
8948         * imenu.el (imenu--make-index-alist)
8949         (imenu-default-create-index-function, imenu-add-to-menubar):
8950         * files.el (basic-save-buffer, recover-file):
8951         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8952         * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
8953         (checkdoc-message-text, checkdoc-defun):
8954         * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
8955         * cus-edit.el (customize-changed-options, customize-rogue)
8956         (customize-saved, custom-variable-set, custom-variable-mark-to-save)
8957         (custom-variable-mark-to-reset-standard)
8958         (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
8959         (custom-file):
8960         * completion.el (check-completion-length):
8961         * comint.el (comint-search-arg)
8962         (comint-previous-matching-input-string-position)
8963         (comint-previous-matching-input)
8964         (comint-replace-by-expanded-history-before-point, comint-send-input)
8965         (comint-copy-old-input, comint-backward-matching-input)
8966         (comint-goto-process-mark, comint-set-process-mark):
8967         * calendar/calendar.el (calendar-cursor-to-date): Use it.
8968         * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
8970 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8972         * dabbrev.el (dabbrev--ignore-case-p): New function.
8973         (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
8974         Use it.
8976         * files.el (automount-dir-prefix): Mark as obsolete.
8978 2012-05-04  Glenn Morris  <rgm@gnu.org>
8980         * patcomp.el, play/bruce.el: Move to obsolete/.
8982 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
8984         Fix minor Y10k bugs.
8985         * arc-mode.el (archive-unixdate):
8986         * autoinsert.el (auto-insert-alist):
8987         * calc/calc-forms.el (math-this-year):
8988         * emacs-lisp/copyright.el (copyright-current-year)
8989         (copyright-update-year, copyright):
8990         * tar-mode.el (tar-clip-time-string):
8991         * time.el (display-time-update):
8992         Don't assume years have 4 digits.
8994 2012-05-04  Chong Yidong  <cyd@gnu.org>
8996         * dos-w32.el (file-name-buffer-file-type-alist)
8997         (direct-print-region-use-command-dot-com):
8998         * ffap.el (ffap-menu-regexp):
8999         * find-file.el (ff-special-constructs):
9000         * follow.el (follow-debug):
9001         * forms.el (forms--debug):
9002         * iswitchb.el (iswitchb-all-frames):
9003         * ido.el (ido-all-frames):
9004         * emacs-lisp/timer.el (timer-max-repeats):
9005         * mail/feedmail.el (feedmail-mail-send-hook)
9006         (feedmail-mail-send-hook-queued):
9007         * mail/footnote.el (footnote-signature-separator):
9008         * mail/mailabbrev.el (mail-alias-separator-string)
9009         (mail-abbrev-mode-regexp):
9010         * mail/rmail.el (rmail-speedbar-match-folder-regexp):
9011         * progmodes/idlwave.el (idlwave-libinfo-file)
9012         (idlwave-default-completion-case-is-down)
9013         (idlwave-library-routines): Convert defvars to defcustoms.
9015         * mail/rmail.el (rmail-decode-mime-charset):
9016         * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
9017         (idlwave-shell-fix-inserted-breaks)
9018         (idlwave-shell-activate-alt-keybindings)
9019         (idlwave-shell-use-breakpoint-glyph):
9020         * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
9022 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9024         * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
9026 2012-05-03  Wilson Snyder  <wsnyder@wsnyder.org>
9028         * progmodes/verilog-mode.el (font-lock-keywords):
9029         Fix mis-highligting auto.  Reported by Craig Barner.
9030         (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
9031         defines from global name space.  Reported by Dan Dever.
9032         (verilog-auto-reset, verilog-auto-reset-widths)
9033         (verilog-auto-tieoff): Support using unbased numbers for
9034         AUTORESET and AUTOTIEOFF.
9035         (verilog-submit-bug-report): Update variable list.
9036         (verilog-read-auto-params): Fix AUTOINPUT regexps containing
9037         parenthesis from not matching.  Reported by Michael Rytting.
9038         (verilog-auto-template-lint): Fix hash error when linting modules
9039         with no used templates.
9040         (verilog-warn, verilog-warn-error)
9041         (verilog-warn-fatal): When non-interactive report multiple
9042         warnings before exiting.  Suggested by Brad Dobbie.
9043         (verilog-auto-template-lint, verilog-auto-template-warn-unused)
9044         (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
9045         to report unused template errors.  Reported by Brad Dobbie.
9046         (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
9047         nets, bug438.  Reported by Vns Blore.
9048         (verilog-auto-inout-module, verilog-auto-reg)
9049         (verilog-read-decls, verilog-read-sub-decls-sig)
9050         (verilog-signals-edit-wire-reg, verilog-signals-with):
9051         Fix passing of Verilog data types in ANSI input/output ports
9052         such as "output logic" into the AUTOs.  Special case "wire" and
9053         "reg" for backwards compatibility presuming Verilog 2001.
9054         (verilog-auto-ascii-enum): Add "auto enum" as alias.
9055         (verilog-preprocess): Fix replication of preprocess output.
9056         Reported by Brad Dobbie.
9057         (verilog-auto-inst-interfaced-ports):
9058         Create verilog-auto-inst-interfaced-ports, bug429.
9059         Reported by Julian Gorfajn.
9060         (verilog-after-save-font-hook)
9061         (verilog-before-save-font-hook): New variable.
9062         (verilog-modi-cache-results, verilog-save-font-mod-hooked)
9063         (verilog-save-font-mods): Wrap disabling fontification, reported
9064         by David Rogoff.
9065         (verilog-do-indent, verilog-pretty-declarations-auto)
9066         (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
9067         Reported by Pierre-David Pfister.
9068         (verilog-set-auto-endcomments): Fix endtask auto comments outside
9069         of class declarations, bug292.  Reported by Kevin Heilman.
9070         (verilog-read-decls): Fix 'parameter type' not appearing in
9071         AUTOINSTPARAM, bug340.  Reported by Jonathan Greenlaw.
9072         (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
9073         AUTOINPUTs, bug411.  Reported by Jonathan Greenlaw.
9074         (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
9075         Reported by David Kravitz.
9077 2012-05-03  Michael McNamara  <mac@mail.brushroad.com>
9079         * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
9080         assignment with tests in ifs and for loops.
9081         (verilog-extended-complete-re, verilog-complete-reg): Change so
9082         that DPI inport functions don't look like fuction declarations.
9083         (verilog-pretty-expr): Don't line up assignment
9084         operations to the test and increment in if and for loops
9085         (verilog-extended-complete-re, verilog-complete-reg): Change so
9086         that DPI inport functions don't look like fuction declarations.
9088 2012-05-03  Kenichi Handa  <handa@m17n.org>
9090         * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
9091         decoding, and show a warning message without signaling an error
9092         (Bug#11282).
9094 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9096         * emacs-lisp/bytecomp.el
9097         (byte-compile-file-form-custom-declare-variable): Compile all elements,
9098         since cconv.el might have introduced :fun-body, internal-make-closure,
9099         and friends for bytecomp to handle (bug#11391).
9100         * custom.el (defcustom): Avoid ((λ ..) ..).
9102 2012-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9104         * subr.el (read-passwd): Better clean after ourselves (bug#11392).
9106 2012-05-02  Juanma Barranquero  <lekktu@gmail.com>
9108         * notifications.el (dbus-debug):
9109         * term/linux.el (gpm-mouse-enable):
9110         * term/screen.el (xterm-register-default-colors): Declare.
9112 2012-05-02  Chong Yidong  <cyd@gnu.org>
9114         * cus-start.el (gc-cons-percentage, exec-suffixes)
9115         (dos-display-scancodes, dos-hyper-key, dos-super-key)
9116         (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
9117         (make-cursor-line-fully-visible, void-text-area-pointer)
9118         (font-list-limit): Add customization data.
9120         * allout.el (allout-exposure-change-functions)
9121         (allout-structure-added-functions)
9122         (allout-structure-deleted-functions)
9123         (allout-structure-shifted-functions): Rename abnormal hooks from
9124         *-hook, and convert to defcustoms.
9125         (allout-after-copy-or-kill-hook, allout-post-undo-hook):
9126         Convert to defcustoms.
9127         (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
9129         * allout-widgets.el: Hook callers changed.
9131 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
9133         * mail/rmail.el (rmail-yank-current-message): Use the encoding of
9134         the yanked message in preference to the default value of
9135         buffer-file-coding-system.
9137 2012-05-02  Martin Rudalics  <rudalics@gmx.at>
9139         * window.el (display-buffer--action-function-custom-type):
9140         Fix entry.
9142 2012-05-02  Alan Mackenzie  <acm@muc.de>
9144         * progmodes/cc-defs.el (c-version): Update to 5.32.3.
9146 2012-05-01  Glenn Morris  <rgm@gnu.org>
9148         * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
9150         * eshell/esh-cmd.el (eshell-debug-command): Doc fix.  Add :set.
9152         * cus-edit.el (custom-variable-documentation): Simplify with format.
9154 2012-05-01  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
9155             Stefan Monnier  <monnier@iro.umontreal.ca>
9157         * simple.el (suggest-key-bindings, execute-extended-command):
9158         Move from keyboard.c.
9160 2012-05-01  Chong Yidong  <cyd@gnu.org>
9162         * follow.el: Eliminate advice.
9163         (set-process-filter, process-filter, sit-for): Advice deleted.
9164         (follow-mode-off-hook): Obsolete hook removed.
9165         (follow-avoid-tail-recenter-p, follow-process-filter-alist):
9166         Vars deleted.
9167         (follow-auto): Use a :set function.
9168         (follow-mode): Rewritten.  Don't advise process filters.
9169         (follow-switch-to-current-buffer-all, follow-scroll-up)
9170         (follow-scroll-down): Assume follow-mode is bound.
9171         (follow-comint-scroll-to-bottom)
9172         (follow-align-compilation-windows): New functions.
9173         (follow--window-sorter): New function.
9174         (follow-all-followers): Use it to explicitly sort windows by their
9175         positions; don't make assumptions about next-window order.
9176         (follow-windows-start-end, follow-delete-other-windows-and-split)
9177         (follow-calc-win-start): Doc fix.
9178         (follow-windows-aligned-p, follow-select-if-visible): Don't call
9179         vertical-motion unnecessarily.
9180         (follow-adjust-window): New function.
9181         (follow-post-command-hook): Use it.
9182         (follow-call-set-process-filter, follow-call-process-filter)
9183         (follow-intercept-process-output, follow-tidy-process-filter-alist)
9184         (follow-stop-intercept-process-output, follow-generic-filter):
9185         Functions deleted.
9186         (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
9187         (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
9188         New functions, replacing advice on scroll-bar-* commands.
9189         (follow-mwheel-scroll): New function (Bug#4112).
9191         * comint.el (comint-adjust-point): New function.
9192         (comint-postoutput-scroll-to-bottom): Use it.
9193         Call follow-comint-scroll-to-bottom for Follow mode buffers.
9195 2012-05-01  Glenn Morris  <rgm@gnu.org>
9197         * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
9198         * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
9199         * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
9200         * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
9201         * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
9202         Remove no-byte-compile setting.
9204 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9206         * minibuffer.el (completion-table-with-quoting): Fix compatibility
9207         all-completions code to not return a number in the last cdr.
9209 2012-04-30  Leo Liu  <sdl.web@gmail.com>
9211         * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
9212         read-only error.
9214 2012-04-29  Chong Yidong  <cyd@gnu.org>
9216         * follow.el (follow-calc-win-end): Rewrite to handle partial
9217         screen lines correctly (Bug#8390).
9218         (follow-avoid-tail-recenter): Minor cleanup.
9220 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9222         Avoid the obsolete `assoc' package.
9223         * speedbar.el (speedbar-refresh): Avoid adelete.
9224         (speedbar-file-lists): Simplify and avoid aput.
9225         * man.el (Man--sections, Man--refpages): New vars, replacing
9226         Man-sections-alist and Man-refpages-alist.
9227         (Man-build-section-alist, Man-build-references-alist):
9228         Use them; avoid aput.
9229         (Man--last-section, Man--last-refpage): New vars.
9230         (Man-follow-manual-reference): Use them.
9231         Use the `default' arg of completing-read.
9232         (Man-goto-section): Idem.  Move prompt to the `interactive' spec.
9234 2012-04-27  Chong Yidong  <cyd@gnu.org>
9236         * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
9238         * startup.el (x-apply-session-resources): New function.
9240         * term/ns-win.el (ns-initialize-window-system):
9241         * term/w32-win.el (w32-initialize-window-system):
9242         * term/x-win.el (x-initialize-window-system): Use it to properly
9243         set menu-bar-mode and other vars from X resources, even if the
9244         initial frame is not a window-system frame (Bug#2299).
9246         * subr.el (read-key): Avoid running filter function when setting
9247         up temporary tool bar entries (Bug#9922).
9249 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
9251         * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
9252         (Bug#11344)
9254 2012-04-27  Chong Yidong  <cyd@gnu.org>
9256         * select.el (xselect--encode-string): New function, split from
9257         xselect-convert-to-string.
9258         (xselect-convert-to-string): Use it.
9259         (xselect-convert-to-filename, xselect-convert-to-os)
9260         (xselect-convert-to-host, xselect-convert-to-user): Ensure that
9261         returned strings are properly encoded (Bug#11315).
9263 2012-04-27  Chong Yidong  <cyd@gnu.org>
9265         * simple.el (delete-active-region): Move to killing custom group.
9267 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
9269         * progmodes/which-func.el (which-func-current): Quote %
9270         characters for mode-line processing.
9272 2012-04-27  Chong Yidong  <cyd@gnu.org>
9274         * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
9275         reaching eob (Bug#11286).
9277 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
9279         * progmodes/gdb-mi.el (gdb-control-level): New variable.
9280         (gdb): Make it buffer-local and init to zero.
9281         (gdb-control-commands-regexp): New variable.
9282         (gdb-send): Don't wrap in "-interpreter-exec console" if
9283         gdb-control-level is positive.  Increment gdb-control-level
9284         whenever the command matches gdb-control-commands-regexp, and
9285         decrement it each time the command is "end".  (Bug#11279)
9287 2012-04-27  Martin Rudalics  <rudalics@gmx.at>
9289         * window.el (adjust-window-trailing-edge, enlarge-window)
9290         (shrink-window, window-resize):
9291         * mouse.el (mouse-drag-line): Fix resizing of minibuffer
9292         windows (Bug#11276).
9294 2012-04-27  Chong Yidong  <cyd@gnu.org>
9296         * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
9297         fix "missing prefix" warning.  All callers changed.
9299 2012-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9301         * emacs-lisp/assoc.el: Move to obsolete/.
9303 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9305         * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
9307         * term/ns-win.el (ns-define-service):
9308         * progmodes/pascal.el (pascal-goto-defun):
9309         * progmodes/js.el (js--read-tab):
9310         * progmodes/etags.el (tags-lazy-completion-table):
9311         * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
9312         * emacs-lisp/ewoc.el (ewoc--wrap):
9313         * emacs-lisp/assoc.el (aput, adelete, amake):
9314         * doc-view.el (doc-view-convert-current-doc):
9315         * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
9317 2012-04-26  Chong Yidong  <cyd@gnu.org>
9319         * image.el (image-type-from-buffer): Only return supported image
9320         type (Bug#9045).
9322         * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
9323         value, for symmetry with diff-end-of-hunk.
9324         (diff-split-hunk, diff-find-source-location)
9325         (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
9326         (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
9327         (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
9328         compute the relevant hunk or file properly (Bug#6005).
9329         (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
9331 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9333         * vc/vc-mtn.el:
9334         * vc/vc-hg.el:
9335         * vc/vc-git.el:
9336         * vc/vc-dir.el:
9337         * vc/vc-cvs.el:
9338         * vc/vc-bzr.el:
9339         * vc/vc-arch.el:
9340         * vc/vc.el: Replace lexical-let by lexical-binding.
9341         * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
9342         * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
9343         * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
9345 2012-04-26  Chong Yidong  <cyd@gnu.org>
9347         * vc/diff-mode.el (diff-undo): New command (Bug#5302).
9348         (diff-mode-shared-map): Bind it to / and [remap undo].
9350         * vc/ediff-wind.el (ediff-setup-windows-default): New function.
9351         (ediff-window-setup-function): Use it as the default, to set up
9352         windows based on whether the current frame is graphical (Bug#2138).
9353         (ediff-choose-window-setup-function-automatically): Make obsolete.
9355         * vc/ediff-init.el: Always define ediff-pixel-width/height.
9357 2012-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9359         * ffap.el: Remove old code for obsolete package.
9360         (ffap-complete-as-file-p): Remove.
9362         Use completion-table-with-quoting for comint and pcomplete.
9363         * comint.el (comint--unquote&requote-argument)
9364         (comint--unquote-argument, comint--requote-argument): New functions.
9365         (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
9366         (comint-quote-filename): Use regexp-opt-charset.
9367         (comint--common-suffix, comint--common-quoted-suffix)
9368         (comint--table-subvert): Remove.
9369         (comint-unquote-function, comint-requote-function): New vars.
9370         (comint--complete-file-name-data): Use them with
9371         completion-table-with-quoting.
9372         * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
9373         * pcomplete.el (pcomplete-arg-quote-list)
9374         (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
9375         (pcomplete-unquote-argument-function): Default to non-nil.
9376         (pcomplete-unquote-argument): Simplify.
9377         (pcomplete--common-quoted-suffix): Remove.
9378         (pcomplete-requote-argument-function): New var.
9379         (pcomplete--common-suffix): New function.
9380         (pcomplete-completions-at-point): Use completion-table-with-quoting
9381         and completion-table-subvert.
9383         * minibuffer.el: Use completion-table-with-quoting for read-file-name.
9384         (minibuffer--double-dollars): Preserve properties.
9385         (completion--sifn-requote): New function.
9386         (completion--file-name-table): Rewrite using it and c-t-with-quoting.
9388         * minibuffer.el: Add support for completion of quoted/escaped data.
9389         (completion-table-with-quoting, completion-table-subvert): New funs.
9390         (completion--twq-try, completion--twq-all): New functions.
9391         (completion--nth-completion): New function.
9392         (completion-try-completion, completion-all-completions): Use it.
9394 2012-04-25  Leo Liu  <sdl.web@gmail.com>
9396         * progmodes/python.el (python-pdbtrack-get-source-buffer):
9397         Use compilation-message if available to find real filename.
9399 2012-04-25  Chong Yidong  <cyd@gnu.org>
9401         * vc/diff-mode.el (diff-setup-whitespace): New function.
9402         (diff-mode): Use it.
9404         * vc/diff.el (diff-sentinel):
9405         * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
9406         Whitespace mode variables based on diff style (Bug#8612).
9408 2012-04-25  Leo Liu  <sdl.web@gmail.com>
9410         * progmodes/python.el (python-send-region): Add suffix .py to the
9411         temp file.
9413         * files.el (auto-mode-alist): Use javascript-mode instead.
9415 2012-04-25  Alex Harsanyi  <AlexHarsanyi@gmail.com>
9417         Sync with soap-client repository.  Support SOAP simpleType (Bug#10331).
9419         * net/soap-client.el (soap-resolve-references-for-sequence-type)
9420         (soap-resolve-references-for-array-type): Hack to prevent self
9421         references, see Bug#9.
9422         (soap-parse-envelope): Report the contents of the 'detail' node
9423         when receiving a fault reply.
9424         (soap-parse-envelope): Report the contents of the entire 'detail' node.
9426         * net/soap-inspect.el (soap-sample-value-for-simple-type)
9427         (soap-inspect-simple-type): New function.
9429         * net/soap-client.el (soap-simple-type): New struct.
9430         (soap-default-xsd-types, soap-default-soapenc-types)
9431         (soap-decode-basic-type, soap-encode-basic-type):
9432         support unsignedInt and double basic types.
9433         (soap-resolve-references-for-simple-type)
9434         (soap-parse-simple-type, soap-encode-simple-type): New function.
9435         (soap-parse-schema): Parse xsd:simpleType declarations.
9437         * net/soap-client.el (soap-default-xsd-types)
9438         (soap-default-soapenc-types): Add integer, byte and anyURI types.
9439         (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
9440         the local name of "soapenc:Array".
9441         (soap-decode-basic-type, soap-encode-basic-type): Support encoding
9442         decoding integer, byte and anyURI xsd types.
9444 2012-04-25  Chong Yidong  <cyd@gnu.org>
9446         * cus-edit.el (custom-buffer-create-internal): Update header text.
9448 2012-04-25  Eli Zaretskii  <eliz@gnu.org>
9450         * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
9451         settings on 'system-type', not on 'window-system'.  On MS-Windows,
9452         set interactive-mode on in GDB.
9454 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9456         * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
9457         (ruby-syntax-propertize-regexp): Remove.
9458         (ruby-syntax-propertize-function): Split regexp into chunks.
9459         Match following code directly.
9461 2012-04-24  Dmitry Gutov  <dgutov@yandex.ru>
9463         * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
9464         (ruby-syntax-propertize-regexp): New function.
9465         (ruby-syntax-propertize-function): Use it to handle regexp not preceded
9466         by a special keyword.
9468         * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
9469         (ruby-syntax-general-delimiters-goto-beg)
9470         (ruby-syntax-propertize-general-delimiters): New functions.
9471         (ruby-syntax-propertize-function): Use them to handle GDL.
9472         (ruby-font-lock-keywords): Move old handling of GDL...
9473         (ruby-font-lock-syntactic-keywords): .. to here.
9474         (ruby-calculate-indent): Adjust indentation for GDL.
9476 2012-04-24  Michael Albinus  <michael.albinus@gmx.de>
9478         * notifications.el (top): Remove unneeded declarations.
9479         (notifications-specification-version): Change to "1.2".
9480         (notifications-interface, notifications-notify-method)
9481         (notifications-close-notification-method): Fix docstring.
9482         (notifications-get-capabilities-method): New defconst.
9483         (notifications-notify): Add :action-items, :resident and
9484         :transient hints.  Change "image_data" to "image-data" and
9485         "image_path" to "image-path".
9486         (notifications-get-capabilities): New defun.
9488 2012-04-24  Leo Liu  <sdl.web@gmail.com>
9490         * progmodes/python.el: Move hideshow setup to the end.
9492 2012-04-24  Martin Rudalics  <rudalics@gmx.at>
9494         * window.el (handle-select-window): Clear echo area since this is
9495         no more done by read_char (Bug#11304).
9497 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9499         * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
9500         and `/ M' to filter-derived-mode.
9501         * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
9502         (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
9503         (ibuffer-mark-by-mode): Use default rather than initial-input.
9504         (ibuffer-filter-by-derived-mode): Autoload and require-match.
9506 2012-04-24  Ivan Andrus  <darthandrus@gmail.com>  (tiny change)
9508         * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
9509         (ibuffer-filter-by-derived-mode): New filter.
9510         * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
9512 2012-04-23  Andreas Politz  <politza@fh-trier.de>
9514         * subr.el (accept-change-group): Fix arg usage (Bug#6095).
9516 2012-04-23  Chong Yidong  <cyd@gnu.org>
9518         * cus-edit.el (customize-apropos, customize-apropos-options):
9519         Disable matching of non-option variables (Bug#11176).
9520         (customize-option, customize-option-other-window)
9521         (customize-changed-options): Doc fix.
9522         (customize-apropos-options, customize-apropos-faces)
9523         (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
9525         * apropos.el (apropos-read-pattern): Make prompt less cryptic.
9526         Fix word list splitting (Bug#11132).
9527         (apropos-symbol, apropos-keybinding, apropos-label)
9528         (apropos-property, apropos-function-button)
9529         (apropos-variable-button, apropos-misc-button): New faces.
9530         (apropos-symbol-face, apropos-keybinding-face)
9531         (apropos-label-face, apropos-property-face, apropos-match-face):
9532         Variables removed (Bug#8396).
9533         (apropos-library-button, apropos-format-plist, apropos-print)
9534         (apropos-print-doc, apropos-describe-plist): Callers changed.
9536 2012-04-23  Michael Albinus  <michael.albinus@gmx.de>
9538         * net/xesam.el (xesam-mode-map): Use let-bound map in
9539         initialization.  (Bug#11292)
9541 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
9543         Preserve ispell session localwords when switching back to
9544         original buffer.
9546         * textmodes/ispell.el (ispell-buffer-session-localwords):
9547         New buffer-local variable to hold buffer session localwords.
9548         (ispell-kill-ispell): Add option 'clear to delete session
9549         localwords.
9550         (ispell-command-loop, ispell-change-dictionary)
9551         (ispell-buffer-local-words): Preserve session localwords when
9552         needed.
9554         * textmodes/flyspell.el (flyspell-process-localwords)
9555         (flyspell-do-correct): Preserve session localwords when needed.
9557 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
9559         * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
9560         using obsolete `translation-table-for-input'.
9561         (ispell-word, ispell-process-line, ispell-complete-word):
9562         Use plain `insert' instead of removed `ispell-insert-word'.
9564 2012-04-22  Chong Yidong  <cyd@gnu.org>
9566         * cus-edit.el (custom-variable-menu)
9567         (custom-variable-reset-saved, custom-face-menu)
9568         (custom-face-reset-saved): If there is no saved value, make the
9569         "reset-saved" operation bring back the default (Bug#9509).
9570         (custom-face-state): Properly detect themed faces.
9572         * faces.el (face-spec-set): Stop supporting deprecated form of
9573         third arg.
9575 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
9577         Move functions from C to Lisp.  Make non-blocking method calls
9578         the default.  Implement further D-Bus standard interfaces.
9580         * net/dbus.el (dbus-message-internal): Declare function.
9581         Remove unneeded function declarations.
9582         (defvar dbus-message-type-invalid, dbus-message-type-method-call)
9583         (dbus-message-type-method-return, dbus-message-type-error)
9584         (dbus-message-type-signal): Declare variables.  Remove local
9585         definitions.
9586         (dbus-interface-dbus, dbus-interface-peer)
9587         (dbus-interface-introspectable, dbus-interface-properties)
9588         (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
9589         Adapt docstring.
9590         (dbus-interface-objectmanager): New defconst.
9591         (dbus-call-method, dbus-call-method-asynchronously)
9592         (dbus-send-signal, dbus-method-return-internal)
9593         (dbus-method-error-internal, dbus-register-service)
9594         (dbus-register-signal, dbus-register-method): New defuns, moved
9595         from dbusbind.c
9596         (dbus-call-method-handler, dbus-setenv)
9597         (dbus-get-all-managed-objects, dbus-managed-objects-handler):
9598         New defuns.
9599         (dbus-call-method-non-blocking): Make it an obsolete function.
9600         (dbus-unregister-object, dbus-unregister-service)
9601         (dbus-handle-event, dbus-register-property)
9602         (dbus-property-handler): Obey the new structure of
9603         `bus-registered-objects'.
9604         (dbus-introspect): Use `dbus-call-method'.  Use a timeout.
9605         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
9606         Use `dbus-call-method'.
9608 2012-04-22  Chong Yidong  <cyd@gnu.org>
9610         * cus-edit.el (custom-commands, custom-reset-menu)
9611         (Custom-reset-standard): Tweak labels.
9612         (custom-reset-button-menu): Change default to t.
9613         (custom-buffer-create-internal): For the custom-reset-button-menu
9614         case, put the revert button first.
9615         (custom-group-subtitle): New face.
9616         (custom-group-value-create): Align docstring to a specific column.
9618         * wid-edit.el (widget-documentation-link-add): Don't handle
9619         indentation in this function.
9620         (widget-documentation-string-indent-to): New function.
9621         (widget-documentation-string-value-create): Use it.
9623         * autorevert.el (auto-revert):
9624         * epg-config.el (epg):
9625         * ibuffer.el (ibuffer):
9626         * mpc.el (mpc):
9627         * ses.el (ses):
9628         * eshell/eshell.el (eshell):
9629         * net/ange-ftp.el (ange-ftp):
9630         * progmodes/ebnf2ps.el (postscript):
9631         * progmodes/flymake.el (flymake):
9632         * progmodes/prolog.el (prolog):
9633         * progmodes/verilog-mode.el (verilog-mode):
9634         * progmodes/which-func.el (which-func):
9635         * term/xterm.el (xterm):
9636         * textmodes/picture.el (picture):
9637         * textmodes/tildify.el (tildify):
9638         * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
9639         customization buffers.
9641 2012-04-22  Alan Mackenzie  <acm@muc.de>
9643         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
9644         Adding a ) can hide the resulting (..) from searches.  Fix it.
9645         Bound the backward search to the position of the existing (.
9647 2012-04-21  Juanma Barranquero  <lekktu@gmail.com>
9649         * progmodes/verilog-mode.el (verilog-mode): Check whether
9650         which-func-modes is t before adding verilog-mode.
9651         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
9653 2012-04-21  Leo Liu  <sdl.web@gmail.com>
9655         * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
9657 2012-04-21  Michael Vehrs  <Michael.Burschik@gmx.de>
9659         * woman.el: Add support for "T{ T}" tbl syntax, and fix the
9660         filling of the last column of a table (Bug#5635).
9661         (woman-find-next-control-line): New arg, specifying an additional
9662         regexp component for the control line.
9663         (woman2-roff-buffer): Use it.
9664         (woman-break-table): New function.
9665         (woman2-TS): Use it.
9667 2012-04-21  Chong Yidong  <cyd@gnu.org>
9669         * woman.el (woman-set-buffer-display-table, woman-decode-region)
9670         (woman-horizontal-escapes, woman-negative-vertical-space)
9671         (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
9672         (WoMan-warn-ignored): Use ?\s instead of ?\ .
9674 2012-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9676         * minibuffer.el (completion-file-name-table): Complete user names.
9678 2012-04-20  Leo Liu  <sdl.web@gmail.com>
9680         * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
9681         and pcase-let*.
9683 2012-04-20  Chong Yidong  <cyd@gnu.org>
9685         * server.el (server-execute): Respect initial-buffer-choice if it
9686         is a string and there are no files to open (Bug#2825).
9687         (server-create-window-system-frame, server-create-tty-frame):
9688         Don't switch buffers here.
9689         (server-process-filter): Only try to open a window system frame if
9690         compiled with graphical support (Bug#8314).
9692 2012-04-20  Dan Nicolaescu  <dann@gnu.org>
9694         * battery.el (battery-echo-area-format): Display remaining time
9695         for sysfs backend too (Bug#11269).
9696         (battery-linux-sysfs): Fix conditional for the charge.
9698 2012-04-20  Chong Yidong  <cyd@gnu.org>
9700         * progmodes/gdb-mi.el (gdb): Revert previous change.
9701         (gdb-inferior-io--init-proc): New function.
9702         (gdb-init-1): Use it.
9703         (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
9704         responsible for allocating a new pty and hooking it to gdb when
9705         the old pty gets an EIO due to process exit.
9706         (gdb-delchar-or-quit): New command.  Bind it in gdb-mi buffers.
9707         (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
9708         (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
9710 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
9712         * window.el (window-min-size, window-sizable, window-min-delta)
9713         (window-max-delta, window--resizable, window-resizable)
9714         (window-total-size, window-full-height-p, window-full-width-p)
9715         (window-in-direction, window--resize-mini-window, window-resize)
9716         (window--resize-child-windows-normal)
9717         (window--resize-child-windows, window--resize-siblings)
9718         (window--resize-this-window, adjust-window-trailing-edge)
9719         (enlarge-window, shrink-window): Doc fixes.
9721 2012-04-20  Chong Yidong  <cyd@gnu.org>
9723         * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
9724         New function to call delete-process on the gdb-inferior buffer's pty.
9725         (gdb-reset): Use it, instead of relying on kill-buffer to kill the
9726         pty process (Bug#11273).
9727         (gdb-update): New arg to suppress talking to the gdb process.
9728         (gdb-done-or-error): Use it.
9729         (gdb-stopped-functions): Rename from gdb-stopped-hooks.
9730         (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
9731         sentinel not being called.
9733         * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
9735         * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
9737 2012-04-20  Glenn Morris  <rgm@gnu.org>
9739         * net/network-stream.el (open-network-stream): Doc fix.
9741 2012-04-20  Chong Yidong  <cyd@gnu.org>
9743         * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
9745 2012-04-20  Alan Mackenzie  <acm@muc.de>
9747         Ensure searching for keywords is case sensitive.
9749         * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
9750         (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
9751         (c-defun-name, c-mark-function, c-cpp-define-name)
9752         (c-comment-indent, c-scan-conditionals, c-indent-defun)
9753         (c-context-line-break): Bind case-fold-search to nil.
9755         * progmodes/cc-mode.el (c-font-lock-fontify-region):
9756         Bind case-fold-search to nil.
9758 2012-04-20  Chong Yidong  <cyd@gnu.org>
9760         * mail/sendmail.el (mail-bury): Call return action with the right
9761         Rmail buffer (Bug#11242).
9763         * server.el (server-process-filter): Handle corner case where both
9764         tty and nowait options are present (Bug#11102).
9766 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
9768         * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
9769         (top level): Put into the executable the ident-style '$Id:' tag on
9770         windows-nt as well.
9772 2012-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9774         * electric.el (electric-indent-post-self-insert-function): Check that
9775         electric-indent-mode is enabled in current buffer.
9777 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
9779         * imenu.el (imenu-progress-message): Restore; it is "used" in
9780         erc/erc-imenu.el and net/snmp-mode.el.
9782 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
9784         * avoid.el (mouse-avoidance-mode): Mark unused arg.
9785         (mouse-avoidance-nudge-mouse): Remove unused binding.
9787         * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
9789         * descr-text.el (describe-char):
9790         * progmodes/python.el (python-describe-symbol):
9791         Don't call `toggle-read-only', set `buffer-read-only'.
9793         * imenu.el (imenu-default-goto-function): Mark unused args.
9794         (imenu-progress-message): Remove obsolete macro; all callers changed.
9796         * subr.el (keymap-canonicalize): Remove unused binding.
9797         (read-passwd): Mark unused arg.
9799         * tutorial.el (tutorial--display-changes): Remove unused binding.
9800         (tutorial--save-tutorial-to): Remove unused variable.
9802         * emacs-lisp/package.el (define-package, package-menu-mark-delete)
9803         (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
9804         (package-generate-autoloads, package-menu--generate)
9805         (package-menu--find-upgrades): Remove unused bindings.
9807         * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
9808         (cua-restrict-prefix-rectangle): Doc fixes.  Remove unused bindings.
9809         (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
9810         (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
9811         (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
9812         (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
9813         (cua--rectangle-aux-replace, cua--left-fill-rectangle)
9814         (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
9815         (cua-delete-char-rectangle): Mark unused args.
9816         (cua-align-rectangle): Remove unused binding.
9818         * mail/rmail.el (compilation--message->loc)
9819         (epa--find-coding-system-for-mime-charset): Declare.
9821         * net/dbus.el (dbus-register-service): Declare.
9822         (dbus-name-owner-changed-handler): Remove unused binding.
9824         * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
9825         (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
9826         (nxml-scan-backward-within): Mark unused arg.
9827         (nxml-dynamic-markup-word): Remove unused binding.
9829         * mouse.el (mouse-menu-major-mode-map):
9830         * emacs-lisp/authors.el (authors-scan-change-log)
9831         (authors-add-to-author-list):
9832         * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
9833         * emacs-lisp/smie.el (smie-auto-fill):
9834         * mail/sendmail.el (mail-bury):
9835         * mail/unrmail.el (unrmail):
9836         * net/tls.el (open-tls-stream):
9837         * textmodes/picture.el (picture-mouse-set-point):
9838         Remove unused bindings.
9840 2012-04-19  Michael Albinus  <michael.albinus@gmx.de>
9842         * net/tramp.el (tramp-action-password): Let-bind
9843         `enable-recursive-minibuffers' to t.
9845 2012-04-18  Sam Steingold  <sds@gnu.org>
9847         * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
9848         instead of 'string to accommodate values like [f11].
9849         Always use `vconcat' instead of `concat' on it, like in `gud-def'.
9850         * progmodes/gdb-mi.el: Likewise.
9852 2012-04-18  Leo Liu  <sdl.web@gmail.com>
9854         * abbrev.el (edit-abbrevs): Move point to the abbrev table of
9855         current buffer.
9856         (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
9857         LOCAL is nil.
9859 2012-04-18  Chong Yidong  <cyd@gnu.org>
9861         * simple.el (line-move): Use forward-line if in batch mode
9862         (Bug#11053).
9864 2012-04-18  Christopher Schmidt  <christopher@ch.ristopher.com>
9866         * files.el (after-find-file): Do not try to add a final newline if
9867         the buffer is read-only (Bug#11156).
9869 2012-04-17  Richard Stallman  <rms@gnu.org>
9871         * mail/rmail.el (rmail-start-mail):
9872         Pass (rmail-mail-return...) for the return-action.
9873         Pass (rmail-yank-current-message...) for the yank-action.
9874         (rmail-yank-current-message): New function.
9875         (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
9876         (rmail-reply): Likewise.
9877         (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
9879         * mail/sendmail.el (mail-bury): Choose the first rmail-mode
9880         buffer, not the last.  Reject temp buffers.  Use the rmail-mode
9881         buffer, not newbuf.
9883 2012-04-17  Juanma Barranquero  <lekktu@gmail.com>
9885         * server.el (server-ensure-safe-dir): Simplify.
9887 2012-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9889         * emacs-lisp/smie.el: Provide smarter auto-filling.
9890         (smie-auto-fill): New function.
9891         (smie-setup): Use it.
9893         * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
9895 2012-04-17  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
9897         * newcomment.el (comment-inline-offset): New custom var (bug#11090).
9898         (comment-indent): Use it.
9900 2012-04-17  Vincent Belaïche  <vincentb1@users.sourceforge.net>
9902         * ses.el: The overall change is to add cell renaming, that is
9903         setting fancy names for cell symbols other than name matching
9904         "\\`[A-Z]+[0-9]+\\'" regexp .
9905         (ses-localvars): Add ses--renamed-cell-symb-list.
9906         (ses-create-cell-variable): New defun.
9907         (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
9908         (ses-relocate-formula): Relocate formulas only for cells the
9909         symbols of which are not renamed, i.e. symbols whose names do not
9910         match regexp "\\`[A-Z]+[0-9]+\\'".
9911         (ses-relocate-all): Relocate values only for cells the symbols of
9912         which are not renamed.
9913         (ses-load): Create cells variables as the (ses-cell ...) are read,
9914         in order to check row col consistency with cell symbol name only
9915         for cells that are not renamed.
9916         (ses-replace-name-in-formula): New defun.
9917         (ses-rename-cell): New defun.
9919 2012-04-17  Peter Oliver  <bzr@mavit.org.uk>  (tiny change)
9921         * progmodes/perl-mode.el (perl-indent-parens-as-block):
9922         New option (bug#11118).
9923         (perl-calculate-indent): Respect it.
9925 2012-04-17  Glenn Morris  <rgm@gnu.org>
9927         * dired-aux.el (dired-mark-read-string): Doc fix.
9929 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
9931         * dired-aux.el (dired-mark-read-string): Offer optional completion.
9932         (dired-do-chxxx): Complete chown, chgrp over users, groups.  (Bug#7900)
9934 2012-04-17  Glenn Morris  <rgm@gnu.org>
9936         * mouse.el (mouse-drag-track):
9937         * speedbar.el (speedbar-frame-mode):
9938         Use auto-hscroll-mode rather than the alias automatic-hscrolling.
9940 2012-04-16  Leo Liu  <sdl.web@gmail.com>
9942         * progmodes/python.el: Trivial cleanup.
9944 2012-04-16  Glenn Morris  <rgm@gnu.org>
9946         * vc/vc.el (vc-string-prefix-p):
9947         * vc/pcvs-util.el (cvs-string-prefix-p):
9948         * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
9949         * mpc.el (mpc-string-prefix-p):
9950         Make all of these into obsolete aliases for string-prefix-p.
9951         Update callers.
9952         * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
9954         * textmodes/two-column.el: Move custom options to the start.
9955         (frame-width): Remove compat definition.
9956         (2C-associate-buffer, 2C-dissociate):
9957         Use with-current-buffer rather than save-excursion.
9958         (2C-dissociate): Force a mode-line update.
9959         (2C-autoscroll): Use ignore-errors.
9961         * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
9962         Autoload trivia.
9964         * emacs-lisp/cl-extra.el (*random-state*):
9965         Remove unnecessary declaration.
9967         * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
9969         * play/cookie1.el (cookie-snarf):
9970         Give an explicit error if input file cannot be read.
9972         * play/yow.el (yow-file): Use expand-file-name rather than concat.
9974         * progmodes/perl-mode.el (c-macro-expand):
9975         Remove unnecessary autoload (it is in loaddefs.el).
9977         * textmodes/picture.el (picture-desired-column)
9978         (picture-update-desired-column): Convert comments to doc-strings.
9979         (picture-substitute): Remove function.
9980         (picture-mode-map): Initialize in the defvar.
9982         * woman.el: Remove eval-after-load for tar-mode.
9983         * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
9984         (woman-tar-extract-file): Autoload it.
9986         * frame.el (automatic-hscrolling): Make this alias obsolete.
9988 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
9990         * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
9991         `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
9992         (ispell-dictionary-base-alist): Revert to original XEmacs
9993         friendly version for default.  [:alpha:] will be added in
9994         `ispell-set-spellchecker-params' if needed.
9996 2012-04-16  Chong Yidong  <cyd@gnu.org>
9998         * image.el (imagemagick--file-regexp): New variable.
9999         (imagemagick-register-types): Use it.
10000         (imagemagick-types-inhibit): Add :set function.  Allow new value
10001         of t to inhibit all types.
10003         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
10004         so we can preload it.
10006         * loadup.el (fboundp): Preload regexp-opt, needed by
10007         imagemagick-register-types.
10009 2012-04-15  Chong Yidong  <cyd@gnu.org>
10011         * frame.el (scrolling): Remove nearly unused customization group.
10013         * scroll-all.el (scroll-all-mode): Move to windows group.
10015 2012-04-15  Chong Yidong  <cyd@gnu.org>
10017         * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
10019 2012-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10021         Avoid the use of ((lambda ...) ...) in lexical-binding code.
10022         * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
10024 2012-04-15  Glenn Morris  <rgm@gnu.org>
10026         * simple.el (process-file-side-effects): Doc fix.
10028 2012-04-15  Glenn Morris  <rgm@gnu.org>
10030         * international/mule-cmds.el (set-language-environment): Doc fix.
10032 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
10034         * server.el (server-auth-key, server-generate-key): Doc fixes.
10035         (server-get-auth-key): Doc fix.  Use `string-match-p'.
10036         (server-start): Reflow docstring.
10038 2012-04-14  Lars Ingebrigtsen  <larsi@gnus.org>
10040         * server.el (server-generate-key): `called-interactively-p'
10041         requires a parameter.
10043 2012-04-14  Michal Nazarewicz  <mina86@mina86.com>
10045         * server.el (server-auth-key): New variable.
10046         (server-generate-key, server-get-auth-key): New function.
10047         (server-start): Use the new variable and functions to allow
10048         setting a permanent server key (bug#9423).
10050 2012-04-14  Leo Liu  <sdl.web@gmail.com>
10052         * vc/diff-mode.el (diff-file-prev/next): Fix typo.
10054 2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
10056         Spelling fixes.
10057         * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
10058         Emacs uses American spelling.
10060 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
10062         * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
10063         (emacs-lock--exit-locked-buffer): Return the locked buffer.  Doc fix.
10064         (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
10065         (emacs-lock--kill-buffer-query-functions): Run new hook.  (Bug#11017)
10067 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10069         * progmodes/which-func.el (which-func-modes): Change default.
10071 2012-04-14  Kim F. Storm  <storm@cua.dk>
10073         * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
10074         exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
10076 2012-04-14  Chong Yidong  <cyd@gnu.org>
10078         * custom.el (custom-theme-set-variables): Doc fix.
10080 2012-04-14  Glenn Morris  <rgm@gnu.org>
10082         * international/mule.el (set-auto-coding-for-load): Doc fix.
10084 2012-04-14  Alan Mackenzie  <acm@muc.de>
10086         * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
10087         imenu work again for Objective C Mode.  Correct the *-index values,
10088         these having been disturbed by a previous change in 2011-08.
10090         * progmodes/cc-engine.el (c-before-change-check-<>-operators):
10091         Correct two search limits.
10093 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10095         * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
10097 2012-04-14  Andreas Schwab  <schwab@linux-m68k.org>
10099         * international/characters.el: Fix sorting.
10101 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
10103         * international/characters.el: Add more missing Latin case pairs.
10105 2012-04-14  Glenn Morris  <rgm@gnu.org>
10107         * files.el (dir-locals-set-class-variables): Doc fix.
10109 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
10111         * international/characters.el: Add set-case-syntax-pair call for
10112         LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
10113         counterpart.  (Bug#11209)
10115         * simple.el (shell-command-on-region): Doc fix.  (Bug#11208)
10117 2012-04-14  Glenn Morris  <rgm@gnu.org>
10119         * calendar/holidays.el (calendar-check-holidays): Doc fix.
10121 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
10123         * textmodes/ispell.el (ispell-dictionary-base-alist):
10124         Add data for Hebrew.
10126 2012-04-14  Chong Yidong  <cyd@gnu.org>
10128         * net/rcirc.el (rcirc-cmd-quit):
10129         Revert 2012-03-18 change (Bug#11192).
10131 2012-04-14  Glenn Morris  <rgm@gnu.org>
10133         * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
10135 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
10137         * minibuffer.el (completion-in-region-mode-map):
10138         Bind completion-help-at-point to M-? rather than ?.  (Bug#11182)
10140 2012-04-13  Vivek Dasmohapatra  <vivek@etla.org>
10142         * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
10144 2012-04-13  Masatake YAMATO  <yamato@redhat.com>
10146         * minibuffer.el (minibuffer-local-filename-syntax): New variable
10147         to allow `C-M-f' and `C-M-b' to move to the nearest path
10148         separator (bug#9511).
10150 2012-04-13  Lars Ingebrigtsen  <larsi@gnus.org>
10152         * avoid.el: Require cl when compiling.  And also move the
10153         `provide' to the end.
10155 2012-04-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10157         * avoid.el (mouse-avoidance-banish-position): New variable.
10158         (mouse-avoidance-banish-destination): Use it (bug#10165).
10160 2012-04-13  Leo Liu  <sdl.web@gmail.com>
10162         * progmodes/which-func.el (which-func-modes): Add objc-mode.
10164 2012-04-13  Ken Brown  <kbrown@cornell.edu>
10166         * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
10167         this is no longer needed now that cygstart understands file:// URLs.
10168         (browse-url-filename-alist): For the same reason, don't modify
10169         file:// URLs on Cygwin.
10171 2012-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10173         * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
10174         the region on shift if the binding is already shifted (bug#11221).
10176 2012-04-12  Glenn Morris  <rgm@gnu.org>
10178         * mail/mailpost.el: Move to obsolete/.
10180 2012-04-12  Drew Adams  <drew.adams@oracle.com>
10182         * imenu.el (imenu--generic-function): Ignore invisible definitions
10183         (bug#10123).
10185 2012-04-12  Vivek Dasmohapatra  <vivek@etla.org>
10187         * hexl.el (hexl-bits): New variable.
10188         (hexl-options): Mention the variable in the doc string.
10189         (hexl-rulerise, hexl-line-displen): New functions.
10190         (hexl-mode): Mention the new variable.
10191         (hexl-mode, hexl-current-address, hexl-current-address):
10192         Use the displen.
10193         (hexl-ascii-start-column): New function.
10194         (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
10195         (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
10197 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
10199         * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
10200         '("-i" ENCODING), in 2 separate command-line arguments, to specify
10201         the encoding, as expected by hunspell.
10203 2012-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10205         * battery.el (battery--linux-sysfs-regexp): New const.
10206         (battery-status-function): Use it.  Remove yeeloong special case.
10207         (battery-yeeloong-sysfs): Remove.
10208         (battery-echo-area-format): Remove yeeloong special case.
10210 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10212         * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
10213         Reported by Noah Friedman.
10215         * subr.el (read-passwd): Use read-string.
10217 2012-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10219         * vcursor.el (vcursor-move): Increase the priority of the overlay
10220         (bug#9663).
10222 2012-04-11  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
10224         * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
10225         (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
10227 2012-04-11  William Stevenson  <yhvh2000@gmail.com>
10229         * textmodes/artist.el (artist-mode): Convert artist-mode to use
10230         define-minor-mode (bug#10760).
10232 2012-04-11  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
10234         * progmodes/grep.el (rgrep): Tweak the find command line so
10235         that directories matching `grep-find-ignored-files' won't be
10236         pruned (bug#10351).
10238 2012-04-11  Chong Yidong  <cyd@gnu.org>
10240         * startup.el (command-line): Remove support for long-obsolete
10241         variable font-lock-face-attributes.
10243 2012-04-11  Glenn Morris  <rgm@gnu.org>
10245         * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
10247 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10249         * window.el (window--state-get-1): Obey window-point-insertion-type.
10251 2012-04-11  Lennart Borgman  <lennart.borgman@gmail.com>
10253         * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
10254         to previous function when point is on the first character of a
10255         function.  Take care of that in `narrow-to-defun' (bug#6157).
10257 2012-04-11  Glenn Morris  <rgm@gnu.org>
10259         * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
10260         not just file-errors.
10262         * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
10263         (vc-bzr-sha1): Use internal sha1.
10265 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10267         * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
10269 2012-04-10  Sébastien Gross  <seb@chezwam.org>  (tiny change)
10271         * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
10272         that start in the middle of the line (bug#10496).
10274 2012-04-10  Dan Nicolaescu  <dann@gnu.org>
10276         * battery.el (battery-linux-proc-acpi): Only one battery is
10277         discharged at a time, but that seems to confuse battery.el when
10278         computing `rate-type' for the battery not being discharged
10279         (bug#10332).
10281 2012-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10283         * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
10285         * international/quail.el: Use dolist and simplify.
10286         (quail-define-package, quail-update-keyboard-layout)
10287         (quail-define-rules): Use dolist.
10288         (quail-insert-kbd-layout, quail-get-translation): CSE.
10290         * tmm.el: Use dolist, remove left over hook.
10291         (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
10292         Use dolist.
10293         (calendar-load-hook): Don't mess with it.
10295         * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
10296         Use derived-mode-p.  Run the diff asynchronously.
10298 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10300         * obsolete/mouse-sel.el: Add an Obsolete-since header.
10302 2012-04-10  Juanma Barranquero  <lekktu@gmail.com>
10304         * misc.el: Display absolute path of loaded DLLs (bug#10424).
10305         (list-dynamic-libraries--loaded): New function.
10306         (list-dynamic-libraries--refresh): Use it.
10308 2012-04-10  Nathan Weizenbaum  <nweiz@google.com>
10310         * progmodes/python.el (python-fill-paragraph):
10311         Make python-fill-region in a multiline string work when font-lock is
10312         disabled (bug#7018).
10314 2012-04-10  Laimonas Vėbra  <laimonas.vebra@gmail.com>  (tiny change)
10316         * language/european.el (cp775): Add oem/legacy (en)coding on
10317         DOS/MS Windows for the Baltic languages.  There are still plenty
10318         of texts written in this encoding/codepage (bug#6519).
10320 2012-04-10  Glenn Morris  <rgm@gnu.org>
10322         * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
10323         Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
10325 2012-04-10  Florian Adamsky  <florian@adamsky.it>  (tiny change)
10327         * recentf.el (recentf-dialog-mode-map): Add two keybindings for
10328         next-line "n" and previous-line "p" in order to make recentf more
10329         consistent with ibuffer, dired or org-mode (bug#9387).
10331 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10333         * image.el (put-image): Return the overlay created instead of the
10334         optional input string (bug#7834).  Note that this may break code
10335         that is (for some reason or other) depending on `put-image'
10336         returning the string.
10338         * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
10340         * simple.el (zap-to-char): Allow zapping using input methods
10341         (bug#1580).
10343         * textmodes/fill.el (fill-region): Leave point and mark where they
10344         were before filling (bug#5399).
10346 2012-04-09  Glenn Morris  <rgm@gnu.org>
10348         * version.el (emacs-bzr-get-version):
10349         Handle lightweight checkouts of local branches.
10351 2012-04-09  Andreas Schwab  <schwab@linux-m68k.org>
10353         * international/characters.el: Recover lost case pairs.  (Bug#11209)
10355 2012-04-09  Chong Yidong  <cyd@gnu.org>
10357         * custom.el (custom-variable-p): Return nil for non-symbol
10358         arguments instead of signaling an error.
10359         (user-variable-p): Obsolete alias for custom-variable-p.
10361         * apropos.el (apropos-variable):
10362         * files-x.el (read-file-local-variable):
10363         * simple.el (set-variable):
10364         * woman.el (woman-mini-help):
10365         * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
10367 2012-04-09  Glenn Morris  <rgm@gnu.org>
10369         * startup.el (normal-top-level): Don't look for leim-list.el
10370         in places where it will not be found.  (Bug#910)
10372         * international/mule-cmds.el (set-default-coding-systems):
10373         * files.el (normal-mode):
10374         Remove guarded calls to ucs-set-table-for-input.  (Bug#9821)
10375         This function was removed with ucs-tables.el in 2008.
10377 2012-04-08  Eli Zaretskii  <eliz@gnu.org>
10379         * textmodes/ispell.el (ispell-check-version): For hunspell, set
10380         ispell-encoding8-command to "-i", without a trailing space.
10381         (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
10382         separate command-line arguments, to specify the encoding, since
10383         that's how hunspell expects it.
10385 2012-04-08  Glenn Morris  <rgm@gnu.org>
10387         * loadup.el: Load bindings before cus-start.
10388         This reduces somewhat the number of "rogue" settings in emacs -Q.
10390 2012-04-07  Glenn Morris  <rgm@gnu.org>
10392         * version.el (emacs-bzr-get-version): New function.
10393         (emacs-bzr-version): New variable.
10394         * loadup.el (emacs-bzr-version): Set it.  (Bug#8054)
10395         * mail/emacsbug.el (report-emacs-bug): Include bzr version.
10397 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
10399         * international/uni-bidi.el, international/uni-category.el:
10400         * international/uni-combining.el, international/uni-decimal.el:
10401         * international/uni-decomposition.el, international/uni-digit.el:
10402         * international/uni-lowercase.el, international/uni-mirrored.el:
10403         * international/uni-name.el, international/uni-numeric.el:
10404         * international/uni-titlecase.el, international/uni-uppercase.el:
10405         Update for Unicode 6.1.
10407 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
10409         * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
10411 2012-04-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10413         * window.el (shrink-window): Mention the `window-min-height'
10414         variable in the doc string.
10416 2012-04-05  Bastien Guerry  <bzg@altern.org>
10418         * color.el (color-lighten-name): Fix typo.
10420 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10422         * server.el (server--on-display-p): New function.
10423         (server--on-display-p): Use it.
10425 2012-04-04  Gabor Vida  <vidagabor@gmail.com>  (tiny change)
10427         * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
10428         (bug#11145).
10430 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10432         * comint.el (comint--common-quoted-suffix): Check string boundary
10433         before comparing (bug#11158).
10434         * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
10436 2012-04-04  Chong Yidong  <cyd@gnu.org>
10438         * minibuffer.el (completion-extra-properties): Doc fix.
10440         * subr.el (delayed-warnings-hook): Doc fix.
10442 2012-04-04  Daiki Ueno  <ueno@unixuser.org>
10444         * epa.el (epa--select-keys): Bind C-c C-c to finish the key
10445         selection (Bug#11159).
10446         (epa-insert-keys): Inform that the default public key will be
10447         exported if no key is selected.
10449 2012-04-04  Richard Stallman  <rms@gnu.org>
10451         * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
10453 2012-04-03  Chong Yidong  <cyd@gnu.org>
10455         * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
10456         mail-insert-file, not its obsolete alias mail-attach-file.
10458 2012-04-03  Michael Albinus  <michael.albinus@gmx.de>
10460         * notifications.el (notifications-notify): Fix docstring.
10462 2012-04-02  Glenn Morris  <rgm@gnu.org>
10464         * emacs-lisp/authors.el (authors-aliases): Another addition.
10466 2012-04-02  Michael Albinus  <michael.albinus@gmx.de>
10468         * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
10469         `tramp-compat-call-process' instead of `tramp-local-call-process'.
10470         Reported by Magnus Henoch <magnus.henoch@gmail.com>.
10472 2012-04-01  Chong Yidong  <cyd@gnu.org>
10474         * files.el (file-in-directory-p): Rename from file-subdir-of-p.
10475         Handle root directory properly.
10476         (copy-directory): Caller changed.
10478         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
10479         * net/tramp.el (tramp-file-name-for-operation): Callers changed.
10481 2012-03-31  Glenn Morris  <rgm@gnu.org>
10483         * term/xterm.el (xterm-extra-capabilities): Doc fix.
10485         * language/indian.el ("Devanagari"): Fix typo.  (Bug#11103)
10487         * calendar/calendar.el (calendar-window-list)
10488         (calendar-hide-window): Restore.  (Bug#11140)
10489         (calendar-exit): Use calendar-window-list, calendar-hide-window again.
10491         * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
10493 2012-03-30  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10495         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
10496         Check if file is a symlink (Bug#10489).
10498         * files.el (copy-directory): Likewise.
10500 2012-03-30  Chong Yidong  <cyd@gnu.org>
10502         * image.el (imagemagick-types-inhibit)
10503         (imagemagick-register-types): Doc fix.
10505 2012-03-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
10507         * textmodes/ispell.el (ispell-get-extended-character-mode):
10508         Disable extended-char-mode for hunspell.  hunspell does not support it
10509         and treats ~word as ordinary words in pipe mode.
10511 2012-03-30  Glenn Morris  <rgm@gnu.org>
10513         * tutorial.el (help-with-tutorial): Ensure local variables don't
10514         happen to make the buffer read-only.  (Bug#11127)
10516 2012-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10518         * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
10519         (perl-calculate-indent): Return `noindent' in strings.
10521 2012-03-28  Sam Steingold  <sds@gnu.org>
10523         * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
10524         instead of the broken adhockery which does not prevent calendar
10525         buffers from being displayed at random after exit.
10526         (calendar-window-list, calendar-hide-window): Remove the broken
10527         adhockery.
10529 2012-03-28  Glenn Morris  <rgm@gnu.org>
10531         * replace.el (query-replace-map): Doc fix.
10533 2012-03-28  Andreas Schwab  <schwab@linux-m68k.org>
10535         * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
10536         contents.  (Bug#11109)
10538 2012-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10540         * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
10541         (bug#11077).
10542         (avl-tree--check, avl-tree--check-node): New funs.
10544 2012-03-27  Martin Rudalics  <rudalics@gmx.at>
10546         * window.el (switch-to-visible-buffer): New option.
10547         (switch-to-prev-buffer, switch-to-next-buffer):
10548         Observe switch-to-visible-buffer.  Make sure that checking for a window
10549         showing a buffer already is done on the same frame.
10551 2012-03-27  Glenn Morris  <rgm@gnu.org>
10553         * startup.el (mail-host-address): Doc fix.
10555 2012-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10557         * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
10558         than 197 variables.
10560 2012-03-26  Ami Fischman  <ami@fischman.org>
10562         * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
10564 2012-03-26  Glenn Morris  <rgm@gnu.org>
10566         * files.el (save-buffers-kill-emacs): Doc fix.
10568         * startup.el (normal-top-level, command-line, command-line-1):
10569         Give them doc strings.
10571 2012-03-25  Eli Zaretskii  <eliz@gnu.org>
10573         * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
10574         of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
10576 2012-03-25  Chong Yidong  <cyd@gnu.org>
10578         * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
10579         theme if it was previously enabled before (Bug#11031).
10581         * cus-theme.el (custom-theme-write-faces): Retrieve current face
10582         spec with custom-face-get-current-spec if its :shown-value is not
10583         determined yet (Bug#9337).
10584         (customize-create-theme, custom-theme-revert): Doc fixes.
10586         * button.el (button-at): Minor addition to docstring.
10588 2012-03-24  Simon Leinen  <simon.leinen@gmail.com>
10590         * vc/vc.el (vc-merge): Fix a prompt.
10592 2012-03-24  Chong Yidong  <cyd@gnu.org>
10594         * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
10595         point (Bug#9623).
10597         * button.el (button-at): Minor addition to docstring.
10599 2012-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10601         * newcomment.el (comment-choose-indent): No space after BOL.
10603 2012-03-22  Sam Steingold  <sds@gnu.org>
10605         * window.el (switch-to-prev-buffer): Revert last patch because the
10606         bug turned out to be an advertised feature (Elisp manual 28.14).
10608 2012-03-22  Glenn Morris  <rgm@gnu.org>
10610         * vc/vc-bzr.el (vc-bzr-status-switches): New option.  (Bug#6724)
10611         (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
10613 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10615         * net/network-stream.el (network-stream-open-starttls): Make error
10616         message under Windows be less misleading.
10618 2012-03-22  Liang Wang  <netcasper@gmail.com>  (tiny change)
10620         * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
10621         understands (bug#9942).
10623 2012-03-22  Chong Yidong  <cyd@gnu.org>
10625         * simple.el (end-of-visible-line): Handle return value of
10626         next-single-property-change properly (Bug#9371).
10628 2012-03-22  Kenichi Handa  <handa@m17n.org>
10630         * international/quail.el (quail-insert-kbd-layout): Fix previous
10631         change.  To avoid unwanted bidi reordering, use
10632         bidi-string-mark-left-to-right instead of inserting LRO and PDF.
10634 2012-03-21  Dmitry Gutov  <dgutov@yandex.ru>
10636         * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
10637         (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
10638         (ruby-beginning-of-indent): Be more careful with the difference
10639         between word-boundary and symbol boundary.
10640         (ruby-mode-syntax-table): Make : a symbol constituent.
10642 2012-03-21  Andreas Politz  <politza@fh-trier.de>
10644         * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
10646 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10648         * progmodes/etags.el (tags-completion-at-point-function):
10649         Improve last fix.
10651         * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
10653 2012-03-21  Sam Steingold  <sds@gnu.org>
10655         * progmodes/etags.el (tags-completion-at-point-function):
10656         Avoid the error when point is inside the pattern.
10658 2012-03-21  John Yates  <john@yates-sheets.org>  (tiny change)
10660         * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
10661         line (Bug#10855).
10663 2012-03-21  Drew Adams  <drew.adams@oracle.com>
10665         * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
10667 2012-03-21  Anmol Khirbat  <anmol@khirbat.net>  (tiny change)
10669         * ido.el (ido-set-current-directory, ido-read-internal)
10670         (ido-choose-completion-string, ido-completion-help): Handle nil
10671         value of ido-completion-buffer (Bug#11008).
10673 2012-03-21  Sam Steingold  <sds@gnu.org>
10675         * window.el (switch-to-prev-buffer): Do not switch to a visible
10676         window previous buffer, just like with the frame previous buffers.
10678 2012-03-21  Chong Yidong  <cyd@gnu.org>
10680         * faces.el (make-face, make-empty-face, copy-face):
10681         * face-remap.el (face-remap-add-relative, face-remap-set-base):
10682         Doc fixes.
10684 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10686         * wid-edit.el (widget-complete-field): Remove (bug#11051).
10687         (widget-complete): Remove broken use of it.
10689 2012-03-20  Chong Yidong  <cyd@gnu.org>
10691         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10692         Use string-width and truncate-string-width to handle arbitrary
10693         characters.
10695 2012-03-20  Tassilo Horn  <tassilo@member.fsf.org>
10697         * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
10698         to draw rectangles, not squares.  (Regression introduced by revno
10699         2011-03-02T03:48:01Z!cyd@stupidchicken.com)
10701 2012-03-18  Chong Yidong  <cyd@gnu.org>
10703         * faces.el (face-spec-reset-face): Don't call display-graphic-p if
10704         it is not yet defined (for temacs).
10706 2012-03-18  Leo Liu  <sdl.web@gmail.com>
10708         * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
10709         prefix.
10711 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
10713         * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
10714         (ispell-choices-win-default-height, ispell-silently-savep)
10715         (ispell-dictionary-alist, ispell-encoding8-command)
10716         (ispell-check-version, ispell-aspell-find-dictionary)
10717         (ispell-valid-dictionary-list, ispell-words-keyword)
10718         (ispell-get-word, ispell-internal-change-dictionary)
10719         (ispell-region, ispell-skip-region-list)
10720         (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
10721         (ispell-process-line, ispell-minor-mode, ispell-minor-check)
10722         (ispell-message-text-end, ispell-message)
10723         (ispell-buffer-local-parsing): Doc fix.
10725 2012-03-13  Jambunathan K  <kjambunathan@gmail.com>
10727         * htmlfontify.el: Add support for code block fontification for ODT
10728         export (Bug #9914).
10729         (hfy-optimisations): Define new option
10730         `body-text-only'
10731         (hfy-fontify-buffer): Honor above setting.
10732         (hfy-begin-span, hfy-end-span): New routines factored out form
10733         `hfy-fontify-buffer'.
10734         (hfy-begin-span-handler, hfy-end-span-handler): New variables
10735         that permit insertion of custom tags.
10736         (hfy-fontify-buffer): Use above handlers.
10737         (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
10738         (hfy-face-to-css): Re-defined to be a variable.
10739         (hfy-compile-stylesheet): Modify.  Allow stylesheet to be built
10740         over multiple runs.  This is made possible by having the caller let
10741         bind a special variable `hfy-user-sheet-assoc'.
10742         (htmlfontify-string): New defun.
10743         (hfy-compile-face-map): Make sure that the last char in the
10744         buffer is correctly fontified.
10745         (hfy-face-resolve-face): Whitespace only change.
10747 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
10749         * textmodes/ispell.el (ispell-get-decoded-string): Make the error
10750         message more clear.
10752 2012-03-16  Leo Liu  <sdl.web@gmail.com>
10754         * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
10756 2012-03-16  Alan Mackenzie  <acm@muc.de>
10758         Further optimise the handling of large macros.
10760         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
10761         limit to a call of `c-literal-limits'.
10762         (c-determine-+ve-limit): New function.
10763         (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
10764         (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
10765         In CASE 5B, restrict a search limit to 500.
10766         (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
10768         * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
10769         Restrict macro bounds to +-500 from after-change's BEG END.
10771 2012-03-16  Leo Liu  <sdl.web@gmail.com>
10773         * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
10775 2012-03-16  Aaron S. Hawley  <Aaron.S.Hawley@gmail.com>
10777         * tar-mode.el (tar-mode): Fix saving by conditionally undoing
10778         `special-mode' setting of `buffer-read-only'.  (Bug#11010)
10780 2012-03-16  Glenn Morris  <rgm@gnu.org>
10782         * view.el (view-buffer, view-buffer-other-window)
10783         (view-buffer-other-frame): Doc fixes re special mode-class.
10785         * subr.el (eval-after-load): If named feature is provided not from
10786         a file, run after-load forms.  (Bug#10946)
10788         * calendar/calendar.el (calendar-insert-at-column):
10789         Handle non-unit-width characters a bit better.  (Bug#10978)
10791 2012-03-15  Chong Yidong  <cyd@gnu.org>
10793         * emacs-lisp/ring.el (ring-extend): New function.
10794         (ring-insert+extend): Extend the ring correctly (Bug#11019).
10796         * comint.el (comint-read-input-ring)
10797         (comint-add-to-input-history): Grow comint-input-ring lazily.
10799 2012-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10801         * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
10802         Fix up parsing of multiline twoarg non-paired elements (bug#11014).
10804         * imenu.el: Fix multiple inheritance breakage (bug#9199).
10805         (imenu-add-to-menubar): Don't add a redundant index.
10806         (imenu-update-menubar): Handle a dynamically composed keymap.
10808 2012-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10810         * mail/sendmail.el (mail-encode-header):
10811         Bind rfc2047-encode-encoded-words to nil.
10813 2012-03-13  Glenn Morris  <rgm@gnu.org>
10815         * calendar/calendar.el (calendar-string-spread):
10816         Handle non-unit-width characters a bit better.  (Bug#10978)
10818 2012-03-13  Leo Liu  <sdl.web@gmail.com>
10820         * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
10821         directory and file as argument (Bug#10822).
10823 2012-03-13  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
10825         * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
10826         For dynamically generated code, follow $PC.
10827         (gdb-disassembly-handler-custom): Handle no function name case.
10829 2012-03-13  Tim Landscheidt  <tim@tim-landscheidt.de>  (tiny change)
10831         * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
10832         * emulation/ws-mode.el (ws-query-replace):
10833         * sort.el (sort-regexp-fields):
10834         Fix missing trailing whitespace in interactive prompts.  (Bug#11002)
10836 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10838         * dabbrev.el: Fix cycle completion order (bug#10963).
10839         (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
10840         (dabbrev-completion): Don't use an obarray; provide
10841         a cycle-sort-function.
10843 2012-03-12  Leo Liu  <sdl.web@gmail.com>
10845         * simple.el (kill-new): Use equal-including-properties for comparison.
10846         (kill-do-not-save-duplicates): Doc fix.
10848 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10850         * dabbrev.el: Fix cycle completion (bug#10963).
10851         Use lexical binding and wrap to 80 columns.
10852         (dabbrev-completion): Delay computing the list of completions.
10854 2012-03-12  Kenichi Handa  <handa@m17n.org>
10856         * international/quail.el (quail-insert-kbd-layout): Surround each
10857         row by LRO and PDF instead of inserting many LRMs.  Pad the left
10858         and right of each non-spacing marks.  Insert invisible space
10859         between lower and upper characters to prevent composition.
10861 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10863         * minibuffer.el (minibuffer-complete): Don't get confused when the
10864         function is run twice via different commands (bug#10958).
10865         (complete-with-action): Fix docstring.
10867 2012-03-12  Chong Yidong  <cyd@gnu.org>
10869         * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
10870         (nxml-completion-at-point-function): New function.
10871         (nxml-mode): Use it.
10872         (nxml-bind-meta-tab-to-complete-flag): Default to t.
10874         * emacs-lisp/package.el (package-unpack, package-unpack-single):
10875         Load generated autoloads file before byte compiling (Bug#10970).
10876         (package--make-autoloads-and-compile): New helper fun.
10878 2012-03-12  Christopher Schmidt  <christopher@ch.ristopher.com>
10880         * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
10882 2012-03-11  Michael Albinus  <michael.albinus@gmx.de>
10884         * autorevert.el (auto-revert-handler): Ensure, that
10885         file-readable-p is applied only for local files or in
10886         auto-revert-tail-mode.
10888 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
10890         * server.el (server-eval-at): Handle non-tcp connections.
10891         Decode result string.
10893         * server.el (server-msg-size): New constant.
10894         (server-reply-print): New function.
10895         (server-eval-and-print): Use it.
10896         (server-eval-at): Use server-quote-arg and server-unquote-arg.
10897         Handle -print-nonl.
10899 2012-03-11  Christopher Schmidt  <christopher@ch.ristopher.com>
10901         * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
10902         (Bug#10987).
10904 2012-03-11  Chong Yidong  <cyd@gnu.org>
10906         * simple.el (goto-line): Doc fix (Bug#9938).
10908         * subr.el (save-window-excursion): Doc fix (Bug#9979).
10910         * dabbrev.el (dabbrev--find-expansion): Update progress reporter
10911         when finished (Bug#10963).
10913 2012-03-11  Martin Rudalics  <rudalics@gmx.at>
10915         * window.el (split-window-below): Fix bug in case where
10916         split-window-keep-point is nil (Bug#10971).
10918 2012-03-11  Juri Linkov  <juri@jurta.org>
10920         * replace.el (replace-highlight): Set isearch-word to nil
10921         unconditionally.  (Bug#10887)
10923 2012-03-10  Eli Zaretskii  <eliz@gnu.org>
10925         * net/mairix.el (mairix-replace-invalid-chars): Rename from
10926         mairix-replace-illegal-chars; all callers changed.  Don't remove
10927         ^, ~, and = characters: they are meaningful in mairix search specs.
10928         (mairix-widget-create-query): Add usage information about mairix
10929         search forms: negating words, searching for substrings, etc.
10931 2012-03-10  Jae-hyeon Park  <jae-hyeon.park@desy.de>  (tiny change)
10933         * international/fontset.el (font-encoding-alist): Add an entry for
10934         ksx1001 (Bug#5667).
10936 2012-03-10  Richard Stallman  <rms@gnu.org>
10938         * mail/sendmail.el (mail-encode-header):
10939         Set rfc2047-encode-encoded-words.
10941         * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
10943         * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
10944         view buffer means not swapped.
10945         (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
10946         (rmail-write-region-annotate): Error if real text has disappeared.
10948         * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
10950 2012-03-10  Chong Yidong  <cyd@gnu.org>
10952         * emulation/cua-rect.el (cua--init-rectangles):
10953         * emulation/cua-base.el (cua--init-keymaps):
10954         Add delete-forward-char to remappings (Bug#9666).
10956 2012-03-10  Martin Rudalics  <rudalics@gmx.at>
10958         * speedbar.el (speedbar-unhighlight-one-tag-line):
10959         Avoid unhighlighting due to frame switching (Bug#10275).
10961 2012-03-10  Chong Yidong  <cyd@gnu.org>
10963         * minibuffer.el (completion-in-region, completion-help-at-point):
10964         Give the completion field overlay a high priority (Bug#6830).
10966         * dired.el (dired-goto-file): Recognize absolute file name
10967         listings (Bug#7126).
10968         (dired-goto-file-1): New helper function.
10969         (dired-toggle-read-only): Inhibit warnings.
10971 2012-03-09  Michael Albinus  <michael.albinus@gmx.de>
10973         * net/dbus.el (dbus-property-handler): Return empty array if
10974         there are no properties.
10976 2012-03-09  Leo Liu  <sdl.web@gmail.com>
10978         * savehist.el (savehist-printable): Stricter check for string
10979         value (Bug#10937).
10981 2012-03-09  Eli Zaretskii  <eliz@gnu.org>
10983         * mail/smtpmail.el (smtpmail-send-it):
10984         Bind coding-system-for-write to *-unix, so that FCC files are kept in
10985         valid mbox format.
10987 2012-03-09  Glenn Morris  <rgm@gnu.org>
10989         * files.el (dir-locals-find-file):
10990         Don't check result is regular, readable.
10991         (dir-locals-read-from-file): Demote errors.
10993 2012-03-08  Eli Zaretskii  <eliz@gnu.org>
10995         * international/quail.el (quail-insert-kbd-layout):
10996         Insert invisible LRM characters before each character in a keyboard
10997         layout cell, to prevent their reordering by bidi display engine.
10998         For details, see the discussion in
10999         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
11001 2012-03-08  Alan Mackenzie  <acm@muc.de>
11003         * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
11004         the starting position; make it extend the marked region when
11005         invoked repeatedly - all under appropriate circumstances.
11006         Fixes bugs #5525, #10906.
11008 2012-03-08  Glenn Morris  <rgm@gnu.org>
11010         * files.el (locate-dominating-file, dir-locals-find-file):
11011         Undo 2012-03-06 change.
11013 2012-03-07  Eli Zaretskii  <eliz@gnu.org>
11015         * international/quail.el (quail-help):
11016         Force bidi-paragraph-direction be left-to-right.  See discussion in
11017         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
11018         for the reason.
11020 2012-03-07  Michael Albinus  <michael.albinus@gmx.de>
11022         Avoid superfluous registering of signals.  (Bug#10807)
11024         * notifications.el (notifications-on-action-object)
11025         (notifications-on-close-object): New defvars.
11026         (notifications-on-action-signal, notifications-on-closed-signal):
11027         Unregister the signal if not needed any longer.
11028         (notifications-notify): Register `notifications-action-signal' or
11029         `notifications-closed-signal', if :on-action or :on-close has been
11030         passed as argument.
11032 2012-03-07  Chong Yidong  <cyd@gnu.org>
11034         * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
11035         non-X platforms.
11037 2012-03-06  Glenn Morris  <rgm@gnu.org>
11039         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
11040         (x-disown-selection-internal, x-get-selection-internal):
11041         Doc fix (add arglist signatures).  (Bug#10783)
11043 2012-03-06  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
11045         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
11046         Handle breakpoints with no "type".
11048 2012-03-06  Glenn Morris  <rgm@gnu.org>
11050         * files.el (locate-dominating-file): Add optional predicate argument.
11051         (dir-locals-find-file): Make use of above change.
11053 2012-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>
11055         * info.el (Info-insert-dir): Also try "dir.gz".
11057 2012-03-06  Glenn Morris  <rgm@gnu.org>
11059         * files.el (dir-locals-find-file):
11060         Ignore non-readable or non-regular files.  (Bug#10928)
11062         * files.el (locate-dominating-file): Doc fix.
11064 2012-03-06  Adam Spiers  <emacs@adamspiers.org>  (tiny change)
11066         * calendar/calendar.el (calendar-set-mode-line):
11067         `getenv' returns a string.  (Bug#10951)
11069 2012-03-05  Leo Liu  <sdl.web@gmail.com>
11071         * simple.el (backward-delete-char-untabify): Constrain point to
11072         field (Bug#10939).
11074         * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
11076 2012-03-05  Chong Yidong  <cyd@gnu.org>
11078         * simple.el (count-words): If called from Lisp, return the word
11079         count, for symmetry with `count-lines'.  Arglist changed.
11080         (count-words--message): Args changed.  Consolidate counting code
11081         from count-words and count-words-region.
11082         (count-words-region): Caller changed.
11083         (count-lines-region): Make it an obsolete alias.
11085 2012-03-04  Tassilo Horn  <tassilo@member.fsf.org>
11087         * saveplace.el (save-place-to-alist)
11088         (save-place-ignore-files-regexp): Allow value nil to disable this
11089         feature.
11091 2012-03-04  Chong Yidong  <cyd@gnu.org>
11093         * faces.el (face-spec-reset-face): For the default face, reset the
11094         attributes to default values (Bug#10748).
11096 2012-03-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11098         * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
11099         previous patch: Check `message-send-mail-function', and not the
11100         default function (bug#10897).
11102 2012-03-04  Michael Albinus  <michael.albinus@gmx.de>
11104         * notifications.el (notifications-on-action-signal)
11105         (notifications-on-closed-signal): Check for unique service name of
11106         incoming event.  Fix error in removing entry.
11107         (top): Register for signals with wildcard service name.
11108         (notifications-notify): Use daemon unique service name for map entries.
11110 2012-03-04  Chong Yidong  <cyd@gnu.org>
11112         * cus-start.el: Make x-select-enable-clipboard-manager customizable.
11114 2012-03-04  Glenn Morris  <rgm@gnu.org>
11116         * abbrev.el (copy-abbrev-table, abbrev-table-p)
11117         (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
11118         (expand-abbrev, define-abbrev-table): Doc fixes.
11120 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11122         * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
11123         `message-default-send-mail-function' and not `send-mail-function'
11124         when doing the prompting for `sendmail-query-once' before sending
11125         in Message buffers (bug#10897).
11127         * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
11128         This is inconsistent with all the other stream functions, which leave
11129         the setting up to the higher levels (if so wanted) (bug#10931).
11131 2012-03-02  Alan Mackenzie  <acm@muc.de>
11133         Depessimize the handling of very large macros.
11135         * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
11136         (c-macro-cache-syntactic): New variables to implement a one
11137         element macro cache.
11138         (c-invalidate-macro-cache): New function.
11139         (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
11140         Adapt to use the new cache.
11141         (c-state-safe-place): Use better the cache of safe positions.
11142         (c-state-semi-nonlit-pos-cache)
11143         (c-state-semi-nonlit-pos-cache-limit):
11144         New variables for...
11145         (c-state-semi-safe-place): New function.  Here, in a macro is "safe".
11146         (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
11147         (c-in-literal, c-literal-limits, c-determine-limit-get-base):
11148         Use c-state-semi-safe-place.
11150         * progmodes/cc-langs.el (c-get-state-before-change-functions):
11151         Add c-invalidate-macro-cache to the C, C++, Obj entries.
11153 2012-03-02  Michael Albinus  <michael.albinus@gmx.de>
11155         * jka-compr.el (jka-compr-call-process):
11156         Apply `file-accessible-directory-p' only when the default directory is
11157         not remote.
11159 2012-03-01  Michael Albinus  <michael.albinus@gmx.de>
11161         * files.el (file-equal-p): Fix docstring.  Avoid unnecessary
11162         access of FILE2, if FILE1 does not exist.
11164         * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
11165         Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
11167         * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
11168         Add "PAGER=" to `process-environment'.
11170 2012-03-01  Michael R. Mauger  <mmaug@yahoo.com>
11172         * progmodes/sql.el: Bug fix
11173         (sql-get-login-ext): Save login values in globals.
11174         (sql-get-login): Use new version of `sql-get-login-ext'.
11175         (sql-interactive-mode): Set global `sql-connection' to nil.
11176         (sql-connect): Set global values for connection.
11177         (sql-product-interactive): Save global values as buffer local.
11179 2012-02-29  Leo Liu  <sdl.web@gmail.com>
11181         * abbrev.el (define-abbrevs): Reset sys to nil.
11183 2012-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11185         * files.el (file-equal-p): Rename from `files-equal-p'.
11186         Return nil when one or both files don't exist.
11187         (file-subdir-of-p): Now only top directory must exists,
11188         return nil if it doesn't.
11189         (copy-directory): No need to test with `file-subdir-of-p' after
11190         creating dir.
11191         * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
11192         to `file-equal-p'.
11194 2012-02-28  Glenn Morris  <rgm@gnu.org>
11196         * shell.el (shell-mode):
11197         * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
11198         * play/landmark.el (landmark-font-lock-face-O):
11199         * play/handwrite.el (handwrite):
11200         * play/gomoku.el (gomoku-O):
11201         * net/browse-url.el (browse-url-browser-display):
11202         * international/mule.el (define-charset):
11203         * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
11204         * filesets.el (filesets-find-file-delay):
11205         * eshell/em-xtra.el (eshell-xtra):
11206         * eshell/em-unix.el (eshell-grep):
11207         * emulation/viper.el (viper-mode):
11208         * emacs-lisp/regexp-opt.el (regexp-opt-group):
11209         * emacs-lisp/easymenu.el (easy-menu-define):
11210         * calendar/timeclock.el (timeclock-use-display-time):
11211         * bs.el (bs-mode):
11212         * bookmark.el (bookmark-save-flag):
11213         Doc fix (standardize possessive apostrophe usage).
11215 2012-02-27  Chong Yidong  <cyd@gnu.org>
11217         * emulation/viper-cmd.el (viper-intercept-ESC-key):
11218         Fix key-binding lookup for ESC key (Bug#9146).
11220         * font-lock.el (font-lock-specified-p): Rename from
11221         font-lock-spec-present.  Callers changed.
11223 2012-02-27  Daniel Hackney  <dan@haxney.org>
11225         * emacs-lisp/package.el (package-compute-transaction):
11226         Handle holding a package version to t in package-load-list.
11228 2012-02-26  Michael Albinus  <michael.albinus@gmx.de>
11230         * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
11231         (tramp-get-inode, tramp-get-device): Use cached values.
11233 2012-02-26  Alan Mackenzie  <acm@muc.de>
11235         Check there is a font-lock specification before doing initial
11236         fontification.
11238         * font-core.el (font-lock-mode): Move the conditional from
11239         :after-hook to font-lock-initial-fontify.
11240         (font-lock-default-function): Move the check for a specification
11241         to font-lock-spec-present.
11243         * font-lock.el (font-lock-initial-fontify): Call ...
11244         (font-lock-spec-present): New function.
11246 2012-02-26  Jim Blandy  <jimb@red-bean.com>
11248         * progmodes/gdb-mi.el (gdb-mi-quote): New function.
11249         (gdb-send): Apply it to the operand of the '-interpreter-exec
11250         console' command, so that we can pass arguments with (say) quotes
11251         in them.  Store exact string sent in gdb-debug-log (Bug#10765).
11253 2012-02-26  Chong Yidong  <cyd@gnu.org>
11255         * help-fns.el (describe-function-1): Clarify description of
11256         remapping (Bug#10844).
11258         * files.el (files-equal-p): Doc fix.
11259         (file-subdir-of-p): Doc fix.  Convert loop macro to plain Lisp,
11260         and quit the loop once a mismatch is found.
11262 2012-02-25  Juanma Barranquero  <lekktu@gmail.com>
11264         * bs.el (bs--show-with-configuration): Don't throw an error
11265         if the window cannot be split; otherwise, subsequent calls to
11266         bs-show fail, restoring a stale window config.  (Bug#10882)
11268 2012-02-25  Jan Djärv  <jan.h.d@swipnet.se>
11270         * term/ns-win.el (global-map): Bind ns-drag-file to
11271         ns-find-file (Bug#5855, Bug#10050).
11273 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
11275         * calendar/parse-time.el (parse-time-string): Allow extractor to
11276         return nil.
11278 2012-02-25  Michael Albinus  <michael.albinus@gmx.de>
11280         * net/tramp.el (tramp-file-name-for-operation):
11281         Add `files-equal-p' and `file-subdir-of-p'.
11283         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
11284         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
11285         Add COPY-CONTENTS argument.
11287 2012-02-25  Chong Yidong  <cyd@gnu.org>
11289         Add custom groups for VC backends, for consistency with vc-bzr.
11291         * vc/vc-arch.el (vc-arch):
11292         * vc/vc-cvs.el (vc-cvs):
11293         * vc/vc-git.el (vc-git):
11294         * vc/vc-hg.el (vc-hg):
11295         * vc/vc-mtn.el (vc-mtn):
11296         * vc/vc-rcs.el (vc-rcs):
11297         * vc/vc-sccs.el (vc-sccs):
11298         * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
11299         All relevant defcustoms reassigned.
11301 2012-02-25  Chong Yidong  <cyd@gnu.org>
11303         * newcomment.el (comment-styles): Add autoload (Bug#10868).
11305         * term/x-win.el (x-initialize-window-system): Reduce default for
11306         x-selection-timeout to 5 seconds (Bug#8869).
11308 2012-02-24  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11310         * files.el (files-equal-p, file-subdir-of-p): New functions.
11311         (copy-directory): Error when trying to copy a directory on itself.
11312         Add missing copy-contents arg to tramp handler.
11313         * dired-aux.el (dired-copy-file-recursive): Same.
11314         (dired-create-files): Modify destination when source is equal to
11315         dest when copying files.
11316         Return also when dest is a subdir of source.  (Bug#10489)
11318 2012-02-24  Michael Albinus  <michael.albinus@gmx.de>
11320         * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
11321         (Bug#10874)
11323 2012-02-23  Alan Mackenzie  <acm@muc.de>
11325         * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
11326         parameter "after-hook:" to allow the expansion to run code after
11327         the execution of the mode hooks.
11329         * font-lock.el (font-lock-initial-fontify): New function extracted
11330         from font-lock-mode-internal.
11332         * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
11333         :after-hook.
11335 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11337         * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
11338         (completion--cache-all-sorted-completions): New function.
11339         (completion-all-sorted-completions): Use it.
11340         (completion--do-completion, minibuffer-force-complete):
11341         Use it to re-instate the flush hook.
11343         * icomplete.el (icomplete-completions): Replace last fix with a better
11344         one (bug#10850).
11346 2012-02-23  Dmitry Gutov  <dgutov@yandex.ru>
11348         * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
11349         when it might call us back infinitely (bug#10797).
11351 2012-02-23  Glenn Morris  <rgm@gnu.org>
11353         * minibuffer.el (completion-category-overrides): Doc fix.
11355 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11357         * minibuffer.el (completion-table-with-context): Fix inf-loop.
11358         Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
11360 2012-02-23  Glenn Morris  <rgm@gnu.org>
11362         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
11363         (authors-obsolete-files-regexps, authors-ignored-files)
11364         (authors-ambiguous-files, authors-renamed-files-alist):
11365         Add more entries.
11367 2012-02-23  Juri Linkov  <juri@jurta.org>
11369         * isearch.el (isearch-occur): Sync interactive spec with occur's
11370         new feature in `occur-read-primary-args'.  Doc fix.  (Bug#10705)
11372         * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
11374 2012-02-22  Juri Linkov  <juri@jurta.org>
11376         * international/mule-cmds.el (read-char-by-name): Use \` and \'.
11377         (ucs-insert): Doc fix.  Check for hex digits in the string.
11378         Don't display `nil' in the error message.  (Bug#10857)
11380 2012-02-22  Alan Mackenzie  <acm@muc.de>
11382         * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
11384 2012-02-22  Glenn Morris  <rgm@gnu.org>
11386         * ffap.el (ffap-c-path):
11387         * man.el (Man-header-file-path): Handle multiarch.  (Bug#10702)
11389 2012-02-22  Chong Yidong  <cyd@gnu.org>
11391         * custom.el (load-theme): Doc fix.
11393 2012-02-22  Glenn Morris  <rgm@gnu.org>
11395         * dired-x.el (dired-guess-shell-alist-default):
11396         Remove escape sequences from nroff output.  (Bug#172)
11398 2012-02-21  Glenn Morris  <rgm@gnu.org>
11400         * vc/emerge.el (emerge-defvar-local):
11401         Set `permanent-local' property rather than unused `preserved'.
11403         * textmodes/picture.el (picture-delete-char): New alias.
11404         (picture-mode-map): Use it.  (Bug#10860)
11405         (picture-mode): Doc fix.
11407 2012-02-21  Juanma Barranquero  <lekktu@gmail.com>
11409         * newcomment.el (uncomment-region-default): Remove unused binding.
11411 2012-02-21  Glenn Morris  <rgm@gnu.org>
11413         * textmodes/picture.el (picture-motion, picture-motion-reverse)
11414         (picture-self-insert, picture-tab-chars): Doc fix.
11415         (picture-mode-map): Fix C-a, C-e.
11417 2012-02-20  Glenn Morris  <rgm@gnu.org>
11419         * emacs-lisp/authors.el (authors-aliases): Add another entry.
11421 2012-02-20  Leo Liu  <sdl.web@gmail.com>
11423         * icomplete.el (icomplete-completions): Check FROM arg before
11424         passing to substring (Bug#10850).
11426 2012-02-19  Chong Yidong  <cyd@gnu.org>
11428         * comint.el: Require ansi-color.
11429         (comint-output-filter-functions): Add ansi-color-process-output.
11431         * ansi-color.el: Don't set comint-output-filter-functions; it is
11432         now in the initial value defined in comint.el.
11433         (ansi-color-apply-face-function): New variable.
11434         (ansi-color-apply-on-region): Use it.
11435         (ansi-color-apply-overlay-face): New function.
11437         * shell.el (shell): No need to require ansi-color.
11438         (shell-mode): Use ansi-color-apply-face-function to highlight
11439         color escapes using font-lock-face property (Bug#10835).
11441 2012-02-19  Chong Yidong  <cyd@gnu.org>
11443         * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
11444         mode-line formats (Bug#10839).
11446 2012-02-18  Glenn Morris  <rgm@gnu.org>
11448         * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
11450         * mail/undigest.el (unforward-rmail-message): Doc fix.
11452         * saveplace.el (save-place-ignore-files-regexp): Add :version.
11454 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
11456         * international/characters.el (script-list): Sync with the latest
11457         Unicode Character Database.
11459 2012-02-18  Andreas Schwab  <schwab@linux-m68k.org>
11461         * international/titdic-cnv.el: Remove duplicate coding tag.
11462         * language/cham.el: Likewise.
11463         * language/tai-viet.el: Likewise.
11465 2012-02-18  Glenn Morris  <rgm@gnu.org>
11467         * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
11468         * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
11469         (calendar-bahai-all-holidays-flag, calendar-other-dates):
11470         * calendar/diary-lib.el (diary-abbreviated-year-flag):
11471         * calendar/holidays.el (holiday-bahai-holidays)
11472         (calendar-holidays, list-holidays):
11473         Use utf-8 Bahá'í in doc-strings, menus, etc.
11475 2012-02-17  Tassilo Horn  <tassilo@member.fsf.org>
11477         * saveplace.el (save-place-ignore-files-regexp): New variable
11478         allowing for excluding files from saving their location of point.
11479         The default value matches the temporary commit message editing
11480         files from Git, SVN, Bazaar, and Mercurial.
11481         (save-place-to-alist): Use it.
11483 2012-02-17  Lawrence Mitchell  <wence@gmx.li>
11484             Stefan Monnier  <monnier@iro.umontreal.ca>
11486         * newcomment.el (uncomment-region-default): Don't leave extra space
11487         when an arg is provided (bug#8150).
11489 2012-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
11491         * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
11493 2012-02-17  Glenn Morris  <rgm@gnu.org>
11495         * net/socks.el: Require network-stream.  (Bug#10599)
11497 2012-02-17  Kenichi Handa  <handa@m17n.org>
11499         * international/charprop.el:
11500         * international/uni-name.el:
11501         * international/uni-old-name.el:
11502         * international/uni-comment.el: Regenerate.
11504 2012-02-16  Glenn Morris  <rgm@gnu.org>
11506         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
11507         Interactively in calendar buffer, give an error if not on a date.
11509 2012-02-15  Glenn Morris  <rgm@gnu.org>
11511         * shell.el (shell-delimiter-argument-list):
11512         Revert 2011-02-17 change.  (Bug#8027)
11514 2012-02-15  Chong Yidong  <cyd@gnu.org>
11516         * minibuffer.el (completion-at-point-functions): Doc fix.
11518         * custom.el (defcustom): Doc fix; note use of defvar.
11520 2012-02-15  Glenn Morris  <rgm@gnu.org>
11522         * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
11523         Doc fixes.
11525 2012-02-14  Glenn Morris  <rgm@gnu.org>
11527         * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
11529 2012-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
11531         * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
11532         way the ports list is computed.
11533         (smtpmail-query-smtp-server): Prompt the user for a port number if
11534         we can't connect to any of the standard ports (bug#10810).
11536 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11538         * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
11540 2012-02-13  Glenn Morris  <rgm@gnu.org>
11542         * minibuffer.el (read-file-name): Doc fix.  (Bug#10798)
11544 2012-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
11546         * net/gnutls.el (gnutls-trustfiles): New variable.
11547         (gnutls-negotiate): Use it.
11549 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
11551         * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
11552         does its stuff if Gnus is running.
11554 2012-02-13  Alan Mackenzie  <acm@muc.de>
11556         Fix a loop in c-set-fl-decl-start.
11558         * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
11559         c-backward-syntactic-ws actually moves backwards.
11561 2012-02-13  Leo Liu  <sdl.web@gmail.com>
11563         * net/rcirc.el (rcirc-markup-attributes): Move point to the
11564         beginning so that all \C-o chars are removed.
11566 2012-02-12  Teodor Zlatanov  <tzz@lifelogs.com>
11568         * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
11570 2012-02-12  Alan Mackenzie  <acm@muc.de>
11572         Fix infinite loop with long macros.
11573         * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
11575 2012-02-12  Chong Yidong  <cyd@gnu.org>
11577         * window.el (display-buffer): Doc fix (Bug#10785).
11579 2012-02-12  Glenn Morris  <rgm@gnu.org>
11581         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
11582         (x-disown-selection-internal, x-get-selection-internal):
11583         Sync docs with the xselect.c versions.
11585         * allout-widgets.el: Add missing license notice.
11587 2012-02-11  Glenn Morris  <rgm@gnu.org>
11589         * select.el (x-get-selection-internal, x-own-selection-internal)
11590         (x-disown-selection-internal):
11591         * x-dnd.el (x-get-selection-internal): Update declarations.
11593         * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
11595         * window.el (window-sides-slots):
11596         * tool-bar.el (tool-bar-position):
11597         * term/xterm.el (xterm-extra-capabilities):
11598         * ses.el (ses-self-reference-early-detection):
11599         * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
11600         (verilog-auto-wire-type)
11601         (verilog-auto-delete-trailing-whitespace)
11602         (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
11603         (verilog-auto-tieoff-declaration):
11604         * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
11605         (sql-oracle-statement-starters, sql-oracle-scan-on):
11606         * progmodes/prolog.el (prolog-align-comments-flag)
11607         (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
11608         (prolog-left-indent-regexp, prolog-paren-indent-p)
11609         (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
11610         (prolog-types, prolog-mode-specificators)
11611         (prolog-determinism-specificators, prolog-directives)
11612         (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
11613         (prolog-electric-dot-flag)
11614         (prolog-electric-dot-full-predicate-template)
11615         (prolog-electric-underscore-flag, prolog-electric-tab-flag)
11616         (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
11617         (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
11618         (prolog-program-switches, prolog-prompt-regexp)
11619         (prolog-debug-on-string, prolog-debug-off-string)
11620         (prolog-trace-on-string, prolog-trace-off-string)
11621         (prolog-zip-on-string, prolog-zip-off-string)
11622         (prolog-use-standard-consult-compile-method-flag)
11623         (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
11624         (prolog-imenu-max-lines, prolog-info-predicate-index)
11625         (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
11626         (prolog-char-quote-workaround):
11627         * progmodes/cc-vars.el (c-defun-tactic):
11628         * net/tramp.el (tramp-encoding-command-interactive)
11629         (tramp-local-end-of-line):
11630         * net/soap-client.el (soap-client):
11631         * net/netrc.el (netrc-file):
11632         * net/gnutls.el (gnutls):
11633         * minibuffer.el (completion-category-overrides)
11634         (completion-cycle-threshold)
11635         (completion-pcm-complete-word-inserts-delimiters):
11636         * man.el (Man-name-local-regexp):
11637         * mail/feedmail.el (feedmail-display-full-frame):
11638         * international/characters.el (glyphless-char-display-control):
11639         * eshell/em-ls.el (eshell-ls-date-format):
11640         * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
11641         (lisp-lambda-list-keyword-parameter-indentation)
11642         (lisp-lambda-list-keyword-parameter-alignment):
11643         * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
11644         * dired-x.el (dired-omit-verbose):
11645         * cus-theme.el (custom-theme-allow-multiple-selections):
11646         * calc/calc.el (calc-highlight-selections-with-faces)
11647         (calc-lu-field-reference, calc-lu-power-reference)
11648         (calc-note-threshold):
11649         * battery.el (battery-mode-line-limit):
11650         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
11651         (archive-7z-update):
11652         * allout.el (allout-prefixed-keybindings)
11653         (allout-unprefixed-keybindings)
11654         (allout-inhibit-auto-fill-on-headline)
11655         (allout-flattened-numbering-abbreviation):
11656         * allout-widgets.el (allout-widgets-auto-activation)
11657         (allout-widgets-icons-dark-subdir)
11658         (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
11659         (allout-widgets-theme-dark-background)
11660         (allout-widgets-theme-light-background)
11661         (allout-widgets-item-image-properties-emacs)
11662         (allout-widgets-item-image-properties-xemacs)
11663         (allout-widgets-run-unit-tests-on-load)
11664         (allout-widgets-time-decoration-activity)
11665         (allout-widgets-hook-error-post-time)
11666         (allout-widgets-track-decoration):
11667         Add missing :version tags to new defcustoms and defgroups.
11669         * progmodes/sql.el (sql-ansi-statement-starters)
11670         (sql-oracle-statement-starters): Add custom type.
11672         * progmodes/prolog.el: Remove leading '*' from defcustom docs.
11673         (prolog-system-version): Give it a type.
11675 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
11677         * term/pc-win.el (x-select-text, x-selection-owner-p)
11678         (x-own-selection-internal, x-disown-selection-internal)
11679         (x-get-selection-internal): Sync doc strings and argument lists
11680         with xselect.c, common-win.el and x-win.el.  (Bug#10783)
11682 2012-02-11  Leo Liu  <sdl.web@gmail.com>
11684         * progmodes/python.el (python-end-of-statement): Fix infinite
11685         loop.  (Bug#10788)
11687 2012-02-10  Glenn Morris  <rgm@gnu.org>
11689         * international/mule-cmds.el (unify-8859-on-encoding-mode)
11690         (unify-8859-on-decoding-mode): Properly mark as obsolete.
11692 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
11694         * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
11695         about SMTP before checking the From header.
11697         * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
11698         into own function for reuse by emacsbug.el.
11700 2012-02-10  Leo Liu  <sdl.web@gmail.com>
11702         * subr.el (condition-case-unless-debug): Rename from
11703         condition-case-no-debug.  All callers changed.
11704         (with-demoted-errors): Fix caller.
11706         * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
11707         * nxml/rng-valid.el (rng-do-some-validation):
11708         * emacs-lisp/package.el (package-refresh-contents)
11709         (package-menu-execute):
11710         * desktop.el (desktop-create-buffer):
11711         * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
11713 2012-02-10  Glenn Morris  <rgm@gnu.org>
11715         * textmodes/bibtex.el:
11716         Add missing :version tags for new/changed defcustoms.
11718         * files.el (remote-file-name-inhibit-cache): Doc fixes.
11720 2012-02-09  Lars Ingebrigtsen  <larsi@rusty>
11722         * mail/smtpmail.el (smtpmail-user-mail-address): New function.
11723         (smtpmail-via-smtp): Use it, or fall back on the From address.
11724         (smtpmail-send-it): Ditto.
11726 2012-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
11728         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
11729         Don't fallback on byte-compile-defvar.  Optimize (defvar foo) away.
11730         (byte-compile-tmp-var): New const.
11731         (byte-compile-defvar): Use it to minimize .elc size.
11732         Just use `defvar' rather than simulate it (bug#10761).
11734 2012-02-09  Glenn Morris  <rgm@gnu.org>
11736         * files.el (rename-uniquely): Doc fix.  (Bug#3806)
11738         * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
11739         Add :version tags.
11741         * progmodes/compile.el (compilation-error-screen-columns)
11742         (compilation-first-column, compilation-filter-start): Doc fixes.
11744         * vc/log-view.el (log-view-toggle-entry-display):
11745         * vc/vc.el (vc-merge, vc-pull): Doc fixes.
11747         * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
11748         (report-emacs-bug-can-use-xdg-email):
11749         (report-emacs-bug-insert-to-mailer): Doc fixes.
11750         (report-emacs-bug): Message fix.
11752         * net/browse-url.el (browse-url-can-use-xdg-open)
11753         (browse-url-xdg-open): Doc fixes.
11755         * electric.el (electric-indent-mode, electric-pair-mode)
11756         (electric-layout-rules, electric-layout-mode): Doc fixes.
11757         (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
11759 2012-02-08  Martin Rudalics  <rudalics@gmx.at>
11761         * server.el (server-unselect-display): Don't inadvertently kill
11762         the current buffer.  (Bug#10729)
11764 2012-02-08  Glenn Morris  <rgm@gnu.org>
11766         * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
11767         (sql-list-table): Doc fixes.
11769         * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
11770         Comment out (does nothing).
11772         * completion.el (dynamic-completion-mode):
11773         * dirtrack.el (dirtrack-debug-mode):
11774         * electric.el (electric-layout-mode):
11775         * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
11776         * face-remap.el (text-scale-mode, buffer-face-mode):
11777         * iimage.el (iimage-mode):
11778         * image-mode.el (image-transform-mode):
11779         * minibuffer.el (completion-in-region-mode):
11780         * scroll-lock.el (scroll-lock-mode):
11781         * simple.el (next-error-follow-minor-mode):
11782         * tar-mode.el (tar-subfile-mode):
11783         * tooltip.el (tooltip-mode):
11784         * vcursor.el (vcursor-use-vcursor-map):
11785         * wid-browse.el (widget-minor-mode):
11786         * emulation/tpu-edt.el (tpu-edt-mode):
11787         * emulation/tpu-extras.el (tpu-cursor-free-mode):
11788         * international/iso-ascii.el (iso-ascii-mode):
11789         * language/thai-util.el (thai-word-mode):
11790         * mail/supercite.el (sc-minor-mode):
11791         * net/goto-addr.el (goto-address-mode):
11792         * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
11793         * progmodes/cwarn.el (cwarn-mode):
11794         * progmodes/flymake.el (flymake-mode):
11795         * progmodes/glasses.el (glasses-mode):
11796         * progmodes/hideshow.el (hs-minor-mode):
11797         * progmodes/pascal.el (pascal-outline-mode):
11798         * textmodes/enriched.el (enriched-mode):
11799         * vc/smerge-mode.el (smerge-mode):
11800         Doc fixes (minor mode argument).
11802 2012-02-07  Eli Zaretskii  <eliz@gnu.org>
11804         * ls-lisp.el (ls-lisp-sanitize): New function.
11805         (ls-lisp-insert-directory): Use it to fix or remove any elements
11806         in file-alist with missing attributes.  (Bug#4673)
11808 2012-02-07  Alan Mackenzie  <acm@muc.de>
11810         Fix spurious recognition of c-in-knr-argdecl.
11812         * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
11813         putative K&R region.
11815 2012-02-07  Alan Mackenzie  <acm@muc.de>
11817         * progmodes/cc-engine.el (c-forward-objc-directive):
11818         Prevent looping in "#pragma mark @implementation".
11820 2012-02-07  Michael Albinus  <michael.albinus@gmx.de>
11822         * notifications.el (notifications-on-closed-signal): Make `reason'
11823         optional.  (Bug#10744)
11825 2012-02-07  Glenn Morris  <rgm@gnu.org>
11827         * emacs-lisp/easy-mmode.el (define-minor-mode):
11828         Doc fixes for the macro and the mode it defines.
11830         * image.el (imagemagick-types-inhibit): Doc fix.
11832         * cus-start.el (imagemagick-render-type): Add it.
11834 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
11836         * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
11837         Set the default at load time, too, so that `font-lock-fontify-buffer'
11838         can be called without setting up the entire mode first.  This fixes
11839         a bug in `mm-inline-text' with C MIME parts.
11841 2012-02-06  Chong Yidong  <cyd@gnu.org>
11843         * simple.el (list-processes--refresh): Delete exited processes
11844         (Bug#8094).
11846         * comint.el (comint-next-prompt): next-single-char-property-change
11847         and prev-single-char-property-change never return nil (Bug#8657).
11849         * custom.el (defcustom): Doc fix (Bug#9711).
11851 2012-02-05  Chong Yidong  <cyd@gnu.org>
11853         * cus-edit.el (custom-variable-reset-backup): Quote the value
11854         before storing it in the customized-value property (Bug#6712).
11855         (custom-display): Add a customization type tag.
11856         (custom-buffer-create-internal): Improve tooltip message.
11858         * wid-edit.el (widget-field-value-get): New optional arg to
11859         suppress trailing whitespace truncation.
11860         (character): Use it (Bug#2689).
11862 2012-02-05  Andreas Schwab  <schwab@linux-m68k.org>
11864         * progmodes/gud.el (gud-pv): Use pv instead of pv1.
11865         * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
11867 2012-02-05  Chong Yidong  <cyd@gnu.org>
11869         * cus-edit.el (custom-variable-value-create): For mismatched
11870         types, show the current value (Bug#7600).
11872         * custom.el (defcustom): Doc fix.
11874 2012-02-05  Glenn Morris  <rgm@gnu.org>
11876         * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
11878 2012-02-05  Juanma Barranquero  <lekktu@gmail.com>
11880         * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
11881         (pp-buffer): Use `ignore-errors', `looking-at-p'.
11882         (pp-last-sexp): Use `looking-at-p'.
11884 2012-02-04  Glenn Morris  <rgm@gnu.org>
11886         * files.el (revert-buffer):
11887         Doc fix (mention revert-buffer-in-progress-p).
11889         * emacs-lisp/ert-x.el (ert-simulate-command):
11890         Check deferred-action-list (which is obsolete) is bound.
11892         * subr.el (with-wrapper-hook): Doc fixes.
11894         * simple.el (filter-buffer-substring-functions)
11895         (buffer-substring-filters, filter-buffer-substring): Doc fixes.
11897 2012-02-04  Lars Ljung  <lars@matholka.se>  (tiny change)
11899         * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
11900         anywhere in shell-file-name, not just at the beginning.  (Bug#10523)
11902 2012-02-04  Leo Liu  <sdl.web@gmail.com>
11904         * emacs-lisp/smie.el: Fix dead link (Bug#10711).
11906 2012-02-04  Glenn Morris  <rgm@gnu.org>
11908         * image.el (image-extension-data): Add obsolete alias.
11910         * isearch.el (isearch-update): Doc fix.
11912         * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
11914         * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
11916 2012-02-03  Glenn Morris  <rgm@gnu.org>
11918         * image.el (image-animated-p): Doc fix.  Use image-animated-types.
11919         (image-animate-timeout): Doc fix.
11921         * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
11923 2012-02-02  Glenn Morris  <rgm@gnu.org>
11925         * server.el (server-auth-dir): Doc fix.
11926         (server-eval-at): Doc fix.  Give an explicit error if !server-use-tcp.
11928         * subr.el (run-mode-hooks): Doc fix.
11930 2012-02-02  Juri Linkov  <juri@jurta.org>
11932         * image-mode.el (image-toggle-display-image): Remove tautological
11933         `major-mode' from the `derived-mode-p' test.
11935 2012-02-02  Kenichi Handa  <handa@m17n.org>
11937         * composite.el (compose-region): Cancel previous change.
11939 2012-02-02  Kenichi Handa  <handa@m17n.org>
11941         * composite.el (compose-region, compose-string): Signal error for
11942         a null string component (Bug#6988).
11944 2012-02-01  Chong Yidong  <cyd@gnu.org>
11946         * view.el (view-buffer-other-window, view-buffer-other-frame):
11947         Handle special modes like view-buffer (Bug#10650).
11948         (view-buffer): Simplify.
11950         * frame.el (set-frame-font): Tweak meaning of third argument.
11952         * dynamic-setting.el (font-setting-change-default-font):
11953         Use set-frame-font (Bug#9982).
11955 2012-02-01  Glenn Morris  <rgm@gnu.org>
11957         * progmodes/compile.el (compilation-internal-error-properties):
11958         Respect compilation-first-column in the "*compilation*" buffer.
11960         * emacs-lisp/easy-mmode.el (define-minor-mode):
11961         Relax :variable's test for a named function.
11963 2012-01-31  Alan Mackenzie  <acm@muc.de>
11965         * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
11966         off by one error.
11968 2012-01-31  Chong Yidong  <cyd@gnu.org>
11970         * frame.el (set-frame-font): New arg ALL-FRAMES.
11972         * menu-bar.el (menu-set-font): Use set-frame-font.
11974         * faces.el (face-spec-reset-face): Don't apply unspecified
11975         attribute values to the default face.
11977 2012-01-31  Juanma Barranquero  <lekktu@gmail.com>
11979         * progmodes/cwarn.el (cwarn): Remove dead link.
11980         (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
11981         Remove * from defcustom docstrings.
11982         (turn-on-cwarn-mode): Make obsolete.
11983         (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
11984         (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
11986 2012-01-31  Glenn Morris  <rgm@gnu.org>
11988         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
11989         Fix :variable handling of mode a symbol not equal to modefun.
11990         Allow named functions to be used as the cdr of :variable.
11992 2012-01-30  Glenn Morris  <rgm@gnu.org>
11994         * emacs-lisp/authors.el (authors-fixed-entries):
11995         Remove reference to deleted file rnewspost.el.
11997 2012-01-29  Juanma Barranquero  <lekktu@gmail.com>
11999         * window.el (window-with-parameter): Remove unused variable `windows'.
12000         (window--side-check): Remove unused variable `code'.
12001         (window--resize-siblings): Remove unused variable `first'.
12002         (adjust-window-trailing-edge): Remove unused variable `failed'.
12003         (window-deletable-p, window--delete): Remove unused variable `buffer'.
12004         Use `let', not `let*'.
12005         (balance-windows-2): Remove unused variable `found'.
12006         (window--state-put-2): Remove unused variable `splits'.
12007         (window-state-put): Remove unused variable `selected'.
12008         (same-window-p): Use `string-match-p'.
12009         (display-buffer-assq-regexp): Remove unused variable `value'.
12010         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
12011         Mark argument ALIST as ignored.
12012         (pop-to-buffer): Remove unused variable `old-window'.
12014 2012-01-29  Eli Zaretskii  <eliz@gnu.org>
12016         * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
12017         and .lzma compressed files.
12019 2012-01-29  Chong Yidong  <cyd@gnu.org>
12021         * frame.el (window-system-default-frame-alist): Doc fix.
12023         * dynamic-setting.el (font-setting-change-default-font): Don't
12024         change the default face if SET-FONT argument is non-nil (Bug#9982).
12026 2012-01-29  Samuel Bronson  <naesten@gmail.com>
12028         * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
12030 2012-01-29  Syver Enstad  <syver.enstad@cisco.com>  (tiny change)
12032         * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
12033         breakpoints in files outside current directory (Bug#6098).
12035 2012-01-29  Chong Yidong  <cyd@gnu.org>
12037         * progmodes/python.el: Require ansi-color at top-level.
12039         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
12040         Define and use in Emacs Lisp mode (Bug#9360).
12041         (lisp-mode-abbrev-table): Add doc.
12042         (lisp-mode-variables): Don't set local-abbrev-table.
12043         (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
12045 2012-01-28  Roland Winkler  <winkler@gnu.org>
12047         * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
12049 2012-01-28  Roland Winkler  <winkler@gnu.org>
12051         * textmodes/bibtex.el (bibtex-entry-alist): New function.
12052         (bibtex-set-dialect): Use it.  Either set global values of
12053         dialect-dependent variables or bind these variables buffer-locally
12054         (Bug#10254).
12055         (bibtex-mode): Call bibtex-set-dialect via
12056         hack-local-variables-hook.
12057         (bibtex-dialect): Update docstring.
12058         Add safe-local-variable predicate.
12059         (bibtex-entry-alist, bibtex-field-alist): Initialize via
12060         bibtex-set-dialect.
12061         (bibtex-mode-map): Define menu for each dialect.
12062         (bibtex-entry): Fix docstring.
12064 2012-01-28  Chong Yidong  <cyd@gnu.org>
12066         * eshell/esh-arg.el (eshell-quote-argument): New function.
12068         * eshell/esh-ext.el (eshell-invoke-batch-file):
12069         * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
12070         first arg to eshell-parse-command (Bug#10523).
12072 2012-01-28  Drew Adams  <drew.adams@oracle.com>
12074         * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
12075         `default-directory' is non-nil.
12077 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
12079         * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
12080         line that displays system-configuration-options.  (Bug#9924)
12082 2012-01-28  Drew Adams  <drew.adams@oracle.com>
12084         * descr-text.el (describe-char): Show information about POS, in
12085         addition to information about the character at POS.  Improve and
12086         update the doc string.  Change "code point" to "code point in
12087         charset", to avoid confusion with the character's Unicode code
12088         point shown above that.  (Bug#10129)
12090 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
12092         * descr-text.el (describe-char): Show the raw character, not only
12093         its display form at POS.  Suggested by Kenichi Handa <handa@m17n.org>.
12094         See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
12095         for the reasons.
12097 2012-01-28  Phil Hagelberg  <phil@hagelb.org>
12099         * emacs-lisp/package.el (package-install):
12100         Run package-refresh-contents if there is no archive yet (Bug#9798).
12102 2012-01-28  Chong Yidong  <cyd@gnu.org>
12104         * emacs-lisp/package.el (package-maybe-load-descriptor):
12105         New function, split from package-maybe-load-descriptor.
12106         (package-maybe-load-descriptor): Use it.
12107         (package-download-transaction): Fully load required packages
12108         inside the loop, so that `require' calls work (Bug#10593).
12109         (package-install): No need to call package-initialize now.
12111 2012-01-28  Chong Yidong  <cyd@gnu.org>
12113         * simple.el (deactivate-mark): Doc fix (Bug#8614).
12115         * tooltip.el (tooltip-mode): Doc fix.
12116         (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
12118         * frame.el (set-cursor-color): Doc fix (Bug#352).
12120         * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
12121         (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
12123         * cus-edit.el (custom-buffer-create-internal): Fix search button
12124         action (Bug#10542).
12125         (customize-unsaved, customize-saved): Doc fix (Bug#10541).
12127 2012-01-27  Eduard Wiebe  <usenet@pusto.de>
12129         * dired.el (dired-mark-files-regexp):
12130         Include any subdirectory components.  (Bug#10445)
12132 2012-01-27  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
12134         * pcmpl-unix.el (pcmpl-ssh-known-hosts):
12135         Handle [host]:port syntax.  (Bug#10533)
12137 2012-01-27  Alex Harsanyi  <harsanyi@mac.com>
12139         * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
12141 2012-01-26  Glenn Morris  <rgm@gnu.org>
12143         * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
12144         * term.el (term-raw-escape-map): Use Control-X-prefix.
12145         * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map.  (Bug#10566)
12147 2012-01-25  Martin Rudalics  <rudalics@gmx.at>
12149         * window.el (window-state-get, window--state-get-1): Don't deal
12150         with fixed-sizeness of windows.  Simplify code.
12152 2012-01-25  Jérémy Compostella  <jeremy.compostella@gmail.com>
12154         * window.el (window--state-get-1, window--state-put-2):
12155         Don't save and restore the mark.
12157 2012-01-25  Chong Yidong  <cyd@gnu.org>
12159         * custom.el (custom-variable-p): Doc fix.
12161 2012-01-25  Glenn Morris  <rgm@gnu.org>
12163         * dired.el (dired-goto-file): Handle some of the more common
12164         characters that `ls -b' escapes.  (Bug#10596)
12166         * progmodes/compile.el (compilation-next-error-function):
12167         Respect compilation-first-column in the "*compilation*" buffer.
12168         * progmodes/grep.el (grep-first-column): New variable.  (Bug#10594)
12170         * vc/vc.el (vc-modify-change-comment): Scoping fix.  (Bug#10513)
12172 2012-01-24  Glenn Morris  <rgm@gnu.org>
12174         * pcmpl-gnu.el (pcomplete/tar): Handle " - ".  (Bug#10457)
12176 2012-01-24  Julien Danjou  <julien@danjou.info>
12178         * color.el (color-rgb-to-hsl): Fix value computing.
12179         (color-hue-to-rgb): New function.
12180         (color-hsl-to-rgb): New function.
12181         (color-clamp, color-saturate-hsl, color-saturate-name)
12182         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
12183         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
12185 2012-01-24  Glenn Morris  <rgm@gnu.org>
12187         * vc/vc-rcs.el (vc-rcs-create-tag):
12188         * vc/vc-sccs.el (vc-sccs-create-tag):
12189         Fix argument spec to be what vc-create-tag expects.  (Bug#10515)
12191 2012-01-23  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
12193         * eshell/esh-util.el (eshell-read-hosts-file):
12194         Skip comment lines.  (Bug#10549)
12196         * eshell/em-unix.el (pcomplete/ssh): Remove.  (Bug#10548)
12198 2012-01-23  Juanma Barranquero  <lekktu@gmail.com>
12200         * subr.el (display-delayed-warnings): Doc fix.
12201         (collapse-delayed-warnings): New function to collapse identical
12202         adjacent warnings.
12203         (delayed-warnings-hook): Add it.
12205 2012-01-22  Michael Albinus  <michael.albinus@gmx.de>
12207         * net/tramp.el (tramp-action-login): Set connection property "login-as".
12209         * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
12210         (tramp-default-user-alist): Don't add "pscp".
12211         (tramp-do-copy-or-rename-file-out-of-band): Use connection
12212         property "login-as", if set.  (Bug#10530)
12214 2012-01-21  Michael Albinus  <michael.albinus@gmx.de>
12216         * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
12217         "plink1" and "psftp".  (Bug#10530)
12219 2012-01-21  Kenichi Handa  <handa@m17n.org>
12221         * international/mule-cmds.el (prefer-coding-system): Show a
12222         warning message if the default value of file-name-coding-system
12223         was not changed.
12225 2012-01-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
12227         * windmove.el (windmove-reference-loc):
12228         Fix windmove-reference-loc miscalculation.
12230 2012-01-21  Jay Belanger  <jay.p.belanger@gmail.com>
12232         * calc/calc-units.el (math-put-default-units): Don't use "1" as a
12233         default unit.
12235 2012-01-21  Glenn Morris  <rgm@gnu.org>
12237         * international/mule.el (auto-coding-alist): Add .tbz.
12239         * files.el (local-enable-local-variables): Doc fix.
12240         (inhibit-local-variables-regexps): Rename from
12241         inhibit-first-line-modes-regexps.  Keep old name as obsolete alias.
12242         Doc fix.  Add some extensions from auto-coding-alist.
12243         (inhibit-local-variables-suffixes):
12244         Rename from inhibit-first-line-modes-suffixes.  Doc fix.
12245         (inhibit-local-variables-p):
12246         New function, extracted from set-auto-mode-1.
12247         (set-auto-mode): Doc fix.  Respect inhibit-local-variables-regexps.
12248         (set-auto-mode-1): Doc fix.  Use inhibit-local-variables-p.
12249         (hack-local-variables): Doc fix.  Make the mode-only case
12250         respect enable-local-variables and friends.
12251         Respect inhibit-local-variables-regexps for file-locals, but
12252         not for directory-locals.
12253         (set-visited-file-name):
12254         Take account of inhibit-local-variables-regexps.
12255         Whether it applies may change as the file name is changed.
12256         * jka-cmpr-hook.el (jka-compr-install):
12257         * jka-compr.el (jka-compr-uninstall):
12258         Update for inhibit-first-line-modes-suffixes name change.
12260 2012-01-20  Martin Rudalics  <rudalics@gmx.at>
12262         * help-macro.el (make-help-screen): Temporarily restore original
12263         binding for minor-mode-map-alist (Bug#10454).
12265 2012-01-19  Julien Danjou  <julien@danjou.info>
12267         * color.el (color-name-to-rgb): Use the white color to find the max
12268         color component value and return correctly computed values.
12269         (color-name-to-rgb): Add missing float conversion for max value.
12271 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
12273         * window.el (window--state-get-1, window-state-get): Do not use
12274         special state value for window-persistent-parameters.
12275         Rename argument IGNORE to WRITABLE.  Rewrite doc-string.
12276         (window--state-put-2): Reset all window parameters to nil before
12277         assigning values of persistent parameters.
12279 2012-01-18  Alan Mackenzie  <acm@muc.de>
12281         Eliminate sluggishness and hangs in fontification of "semicolon
12282         deserts".
12284         * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
12285         Change value 10000 -> 3000.
12286         (c-state-safe-place): Reformulate so it doesn't stack up an
12287         infinite number of wrong entries in c-state-nonlit-pos-cache.
12288         (c-determine-limit-get-base, c-determine-limit): New functions to
12289         determine backward search limits disregarding literals.
12290         (c-find-decl-spots): Amend commenting.
12291         (c-cheap-inside-bracelist-p): New function which detects "={".
12293         * progmodes/cc-fonts.el
12294         (c-make-font-lock-BO-decl-search-function): Give a limit to a
12295         backward search.
12296         (c-font-lock-declarations): Fix an occurrence of point being
12297         undefined.  Check additionally for point being in a bracelist or
12298         near a macro invocation without a semicolon so as to avoid a
12299         fruitless time consuming search for a declarator.  Give a more
12300         precise search limit for declarators using the new
12301         c-determine-limit.
12303 2012-01-18  Glenn Morris  <rgm@gnu.org>
12305         * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
12306         (set-auto-mode): Doc fixes.
12308 2012-01-17  Glenn Morris  <rgm@gnu.org>
12310         * isearch.el (search-nonincremental-instead): Fix doc typo.
12312         * dired.el (dired-insert-directory): Handle newlines in directory name.
12313         (dired-build-subdir-alist): Unescape newlines in directory name.
12315 2012-01-17  Michael Albinus  <michael.albinus@gmx.de>
12317         * net/tramp.el (tramp-local-end-of-line): New defcustom.
12318         (tramp-action-login, tramp-action-yesno, tramp-action-yn)
12319         (tramp-action-terminal): Use it.  (Bug#10530)
12321 2012-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12323         * minibuffer.el (completion--replace): Strip properties (bug#10062).
12325 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
12327         * window.el (window-state-ignored-parameters): Remove variable.
12328         (window--state-get-1): Rename argument MARKERS to IGNORE.
12329         Handle persistent window parameters.  Make copy of clone-of
12330         parameter only if requested.  (Bug#10348)
12331         (window--state-put-2): Install a window parameter only if it has
12332         a non-nil value or an existing parameter shall be overwritten.
12334 2012-01-15  Michael Albinus  <michael.albinus@gmx.de>
12336         * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
12338 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
12340         * info.el (Info-toc-build): If the Info file has no "Up" pointer,
12341         don't pass the (nil) value of `upnode' to string-match.
12343 2012-01-14  Chong Yidong  <cyd@gnu.org>
12345         * startup.el (command-line): Fix X resource class for cursorColor.
12346         Fix values recognized by the cursorBlink resource.
12348 2012-01-14  Paul Eggert  <eggert@cs.ucla.edu>
12350         * epg.el (epg--make-temp-file): Avoid permission race condition
12351         when running on old Emacs versions (bug#10403).
12353 2012-01-14  Glenn Morris  <rgm@gnu.org>
12355         * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
12357 2012-01-13  Alan Mackenzie  <acm@muc.de>
12359         Fix filling for when filladapt mode is enabled.
12361         * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
12362         c-mask-paragraph, pass in `fill-paragraph' rather than
12363         `fill-region-as-paragraph'.  (This is a reversion of a previous
12364         change.)
12365         * progmodes/cc-mode.el (c-basic-common-init):
12366         Make fill-paragraph-handle-comment buffer local and set it to nil.
12368 2012-01-13  Glenn Morris  <rgm@gnu.org>
12370         * dired.el (dired-switches-escape-p): New function.
12371         (dired-insert-directory): Use dired-switches-escape-p.
12372         (dired-get-filename): Undo "\ " quoting if needed.  (Bug#10469)
12374         * find-dired.el (find-ls-option): Doc fix.  (Bug#10262)
12376 2012-01-12  Glenn Morris  <rgm@gnu.org>
12378         * mail/sendmail.el (mail-mode): Update paragraph-separate for
12379         changes in adaptive-fill-regexp.  (Bug#10276)
12381 2012-01-11  Alan Mackenzie  <acm@muc.de>
12383         Fix Emacs bug #10463 - put `widen's around the critical spots.
12385         * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
12386         widen around each invocation of c-state-pp-to-literal.  Remove an
12387         unused let variable.
12389 2012-01-11  Glenn Morris  <rgm@gnu.org>
12391         * dired-aux.el (dired-do-shell-command): Fix */? logic.  (Bug#6561)
12392         Doc fix.
12394 2012-01-10  Chong Yidong  <cyd@gnu.org>
12396         * net/network-stream.el (network-stream-open-starttls):
12397         Avoid emitting a confusing error message when the server gives a bad
12398         response to the capability command.
12400 2012-01-10  Glenn Morris  <rgm@gnu.org>
12402         * mail/unrmail.el (unrmail): Tweak previous change.
12404 2012-01-09  Chong Yidong  <cyd@gnu.org>
12406         * custom.el (custom-safe-themes): Use SHA-256 for hashing.
12408 2012-01-08  Alan Mackenzie  <acm@muc.de>
12410         Optimise font locking in long enum definitions.
12412         * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
12413         arm to a cond form to handle enums.
12414         * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
12415         * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
12417 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
12419         * files.el (move-file-to-trash): Preserve default file modes on error.
12420         (Bug#10401)
12422 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12424         * faces.el (set-face-attribute): Clarify the meaning of the nil
12425         frame (bug#10294).
12427         * subr.el (with-selected-frame): Mention that the selected frame
12428         is restored (bug#9980).
12430         * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
12431         (bug#9759).
12433         * mail/smtpmail.el (password-cache-add): Remove unused declaration.
12434         (password-read): Don't autoload unused function.
12436 2012-01-07  Juanma Barranquero  <lekktu@gmail.com>
12438         * progmodes/which-func.el (which-func-mode): Turn into a
12439         non-interactive function and mark as obsolete (bug#10428).
12441 2012-01-06  Chong Yidong  <cyd@gnu.org>
12443         * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
12444         (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
12445         functions, along with 1 and -1.
12447 2012-01-06  Eli Zaretskii  <eliz@gnu.org>
12449         * time.el (display-time-load-average)
12450         (display-time-default-load-average): Doc fixes.  See the thread
12451         starting at
12452         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
12453         for the details.
12455 2012-01-06  Glenn Morris  <rgm@gnu.org>
12457         * mail/unrmail.el (unrmail): Give an explicit error if the input file
12458         has no messages.  (Bug#10377)
12460         * info.el (Info-mode-map): Bind e to end-of-buffer, rather
12461         than Info-edit.  (Bug#10385)
12463         * time.el (display-time-load-average, display-time-next-load-average):
12464         Doc fixes.
12466         * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
12467         local setting of buffer-read-only to the input buffer.  (Bug#10419)
12469         * calendar/calendar.el (calendar-mode):
12470         Locally set scroll-margin to 0.  (Bug#10379)
12472 2012-01-06  Ulrich Mueller  <ulm@gentoo.org>
12474         * play/doctor.el (doctor-death): Escape "," characters.  (Bug#10370)
12476 2012-01-05  Glenn Morris  <rgm@gnu.org>
12478         * eshell/em-unix.el (diff-no-select): Autoload it.
12479         (eshell/diff): Use diff-no-select.  (Bug#10420)
12481 2012-01-05  Chong Yidong  <cyd@gnu.org>
12483         * shell.el (shell-dynamic-complete-functions): Revert last change.
12484         (shell-command-completion-function): New function.
12485         (shell-completion-vars): Use it to implement
12486         shell-completion-execonly (Bug#10417).
12488         * custom.el (enable-theme): Don't set custom-safe-themes.
12490         * cus-theme.el (custom-theme-merge-theme):
12491         Ignore custom-enabled-themes and custom-safe-themes.
12493 2012-01-05  Michael R. Mauger  <mmaug@yahoo.com>
12495         * progmodes/sql.el (sql-login-hook): Add hook to respond to the
12496         first prompt in `sql-interacive-mode'.
12497         (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
12498         keywords.
12499         (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
12500         (sql-product-interactive): Bug fix: Set `sql-buffer' in
12501         context of original buffer.  Invoke `sql-login-hook'.
12503 2012-01-04  Eli Zaretskii  <eliz@gnu.org>
12505         * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
12506         letters in cite-prefix.
12508 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12510         * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
12512 2012-01-03  Chong Yidong  <cyd@gnu.org>
12514         * shell.el (shell-dynamic-complete-functions):
12515         Put pcomplete-completions-at-point, so as to try
12516         comint-filename-completion first (Bug#10417).
12518 2012-01-02  Richard Stallman  <rms@gnu.org>
12520         * battery.el (battery-status-function):
12521         Detect when to use battery-yeeloong-sysfs.
12522         (battery-echo-area-format): Add string for Yeeloong.
12523         (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
12524         (battery-yeeloong-sysfs): New function.
12526 2012-01-02  Chong Yidong  <cyd@gnu.org>
12528         * dirtrack.el (dirtrack-list): Eliminate unused third element.
12529         (dirtrack): Merge code for handling relative filenames in prompt
12530         from shell-dir-cookie-watcher.
12531         (dirtrack-debug-message): New arg to avoid excess format calls.
12533         * shell.el (shell-dir-cookie-re): Variable deleted.
12534         (shell-dir-cookie-watcher): Function deleted.
12535         (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
12536         with dirtrack-mode.
12538 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
12540         * term/w32-win.el (dynamic-library-alist) <gnutls>:
12541         Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
12542         libgnutls-26.dll.
12544 2011-12-31  Andreas Schwab  <schwab@linux-m68k.org>
12546         * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
12548 2011-12-31  Eli Zaretskii  <eliz@gnu.org>
12550         * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
12551         headers of non-MIME messages, when rmail-enable-mime is non-nil.
12553 2011-12-29  Michael Albinus  <michael.albinus@gmx.de>
12555         * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
12556         also for alternative shells.
12557         (tramp-open-connection-setup-interactive-shell): Check, whether
12558         the shell is a busybox.
12559         (tramp-send-command): Don't suppress multiple prompts for
12560         busyboxes, it hurts.
12562 2011-12-28  Chong Yidong  <cyd@gnu.org>
12564         * progmodes/gdb-mi.el (gdb-get-source-file-list)
12565         (gdb-get-source-file): Move mode line update to
12566         gdb-get-source-file (Bug#10087).
12568 2011-12-25  Chong Yidong  <cyd@gnu.org>
12570         * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
12571         gud-gdb-marker-filter without taking it as an argument.
12572         (gud-gdb-run-command-fetch-lines): Caller changed.
12573         (gud-gdb-completion-function): New variable.
12574         (gud-gdb-completion-at-point): Use it.
12575         (gud-gdb-completions-1): Split from gud-gdb-completions.
12577         * progmodes/gdb-mi.el (gdb-input): Accept command and handler
12578         function as separate arguments.
12579         (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
12580         (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
12581         (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
12582         (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
12583         (gdb-stopped, def-gdb-auto-update-trigger)
12584         (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
12585         (gdb-get-changed-registers, gdb-get-main-selected-frame):
12586         Callers changed.
12587         (gud-gdbmi-completions): New function.
12588         (gdb): Use it for generating the completion table.
12590 2011-12-24  Alan Mackenzie  <acm@muc.de>
12592         Introduce a mechanism to widen the region used in context font
12593         locking.  Use this to protect declarations from losing their contexts.
12595         * progmodes/cc-langs.el (c-before-font-lock-functions):
12596         Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
12597         (c-before-context-fontification-functions): New defvar, a list of
12598         functions to be run just before context (etc.) font locking.
12600         * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
12601         New, functionality extracted from
12602         c-neutralize-syntax-in-and-mark-CPP.
12603         (c-in-after-change-fontification): New variable.
12604         (c-after-change): Set c-in-after-change-fontification.
12605         (c-set-fl-decl-start): Rejig its interface, so it can be called
12606         from both after-change and context fontifying.
12607         (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
12608         New functions.
12609         (c-standard-font-lock-fontify-region-function): New variable.
12610         (c-font-lock-fontify-region): New function.
12612 2011-12-24  Juri Linkov  <juri@jurta.org>
12614         * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
12615         (Bug#10348)
12617 2011-12-23  Michael Albinus  <michael.albinus@gmx.de>
12619         * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
12620         existence of source file.  (Bug#10325)
12622 2011-12-23  Alan Mackenzie  <acm@muc.de>
12624         Fix unstable fontification inside templates.
12626         * progmodes/cc-langs.el (c-before-font-lock-functions):
12627         Newly created from the singular version.  The (c c++ objc) entry now
12628         additionally has c-set-fl-decl-start.  The other languages (apart
12629         from AWK) have that as a single entry.
12631         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
12632         The functionality for "local" declarations has been extracted to
12633         c-set-fl-decl-start.
12635         * progmodes/cc-mode.el (c-common-init, c-after-change):
12636         Changes due to pluralisation of c-before-font-lock-functions.
12637         (c-set-fl-decl-start): New function, extracted from
12638         c-font-lock-enclosing-decls and enhanced.
12640 2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
12642         * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
12644 2011-12-22  Juri Linkov  <juri@jurta.org>
12646         * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)
12648 2011-12-22  Chong Yidong  <cyd@gnu.org>
12650         * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
12652 2011-12-21  Drew Adams  <drew.adams@oracle.com>
12654         * files.el (file-remote-p): Fix docstring.  (Bug#10319)
12656 2011-12-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
12658         * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
12660 2011-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
12662         * progmodes/cfengine.el: Add Version.  Improve CFEngine 3.x syntax
12663         highlighting and support.  Fix up comments for capitalization.
12664         (cfengine-mode-debug): New var.
12665         (cfengine3-mode): Change the modeline indicator to "CFE3".
12666         (cfengine3-font-lock-keywords): Improve defun highlighting.
12667         (cfengine2-actions): Rename from `cfengine-actions'.
12668         (cfengine2-font-lock-keywords): Rename from
12669         `cfengine-font-lock-keywords'.
12670         (cfengine2-imenu-expression): Rename from
12671         `cfengine-imenu-expression'.
12672         (cfengine2-outline-level): Rename from `cfengine-outline-level'.
12673         (cfengine2-beginning-of-defun): Rename from
12674         `cfengine-beginning-of-defun'.
12675         (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
12676         (cfengine2-indent-line): Rename from `cfengine-indent-line'.
12677         (cfengine2-mode): Rename from `cfengine-mode'.  Change the
12678         modeline indicator to "CFE2".
12679         (cfengine-mode): Defalias to `cfengine-auto-mode'.
12680         (cfengine-mode-abbrevs): Mark obsolete.
12682 2011-12-21  Chong Yidong  <cyd@gnu.org>
12684         * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
12685         filename argument.
12687 2011-12-20  Martin Rudalics  <rudalics@gmx.at>
12689         * window.el (window-normalize-buffer-to-display): Remove.
12690         (display-buffer): Handle buffer-or-name argument as in Emacs 23.
12692 2011-12-19  Chong Yidong  <cyd@gnu.org>
12694         * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
12695         Don't signal an error in a predicate function; return non-nil.
12696         (vc-dir-mark-file): Move the error here.
12697         (vc-dir-mark-unmark): If acting on the region, keep going if one
12698         of the entries cannot be marked/unmarked.
12699         (vc-dir-mark-all-files): If current entry is a directory, mark
12700         only child files, as documented.
12702 2011-12-19  Vincent Belaïche  <vincentb1@users.sourceforge.net>
12704         * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
12705         branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
12706         addition.
12708 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
12710         * term/ns-win.el (ns-get-selection-internal)
12711         (ns-store-selection-internal): Declare.
12712         (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
12713         Declare as obsolete.
12714         (ns-get-pasteboard, ns-paste-secondary):
12715         Use ns-get-selection-internal.
12716         (ns-set-pasteboard, ns-copy-including-secondary):
12717         Use ns-store-selection-internal.
12719 2011-12-17  Chong Yidong  <cyd@gnu.org>
12721         * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
12722         (vc-deduce-fileset): Doc fix.
12724 2011-12-16  Andreas Schwab  <schwab@linux-m68k.org>
12726         * calc/calc-misc.el (calc-help): Avoid wrapping help message.
12728 2011-12-13  Sam Steingold  <sds@gnu.org>
12730         * man.el (Man-getpage-in-background): When running under a
12731         window-system, ignore $MANWIDTH and $COLUMNS.
12733 2011-12-15  Kenichi Handa  <handa@m17n.org>
12735         * language/ethio-util.el: Change coding tag to utf-8-emacs.
12736         (setup-ethiopic-environment-internal): Comment out key-binding for
12737         ethio-toggle-punctuation.
12739 2011-12-13  Alan Mackenzie  <acm@muc.de>
12741         Add the switch statement to AWK Mode.
12743         * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
12744         "default" to the keywords regexp.
12746         * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
12747         expression as the rest.
12748         (c-nonlabel-token-key): Allow string literals for AWK.
12749         Refactor for the other modes.
12751         Large brace-block initialisation makes CC Mode slow: Fix.
12752         Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
12753         routines.  Limit backward searching in c-font-lock-enclosing.decl.
12755         * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
12756         pp-state and literal type in addition to the limits.
12757         (c-state-safe-place): New defun, extracted from c-state-literal-at.
12758         (c-state-literal-at): Use the above new defun.
12759         (c-slow-in-literal, c-fast-in-literal): Remove.
12760         (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
12762         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
12763         being in a literal.  Add a limit for backward searching.
12765         * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
12766         c-slow-in-literal.
12768 2011-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12770         * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
12772 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
12774         * window.el (delete-other-windows): Use correct frame in call to
12775         window-with-parameter.
12777 2011-12-12  Daniel Pfeiffer  <occitan@t-online.de>
12779         * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
12780         (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
12781         (makefile-gmake-statements, makefile-makepp-statements):
12782         Use it and add new makepp keywords.
12783         (makefile-makepp-font-lock-keywords): Add new patterns.
12784         (makefile-match-function-end): Match new [...] and [[...]].
12786 2011-12-11  Juanma Barranquero  <lekktu@gmail.com>
12788         * ses.el (ses-call-printer-return, ses-cell-property-get)
12789         (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
12790         (ses-create-cell-variable, ses-reset-header-string)
12791         (ses-cell-set-formula, ses-repair-cell-reference-all)
12792         (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
12793         (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
12794         (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
12795         (ses-aset-with-undo, ses-load, ses-truncate-cell)
12796         (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
12797         (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
12798         (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
12799         (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
12800         (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
12801         (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
12802         (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
12803         (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
12805 2011-12-11  Vincent Belaïche  <vincentb1@users.sourceforge.net>
12807         * ses.el: The overall change is to add cell renaming, that is
12808         setting fancy names for cell symbols other than name matching
12809         "\\`[A-Z]+[0-9]+\\'" regexp .
12810         (ses-create-cell-variable): New defun.
12811         (ses-relocate-formula): Relocate formulas only for cells the
12812         symbols of which are not renamed, i.e. symbols whose names do not
12813         match regexp "\\`[A-Z]+[0-9]+\\'".
12814         (ses-relocate-all): Relocate values only for cells the symbols of
12815         which are not renamed.
12816         (ses-load): Create cells variables as the (ses-cell ...) are read,
12817         in order to check row col consistency with cell symbol name only
12818         for cells that are not renamed.
12819         (ses-replace-name-in-formula): New defun.
12820         (ses-rename-cell): New defun.
12822 2011-12-11  Chong Yidong  <cyd@gnu.org>
12824         * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
12825         for completion via gud-gdb-fetch-lines-filter (Bug#10274).
12827 2011-12-11  Eric Hanchrow  <eric.hanchrow@gmail.com>
12829         * window.el (other-window): Fix docstring.
12831 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
12833         * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
12834         `from' or `to' address before taking its substring.
12835         Fixes incorrect display in Rmail summary buffer whereby an RFC2047
12836         encoded name is chopped in the middle of the encoded string, and
12837         thus displayed encoded.
12839 2011-12-10  Juanma Barranquero  <lekktu@gmail.com>
12841         * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
12843 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
12845         * textmodes/texnfo-upd.el: Update commentary.  Add a warning not
12846         to use texinfo-update-node and commands that call it if the
12847         Texinfo file uses @node lines without next/prev/up pointers.
12848         Correct outdated description about texinfo-master-menu.
12849         (texinfo-all-menus-update, texinfo-master-menu)
12850         (texinfo-update-node, texinfo-every-node-update)
12851         (texinfo-multiple-files-update): Doc fix.  Warn against updating
12852         all the @node lines.
12853         (texinfo-master-menu): Only call texinfo-update-node if the prefix
12854         argument is numeric.  Explain better in the doc string what the
12855         function really does.
12856         (texinfo-insert-master-menu-list): Improve the error message
12857         displayed if there's no menu in the Top node.
12858         (Bug#2975)  See also this thread:
12859         http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
12861 2011-12-09  Manuel Gómez  <mgrojo@gmail.com>  (tiny change)
12863         * speedbar.el (speedbar-supported-extension-expressions):
12864         Add .adb and .ads, commonly used for Ada source code (bug#10256).
12866 2011-12-09  Juanma Barranquero  <lekktu@gmail.com>
12868         * printing.el (pr-mode-alist):
12869         * simple.el (filter-buffer-substring-functions)
12870         (completion-list-insert-choice-function):
12871         * window.el (window-with-parameter, window-atom-root)
12872         (window-sides-slots, window-size-fixed, window-min-delta)
12873         (window-max-delta, window--resize-mini-window)
12874         (window--resize-child-windows-normal, window-tree)
12875         (delete-other-windows, quit-window, split-window)
12876         (display-buffer-record-window, special-display-buffer-names)
12877         (special-display-regexps, special-display-popup-frame)
12878         (same-window-p, split-window-sensibly)
12879         (display-buffer-overriding-action, display-buffer-alist)
12880         (display-buffer-base-action, display-buffer, switch-to-buffer)
12881         (switch-to-buffer-other-window, switch-to-buffer-other-frame)
12882         (fit-window-to-buffer, recenter-positions)
12883         (mouse-autoselect-window-state, mouse-autoselect-window-select):
12884         * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
12885         and remove unneeded backslashes in docstrings.
12887 2011-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12889         * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
12891         * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
12892         (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
12893         end in ".mk".
12894         (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
12895         when reading the makefile (bug#10116).
12897 2011-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12899         * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
12900         (bug#10116).
12902 2011-12-06  Glenn Morris  <rgm@gnu.org>
12904         * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
12906 2011-12-06  Chong Yidong  <cyd@gnu.org>
12908         * progmodes/cc-fonts.el (c-annotation-face): Use defface.
12910 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
12912         * textmodes/table.el (table-shorten-cell): Fix typo.
12914 2011-12-05  Christopher Genovese  <genovese.cr@gmail.com>  (tiny change)
12916         * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
12918 2011-12-05  Eli Zaretskii  <eliz@gnu.org>
12920         * descr-text.el (describe-char): Fix display of strong
12921         right-to-left characters and directional embeddings and overrides.
12923         * simple.el (what-cursor-position): Fix display of codepoints of
12924         strong right-to-left characters.
12926 2011-12-05  Chong Yidong  <cyd@gnu.org>
12928         * faces.el (read-color): Doc fix.
12930 2011-12-05  Glenn Morris  <rgm@gnu.org>
12932         * align.el (align--set-marker): Add doc-string.
12933         Don't try to move something that is not a marker.  (Bug#10216)
12935 2011-12-04  Glenn Morris  <rgm@gnu.org>
12937         * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
12938         overly zealous deletion of trailing whitespace.
12940 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
12942         * server.el (server-delete-client): On Windows, do not try to delete
12943         the only terminal.
12944         (server-process-filter): On Windows, treat requests for a tty frame as
12945         if they were for a GUI frame if the running server is in GUI mode.
12947 2011-12-03  Glenn Morris  <rgm@gnu.org>
12949         * textmodes/texinfmt.el (batch-texinfo-format): Doc fix.  (Bug#10207)
12951 2011-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12953         * electric.el: Streamline electric-indent's hook.
12954         (electric-indent-chars): Revert to simple list.
12955         (electric-indent-functions): New var.
12956         (electric-indent-post-self-insert-function): Use it.
12958         * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
12959         there's no inferior buffer (bug#10196).
12960         (prolog-consult-compile): Don't use toggle-read-only.
12962 2011-12-02  Michael Albinus  <michael.albinus@gmx.de>
12964         * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
12965         interrupt.  (Bug#10187)
12967 2011-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12969         * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
12970         (bug#9160).
12972         * dired-aux.el (dired-query): Don't assume help-char is modifier-free
12973         (bug#10191).
12975 2011-12-02  Juri Linkov  <juri@jurta.org>
12977         * info.el (Info-search): Display "end of manual" when Isearch
12978         reaches the end of single-file Info manual.  (Bug#9918)
12980 2011-12-02  Eli Zaretskii  <eliz@gnu.org>
12982         * isearch.el (isearch-message-prefix): Run the input method part
12983         of the prompt through bidi-string-mark-left-to-right.  (Bug#10183)
12985 2011-12-02  Juri Linkov  <juri@jurta.org>
12987         * isearch.el (isearch-occur): Use `word-search-regexp' for
12988         `isearch-word'.
12989         (isearch-search-and-update): Add condition for `isearch-word' and
12990         call `word-search-regexp'.  (Bug#10145)
12992 2011-12-01  Glenn Morris  <rgm@gnu.org>
12994         * eshell/em-hist.el (eshell-hist-initialize):
12995         Handle eshell-history-size nil and HISTSIZE set or unset.
12996         (eshell-history-file-name, eshell-history-size): Fix custom type.
12998 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13000         * man.el (Man-completion-table): Fix the lambda case (bug#10168).
13002 2011-12-01  Michael McNamara  <mac@mail.brushroad.com>
13004         * progmodes/verilog-mode.el (verilog-pretty-expr):
13005         Rework verilog-pretty-expr to handle new assignment operators in system
13006         verilog, such as += *= and the like.
13007         (verilog-assignment-operator-re): Regular expression to find the
13008         assigment operator in a verilog assignment.
13009         (verilog-assignment-operation-re): Regular expression to find an
13010         assignment statement for pretty-expr.
13011         (verilog-in-attribute-p): Query returns true if point is in an
13012         attribute context; used to skip these for expression line up from
13013         pretty-expr.
13014         (verilog-in-parameter-p): Query returns true if point is in an
13015         parameter definition context; used to skip these for expression
13016         line up from pretty-expr.
13017         (verilog-in-parenthesis-p): Query returns true if point is in a
13018         parenthetical expression, specifically ( ) but not [ ] or { };
13019         used by pretty-expr.
13020         (verilog-just-one-space): If there is no space, don't add one.
13021         (verilog-get-lineup-indent-2): Specifically skip just attribute
13022         contexts for expression lineup, rather than skipping all
13023         parenthetical expressions.
13024         (verilog-calculate-indent): Fix comment, and fix indent.
13025         (verilog-do-indent): Indent declarations in lists (suggested by
13026         Joachim Lechner).
13027         (verilog-mode-abbrev-table): Populate abbrev mode with the various
13028         skeleton items.
13029         (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
13030         by Alain Mellan).
13032 2011-12-01  Wilson Snyder  <wsnyder@wsnyder.org>
13034         * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
13035         parameters with embedded comments.  Reported by Ray Stevens.
13036         (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
13037         verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
13038         Reported by Tim Holt.
13039         (verilog-auto): Fix AUTOing a upper module then AUTOing module
13040         instantiated by upper module causing wrong expansion until AUTOed a
13041         second time.  Reported by K C Buckenmaier.
13042         (verilog-diff-auto): Fix showing .* as a difference when
13043         `verilog-auto-star-save' off.  Reported by Dan Dever.
13044         (verilog-auto-reset, verilog-read-always-signals)
13045         (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
13046         temporary signals in reset list if
13047         verilog-auto-reset-blocking-in-non is nil, and match assignment
13048         style to each signal's assignment type, bug381.
13049         Reported by Thomas Esposito.
13050         (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
13051         (verilog-uvm-statement-re): Support UVM indentation and
13052         highlighting, with old OVM keywords only.
13053         (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
13054         Support AUTOTIEOFF creating non-wire data types.
13055         Suggested by Jonathan Greenlaw.
13056         (verilog-auto-insert-lisp, verilog-delete-to-paren)
13057         (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
13058         (verilog-inject-sense, verilog-read-inst-pins)
13059         (verilog-read-sub-decls, verilog-read-sub-decls-line):
13060         Fix mismatching parenthesis inside commented out code when deleting
13061         AUTOINST, bug383.  Reported by Jonathan Greenlaw.
13062         (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
13063         non-numeric vector width.  Reported by Alex Reed.
13064         (verilog-auto-ascii-enum): Add "onehot" option to work around not
13065         detecting signals with parameter widths.  Reported by Alex Reed.
13066         (verilog-auto-delete-trailing-whitespace):
13067         With `verilog-auto-delete-trailing-whitespace' remove trailing
13068         whitespace in auto expansion, bug371.  Reported by Brad Dobbie.
13069         (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
13070         Fix verilog-scan-cache corruption when running user AUTO expansion
13071         hooks that call indentation routines.
13072         (verilog-simplify-range-expression): Fix typo ignoring lower case
13073         identifiers.
13074         (verilog-delete-auto): Fix delete-autos to also remove user created
13075         automatics, as long as they start with AUTO.
13076         (verilog-batch-diff-auto, verilog-diff-auto)
13077         (verilog-diff-function): Add `verilog-diff-auto' and bind to
13078         "C-c?"  to report differences in AUTO expansion, ignoring spaces.
13079         (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
13080         (verilog-in-paren-quick, verilog-re-search-backward-quick)
13081         (verilog-re-search-forward-quick, verilog-syntax-ppss):
13082         Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
13083         is disabled and its cache will get corrupt, causing AUTOS not to
13084         expand.  Instead use only -quick functions.
13085         (verilog-scan-region): Fix scanning over escaped quotes.
13086         (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
13087         (verilog-re-search-backward-quick)
13088         (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
13089         related functions now ignore strings, to fix misparsing of strings
13090         with magic comments embedded in them.
13091         (verilog-read-auto-template):
13092         Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
13093         Reported by Brad Dobbie.
13094         (verilog-read-auto-template):
13095         Fix 'verilog-auto-inst-template-numbers' with comments.
13096         Reported by Brad Dobbie.
13097         (verilog-auto-inst, verilog-auto-inst-param)
13098         (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
13099         merge conflicts with AUTOINST, bug358.  Reported by Brad Dobbie.
13100         (verilog-auto-inst-template-numbers): Add 'lhs' policy for
13101         debugging templates without merge conflicts, bug357.
13102         Reported by Brad Dobbie.
13103         (verilog-read-auto-template):
13104         Fix verilog-auto-inst-template-numbers with multiple templates.
13105         Reported by Brad Dobbie.
13106         (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
13107         abbrevs so user won't be asked to save.
13108         (verilog-read-auto-lisp-present): Fix to start at beginning of
13109         buffer in case called outside of verilog-auto.
13110         (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
13111         to "X-2".  Reported by Matthew Myers.
13112         (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
13113         all inputs from module templates.  Reported by Leith Johnson.
13114         (verilog-module-inside-filename-p): Fix locating programs as with
13115         modules.
13116         (verilog-auto-inst-port): Fix vl-width expressions when using
13117         verilog-auto-inst-param-value, bug331.  Reported by Julian Gorfajn.
13118         (verilog-decls-get-regs, verilog-decls-get-signals,
13119         verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
13120         verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
13121         verilog-read-decls): Combine reg and wire structures into one var
13122         structure to represent SystemVerilog concepts.
13123         (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
13124         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
13125         (verilog-auto-wire-type, verilog-insert-definition):
13126         Add verilog-auto-wire-type and AUTOLOGIC to support using
13127         SystemVerilog "logic" keyword instead of "wire"/"reg".
13128         (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
13129         to declares outputs that also have assignments (presumably in an
13130         ifdef or generate if so there's not a driver conflict).
13131         Reported by Matthew Myers.
13132         (verilog-auto-declare-nettype, verilog-insert-definition):
13133         Add verilog-auto-declare-nettype to fix declarations using
13134         `default_nettype none.  Reported by Julian Gorfajn.
13135         (verilog-read-always-signals-recurse, verilog-read-decls)
13136         (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
13137         malformed end statement, bug325.  Reported by Joshua Wise and
13138         Andrew Drake.
13139         (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
13140         (verilog-inst-comment-re): Fix not deleting Interfaced comment
13141         when expanding .* in interfaces, bug320.
13142         Reported by Pierre-David Pfister.
13143         (verilog-read-module-name): Fix import statements between module
13144         name and open parenthesis, bug317.
13145         Reported by Pierre-David Pfister.
13146         (verilog-simplify-range-expression): Fix simplification of
13147         multiplications inside AUTOWIRE connections, bug303.
13148         (verilog-auto-inst-port): Support parameter expansion in
13149         multidimensional arrays.
13150         (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
13151         after "assert property".  Reported by Julian Gorfajn.
13152         (verilog-simplify-range-expression): Fix "couldn't merge" errors
13153         with multiplication, bug303.
13154         (verilog-read-decls): Fix parsing of unsigned data types, bug302.
13155         Reported by Jan Frode Lonnum.
13157 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
13159         * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
13160         (hfy-shell-file-name, hfy-shell):
13161         * international/fontset.el (x-decompose-font-name): Fix typos.
13163 2011-11-29  Ken Brown  <kbrown@cornell.edu>
13165         * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
13166         (gdb-version): Remove defvar.
13167         (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
13168         (gdb-gud-context-command, gdb-non-stop-handler)
13169         (gdb-current-context-command, gdb-stopped): Use it.
13170         (gdb-init-1): Enable pretty printing here.
13171         (gdb-non-stop-handler): Don't enable pretty-printing here.
13172         Check to see if the target supports non-stop mode; if not, turn off
13173         non-stop mode.  Use the following.
13174         (gdb-check-target-async): New defun.
13175         (gud-watch, gdb-stopped): Fix whitespace.
13176         (gdb-get-source-file): Don't try to display the source file if
13177         `gdb-main-file' is nil.
13179 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13181         * align.el: Try to generate fewer markers (bug#10047).
13182         (align--set-marker): New macro.
13183         (align-region): Use it.
13185 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13187         * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
13189 2011-11-29  Chong Yidong  <cyd@gnu.org>
13191         * indent.el (indent-for-tab-command, indent-according-to-mode):
13192         Doc fix.
13193         (indent-region): Doc fix.  Switch nested ifs to equivalent cond.
13195 2011-11-29  Michael Albinus  <michael.albinus@gmx.de>
13197         * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
13198         aware of remote file names.  (Bug#10124)
13200 2011-11-29  Chong Yidong  <cyd@gnu.org>
13202         * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
13204 2011-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13206         * files.el (find-file): Don't use force-same-window (bug#10144).
13207         * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
13208         use pop-to-buffer if the selected window can't be used.
13209         (pop-to-buffer-same-window): Use display-buffer--same-window-action.
13211 2011-11-28  Eli Zaretskii  <eliz@gnu.org>
13213         * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
13214         special-mode-map.
13216 2011-11-28  Chong Yidong  <cyd@gnu.org>
13218         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
13220 2011-11-27  Nick Roberts  <nickrob@snap.net.nz>
13222         * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
13223           gdb-get-source-file-list on gdb-create-source-file-list.
13225 2011-11-26  Eli Zaretskii  <eliz@gnu.org>
13227         * whitespace.el (whitespace-newline): Use a different foreground
13228         color for 16-color light-background displays.
13230 2011-11-24  Chong Yidong  <cyd@gnu.org>
13232         * window.el (display-buffer--special-action): Doc fix.
13234 2011-11-25  Juanma Barranquero  <lekktu@gmail.com>
13236         * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
13237         (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
13238         (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
13239         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
13240         (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
13241         (avl-tree-stack-first):
13242         * emacs-lisp/cconv.el (cconv--analyse-use):
13243         * net/gnutls.el (gnutls-negotiate): Fix typos.
13245 2011-11-24  Glenn Morris  <rgm@gnu.org>
13247         * lpr.el (lpr-windows-system, lpr-lp-system):
13248         * mail/binhex.el (binhex-begin-line):
13249         * progmodes/grep.el (grep-history, grep-find-history):
13250         * textmodes/flyspell.el:
13251         * vc/pcvs-defs.el (cvs-global-menu):
13252         * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
13253         * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
13254         * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
13256         * net/tls.el: Fix case of "GnuTLS".
13258         * paths.el (rmail-file-name): Format doc-string for make-docfile.
13260         * version.el (emacs-build-system): Give it a doc-string.
13262 2011-11-24  Juri Linkov  <juri@jurta.org>
13264         * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
13266 2011-11-24  Glenn Morris  <rgm@gnu.org>
13268         * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
13269         if called on a non-mime message just toggle the headers.  (Bug#8006)
13271 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
13273         * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
13274         (allout-lead-with-comment-string, allout-structure-deleted-hook)
13275         (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
13276         (allout-rebullet-heading, allout-open-sibtopic)
13277         (allout-toggle-current-subtree-encryption)
13278         (allout-toggle-subtree-encryption, allout-encrypt-string)
13279         (allout-next-topic-pending-encryption, allout-adjust-file-variable)
13280         (allout-distinctive-bullets-string, allout-auto-activation):
13281         * window.el (window-normalize-buffer-to-display):
13282         * progmodes/verilog-mode.el (verilog-batch-indent):
13283         * textmodes/bibtex.el (bibtex-field-braces-opt)
13284         (bibtex-field-strings-opt):
13285         * vc/cvs-status.el (cvs-tree-merge):
13286         Fix typos.
13288 2011-11-23  Michael Albinus  <michael.albinus@gmx.de>
13290         * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
13291         `non-essential' to t, in order to avoid remote connections.
13293 2011-11-23  Eli Zaretskii  <eliz@gnu.org>
13295         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
13296         On MS-DOS and MS-Windows, compare with loaddefs.el
13297         case-insensitively.
13299 2011-11-23  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
13301         * mail/unrmail.el (unrmail): Always add blank line.  (Bug#7743)
13303 2011-11-23  Glenn Morris  <rgm@gnu.org>
13305         * paths.el (rmail-file-name): Reformat the doc-string so that it
13306         is picked up.
13308         * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
13309         (rmail-auto-file): Ignore case in the "special" field names,
13310         as mail-fetch-field does for all others.
13312         * mail/rmail.el (rmail-forward):
13313         * mail/rmailkwd.el (rmail-set-label):
13314         * mail/rmailout.el (rmail-output, rmail-output-as-seen)
13315         (rmail-output-body-to-file): Give error if no message.  (Bug#10082)
13317         * mail/rmail.el (rmail-current-message): Doc fix.
13319         * mail/rmail.el (rmail-message-filter): Mark as obsolete.  (Bug#2624)
13321 2011-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13323         * server.el (server-eval-and-print): Allow C-g (bug#6585).
13325 2011-11-22  Glenn Morris  <rgm@gnu.org>
13327         * mail/rmailmm.el (test-rmail-mime-handler)
13328         (test-rmail-mime-bulk-handler)
13329         (test-rmail-mime-multipart-handler): Move tests to test/ directory.
13331 2011-11-21  Juri Linkov  <juri@jurta.org>
13333         * calc/calc.el (calc-read-key-sequence):
13334         Let-bind `input-method-function' to nil.  (Bug#10018)
13336 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13338         * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
13339         Tell the caller that the next line needs recomputation, even
13340         though it doesn't start a sexp (bug#10094).
13342 2011-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13344         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
13346 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13348         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13349         Use force-same-window.
13351 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
13353         * descr-text.el (describe-char-unicode-data):
13354         * json.el (json-string-escape):
13355         * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
13356         (Footnote-unicode, Footnote-style-p):
13357         * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
13359 2011-11-20  Chong Yidong  <cyd@gnu.org>
13361         * window.el (replace-buffer-in-windows): Restore interactive spec.
13363 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13365         * electric.el (electric-indent-mode): Fix last change (too optimistic).
13367         * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
13368         (byte-compile-global-not-obsolete-vars): New var.
13369         (byte-compile-check-variable, byte-compile-make-obsolete-variable):
13370         Use it.
13371         (byte-compile-warn-obsolete): Align text with the one in *Help*.
13373 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
13375         * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
13376         * progmodes/pascal.el (electric-pascal-equal):
13377         * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
13378         * xml.el (xml-substitute-special): Fix typos.
13380 2011-11-20  Glenn Morris  <rgm@gnu.org>
13382         * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
13383         (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
13384         Doc fixes.
13385         (rmail-decode-mime-charset): Mark as obsolete.
13387         * mail/rmailsum.el (rmail-message-regexp-p-1):
13388         * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
13389         Before using mime functions, check they are set.  (Bug#10077)
13391 2011-11-19  Juri Linkov  <juri@jurta.org>
13393         * info.el (Info-finder-find-node): Use `package--builtins' instead
13394         of `package-alist'.  Use node names formed by the pattern "Keyword "
13395         and the keyword name.
13397 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
13399         * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
13401 2011-11-19  Juri Linkov  <juri@jurta.org>
13403         * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
13404         that calls `revert-buffer' on all Info buffers.  (Bug#9915)
13405         (Info-revert-find-node): Remove let-bindings `old-buffer-name',
13406         `old-history', `old-history-forward'.  Add let-binding
13407         `window-selected'.  Remove calls to `kill-buffer',
13408         `switch-to-buffer' and `Info-mode'.  Set `Info-current-file' to nil
13409         before calling `Info-find-node', so `Info-find-node-2' will reread
13410         the Info file.  Restore window positions only when `window-selected'
13411         is non-nil.
13413 2011-11-19  Juri Linkov  <juri@jurta.org>
13415         * isearch.el (isearch-lazy-highlight-new-loop):
13416         Remove condition `(not isearch-error)'.  (Bug#9918)
13418         * misearch.el (multi-isearch-search-fun): Add condition
13419         `(not bound)' to ignore lazy-highlighting search.
13420         Add the search-failed message "end of multi" when the end of
13421         multi-sequence is reached.  Uncapitalize the search-failed
13422         message "Repeat for next buffer".
13424         * info.el (Info-search): Add the search-failed message
13425         "end of the manual" when the end of the manual is reached
13426         in Isearch mode.
13428 2011-11-19  Juri Linkov  <juri@jurta.org>
13430         * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
13431         Use non-destructive `remove' instead of `delete' because
13432         `Info-history-list' stored to `Info-isearch-initial-history-list' in
13433         `Info-isearch-start' might need to be restored in `Info-isearch-end'.
13435 2011-11-19  Juri Linkov  <juri@jurta.org>
13437         * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
13438         to nil instead of binding `search-ring' and `regexp-search-ring'.
13439         (Bug#9185)
13441 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
13443         * simple.el (line-move): Force movement by logical lines for any
13444         hscrolled window, not only when auto-hscroll-mode is on.
13445         (line-move-visual): Update doc string to that effect.  (Bug#10076)
13447 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
13449         * language/european.el (macintosh): Define as alias for mac-roman.
13451 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
13453         * mail/rmailmm.el (rmail-mime-display-header)
13454         (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
13455         (rmail-mime-entity-segment, rmail-mime-toggle-raw)
13456         (rmail-mime-toggle-hidden, rmail-mime-insert-text)
13457         (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
13458         (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
13459         of a raw aref.
13460         (rmail-mime-entity-segment): To get past the tagline, move forward
13461         2 more lines, to account for the 2 empty lines that precede and
13462         follow the line with the buttons.
13463         (rmail-mime-update-tagline): Move one more line, to get past the
13464         empty line that follows the buttons in the tagline.  (Bug#9520)
13466 2011-11-19  Martin Rudalics  <rudalics@gmx.at>
13468         * window.el (window-max-delta-1, window-min-delta-1)
13469         (window-min-size-1, window-state-get-1, window-state-put-1)
13470         (window-state-put-2): Use "window--" prefix.
13472 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
13474         * emacs-lisp/smie.el: Improve warnings and conflict detection.
13475         (smie-warning-count): New var.
13476         (smie-set-prec2tab): Use it.
13477         (smie-bnf->prec2): Improve warnings.  Add docstring.
13478         (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
13479         (smie-bnf--set-class): New function.
13480         (smie-bnf--classify): Rename from smie-bnf-classify.  Rewrite to fix
13481         corner case.
13483         * progmodes/compile.el: Obey compilation-first-column in dest buffer.
13484         (compilation-error-properties, compilation-move-to-column):
13485         Handle compilation-first-column while in the target buffer.
13487         * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
13488         Don't hardcode point-min==1.
13490         * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
13491         (eshell-rewrite-for-command): Remove workaround.
13492         (eshell-do-pipelines, eshell-do-pipelines-synchronously)
13493         (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
13494         * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
13496         * files-x.el (modify-file-local-variable): Obey commenting conventions.
13498 2011-11-17  Glenn Morris  <rgm@gnu.org>
13500         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
13501         Ignore buffer-local generated-autoload-file if it is the same
13502         as the global value.  (Bug#10049)
13504 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
13506         * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
13507         (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
13508         (reftex-toc-previous-heading, reftex-toc-max-level)
13509         (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
13510         (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
13511         (reftex-toc-do-promote, reftex-toc-promote-prepare)
13512         (reftex-toc-promote-action, reftex-toc-extract-section-number)
13513         (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
13514         (reftex-toc-rename-label, reftex-toc-visit-location)
13515         (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
13516         (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
13517         (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
13518         leaving "*toc*" only for references to the buffer.
13520 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
13522         * window.el (window-resize, delete-window, split-window):
13523         Replace window-splits by window-combination-resize.
13524         * cus-start.el (window-splits): Replace by window-combination-resize.
13526 2011-11-17  Glenn Morris  <rgm@gnu.org>
13528         * progmodes/sh-script.el (sh-font-lock-keywords-var):
13529         Make bash entry derive from sh entry, not shell entry.
13531 2011-11-16  Michael Albinus  <michael.albinus@gmx.de>
13533         * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
13534         local file name.
13536 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
13538         * menu-bar.el (menu-bar-file-menu):
13539         * printing.el (pr-ps-utility):
13540         * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
13541         (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
13542         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
13543         (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
13544         (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
13545         (icalendar--convert-cyclic-to-ical)
13546         (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
13547         (icalendar--convert-ical-to-diary)
13548         (icalendar--convert-recurring-to-diary)
13549         (icalendar--convert-non-recurring-all-day-to-diary)
13550         (icalendar-import-format-sample):
13551         * progmodes/idlw-shell.el (idlwave-shell-mode):
13552         * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
13553         (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
13554         (vhdl-ps-print-init): Fix typos.
13556 2011-11-16  Ken Manheimer  <ken.manheimer@gmail.com>
13558         * allout.el, allout-widgets.el (file metadata): Attribute copyright to
13559         FSF and collapse date sequence, obscure author/maintainer email address
13560         better, remove extra version line, track relocation of author's webpage.
13562         * progmodes/python.el (python-pdbtrack-input-prompt)
13563         (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
13564         regular python pdb prompts.  Adjustments shamelessly taken exactly as
13565         suggested in EmacsWiki page (tiny change):
13566         http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
13568 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
13570         * expand.el (expand-pos, expand-index, expand-point):
13571         Remove redundant info from docstring.
13572         (expand-add-abbrevs): Doc fix.
13573         (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
13574         (expand-sample-perl-mode-expand-list): Fix typos.
13576         * net/dbus.el (dbus-event-member-name):
13577         * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
13578         * term/pc-win.el (msdos-create-frame-with-faces):
13579         * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
13581 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
13583         * window.el (split-window, window-state-get-1)
13584         (window-state-put-1, window-state-put-2): Rename occurrences of
13585         window-nest to window-combination-limit.
13586         * cus-start.el (window-nest): Rename to window-combination-limit.
13588 2011-11-16  Chong Yidong  <cyd@gnu.org>
13590         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
13591         regexp (Bug#10033).
13593 2011-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
13595         * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
13596         `completing-read' will remove *Completions* and will preserve
13597         current-buffer for us.
13598         (tmm-add-prompt): Users of *Completions* will always (re)set its
13599         major mode.
13600         (tmm-old-comp-map): Remove.
13602 2011-11-16  Glenn Morris  <rgm@gnu.org>
13604         * mail/rmailedit.el: Require rmailmm when compiling.
13605         (rmail-old-mime-state): New declaration.
13606         (rmail-edit-current-message): If editing a mime message,
13607         edit the "raw" message from the mbox buffer.
13608         (rmail-cease-edit): Handle mime messages.  (Bug#9840)
13610 2011-11-15  Glenn Morris  <rgm@gnu.org>
13612         * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
13613         which wasn't being used.  Add optional arg to force given state.
13614         (rmail-mime): Add optional arg to force given state.
13616 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
13618         * allout.el (allout-encryption-plaintext-sanitization-regexps):
13619         * frame.el (display-mm-dimensions-alist):
13620         * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
13621         (outline-move-subtree-down):
13622         * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
13623         (newsticker--treeview-do-get-node):
13624         * net/quickurl.el (quickurl-list-buffer-name):
13625         * progmodes/dcl-mode.el (dcl-mode):
13626         * progmodes/gdb-mi.el (gdb-mapcar*):
13627         * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
13629 2011-11-15  Glenn Morris  <rgm@gnu.org>
13631         * mail/rmail.el (rmail-file-coding-system): It's only ever used
13632         in a boolean sense, so just make it a boolean, and fix the doc.
13633         (rmail-show-mime-function, rmail-mime-feature)
13634         (rmail-require-mime-maybe): Doc fixes.
13635         (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
13637         * mail/rmailmm.el (rmail-show-mime): Doc fix.
13639 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
13641         * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
13642         (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
13643         (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
13644         (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
13646 2011-11-15  Glenn Morris  <rgm@gnu.org>
13648         * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
13649         (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
13650         (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
13651         (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
13652         (rmail-mime, rmail-show-mime): Doc fixes.
13654         * term/ns-win.el (mode-line-frame-identification):
13655         Leave it alone.  (Bug#10051)
13657         * simple.el (mark-whole-buffer): Doc fix.  (Bug#10023)
13659         * mail/rmailout.el (rmail-output-to-rmail-buffer):
13660         Handle empty buffers.  (Bug#9978)
13662 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
13664         * international/mule.el (define-charset):
13665         * mail/rmailmm.el (rmail-mime-find-header-encoding):
13666         * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
13667         * progmodes/verilog-mode.el (verilog-backward-token):
13668         * textmodes/ispell.el (lookup-words):
13669         * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
13671 2011-11-14  Glenn Morris  <rgm@gnu.org>
13673         * progmodes/executable.el
13674         (executable-make-buffer-file-executable-if-script-p):
13675         Handle file-modes returning nil.
13677         * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
13678         message - not necessary, and causes problems.  (Bug#9831)
13680         * mail/rmailsum.el (rmail-new-summary): Preserve message number.
13682         * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
13684         * mail/rmailsum.el (rmail-summary, rmail-new-summary)
13685         (rmail-new-summary-1): Allow empty summaries.  (Bug#9964)
13686         (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
13688 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
13690         * window.el (window-resize, delete-window): Use window-splits
13691         variable instead of function.
13692         (window-state-get-1, window-state-put-2, window-state-put):
13693         Don't deal with windows' splits status.
13695 2011-11-12  Glenn Morris  <rgm@gnu.org>
13697         * apropos.el (apropos-do-all, apropos-library, apropos-value)
13698         (apropos-documentation): Doc fixes.
13700 2011-11-11  Juanma Barranquero  <lekktu@gmail.com>
13702         * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
13703         * textmodes/sgml-mode.el (html-tag-help): Fix typos.
13705 2011-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13707         * electric.el (electric-indent-post-self-insert-function): Make it
13708         possible for a char to only indent in some circumstances.
13709         (electric-indent-mode): Simplify.
13711 2011-11-11  Martin Rudalics  <rudalics@gmx.at>
13713         * window.el (windows-with-parameter): Remove unused function.
13714         (windows-at-side): Rename to window-at-side-list.
13715         (window-check, window-atom-check, window-atom-check-1)
13716         (window-side-check, window-size-ignore, window-size-fixed-1)
13717         (window-in-direction-2): Prefix with "window--".
13718         (window-tree-1): Rename to window--subtree, fix doc-string.
13720 2011-11-11  Glenn Morris  <rgm@gnu.org>
13722         * subr.el (eval-after-load): If FILE is already loaded,
13723         evaluate FORM before it gets wrapped in more stuff.  (Bug#10009)
13725 2011-11-10  Glenn Morris  <rgm@gnu.org>
13727         * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
13728         Call svn via vc-svn-command rather than vc-do-command.
13729         (vc-svn-command): Add --non-interactive.  (Bug#9993)
13730         (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
13732         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13733         Add toggle-read-only.  (Bug#7292)
13734         * files.el (toggle-read-only): Mention that it should only
13735         be used interactively.  (Bug#10006)
13737 2011-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13739         * progmodes/compile.el (compilation-error-regexp-alist-alist):
13740         Adjust regexp for OCaml warnings.
13742         * electric.el (electric-pair-post-self-insert-function): Let user
13743         turn it off buffer-locally (bug#9932).
13745         * progmodes/python.el (python-beginning-of-statement):
13746         Rewrite (bug#2703).
13748         * progmodes/compile.el: Better handle TABs (bug#9749).
13749         (compilation-internal-error-properties)
13750         (compilation-next-error-function): Obey the target buffer's
13751         compilation-error-screen-columns.
13753 2011-11-09  Juanma Barranquero  <lekktu@gmail.com>
13755         * progmodes/meta-mode.el: Remove obsolete comments.
13756         (meta-right-comment-regexp, meta-ignore-comment-regexp):
13757         Fix typos in docstrings.
13759 2011-11-09  Martin Rudalics  <rudalics@gmx.at>
13761         * window.el (window-size-fixed-p): Rewrite doc-string.
13762         (window-resizable-p): Rename to window--resizable-p.  Update callers.
13763         (window--resizable): New function.  Make all callers of
13764         window-resizable call window--resizable instead.
13765         (window-resizable): Rewrite in terms of window--resizable.
13767 2011-11-08  Glenn Morris  <rgm@gnu.org>
13769         * progmodes/delphi.el (delphi-mode-syntax-table):
13770         Let define-derived-mode define a proper syntax table.  (Bug#9994)
13772 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13774         * window.el: Stay away from defsubst.
13775         (window-list-no-nils): Remove.
13776         (window-state-get-1, window-state-get): Use backquote instead.
13778 2011-11-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13780         * emacs-lisp/find-func.el (find-function-read):
13781         Fix incorrect use of default argument in `completing-read'.
13783 2011-11-08  Martin Rudalics  <rudalics@gmx.at>
13785         * window.el (display-buffer-function, special-display-function):
13786         Mention display-buffer-record-window but do not mention
13787         help-setup parameter in doc-strings.
13788         (window-min-delta): Fix doc-string typo.
13790 2011-11-08  Chong Yidong  <cyd@gnu.org>
13792         * window.el (window-total-height, window-total-width): Doc fix.
13793         (window-body-size): Move from C.
13794         (window-body-height, window-body-width): Move to C.
13796 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13798         * window.el: Make special-display like display-buffer-alist (bug#9532).
13799         (display-buffer--special-action): New function, morphed
13800         from display-buffer--special.
13801         (display-buffer): Use it to handle special-display-buffers at higher
13802         priority (just after display-buffer-alist).
13803         (display-buffer-fallback-action, display-buffer--other-frame-action)
13804         (pop-to-buffer-same-window): Remove display-buffer--special.
13806 2011-11-07  Glenn Morris  <rgm@gnu.org>
13808         * calendar/cal-menu.el (cal-menu-set-date-title):
13809         Do nothing if not in a calendar.  (Bug#9976)
13811 2011-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13813         * files.el (find-file): Always use selected-window.
13815 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
13817         * window.el (window-combinations): Make WINDOW argument
13818         mandatory.  Rewrite doc-string.
13819         (walk-window-subtree, window-atom-check, window-min-delta)
13820         (window-max-delta, window--resize-this-window)
13821         (window--resize-root-window-vertically, window-tree)
13822         (balance-windows, window-state-put): Rewrite doc-strings as to
13823         not mention the term "subwindow".
13824         (window--resize-subwindows-skip-p): Rename to
13825         window--resize-child-windows-skip-p.
13826         (window--resize-subwindows-normal): Rename to
13827         window--resize-child-windows-normal.
13828         (window--resize-subwindows): Rename to
13829         window--resize-child-windows.
13830         (window-or-subwindow-p): Rename to window--in-subtree-p.
13832 2011-11-07  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
13834         * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
13835         Ensure that mbox format messages end in two newlines (Bug#9974).
13837 2011-11-06  Chong Yidong  <cyd@gnu.org>
13839         * window.el (window-combination-p): Function deleted; its
13840         side-effect is not used in any existing code.
13841         (window-combinations, window-combined-p): Call window-*-child
13842         directly.
13844 2011-11-05  Chong Yidong  <cyd@gnu.org>
13846         * window.el (window-valid-p): Rename from window-any-p.
13847         (window-size-ignore, window-state-get): Callers changed.
13848         (window-normalize-window): Rename from window-normalize-any-window.
13849         New arg LIVE-ONLY, replacing window-normalize-live-window.
13850         (window-normalize-live-window): Delete.
13851         (window-combination-p, window-combined-p, window-combinations)
13852         (walk-window-subtree, window-atom-root, window-min-size)
13853         (window-sizable, window-sizable-p, window-size-fixed-p)
13854         (window-min-delta, window-max-delta, window-resizable)
13855         (window-resizable-p, window-full-height-p, window-full-width-p)
13856         (window-current-scroll-bars, window-point-1, set-window-point-1)
13857         (window-at-side-p, window-in-direction, window-resize)
13858         (adjust-window-trailing-edge, maximize-window, minimize-window)
13859         (window-deletable-p, delete-window, delete-other-windows)
13860         (record-window-buffer, unrecord-window-buffer)
13861         (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
13862         (quit-window, split-window, window-state-put)
13863         (set-window-text-height, fit-window-to-buffer)
13864         (shrink-window-if-larger-than-buffer): Callers changed.
13866 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
13868         * mail/rmail.el (rmail-simplified-subject): Decode subject with
13869         rfc2047-decode-string.
13870         (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
13871         warnings.
13873         * window.el (window-body-height, window-body-width): Mention in
13874         the doc string that the return values are in frame's canonical
13875         units.  (Bug#9949)
13877 2011-11-03  Alan Mackenzie  <acm@muc.de>
13879         * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
13880         change in cc-engine.el.
13882 2011-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13884         * window.el (switch-to-buffer): Use `force-same-window' interactively.
13886 2011-11-02  Martin Rudalics  <rudalics@gmx.at>
13888         * window.el (quit-window): Call unrecord-window-buffer after
13889         showing another buffer in the window.  (Bug#9937)
13890         (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
13892 2011-11-02  Juanma Barranquero  <lekktu@gmail.com>
13894         * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
13895         Accept status with more than 9 shelves.  (Bug#9935)
13896         Reported by Colin D Bennett <colin@gibibit.com>.
13898 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
13900         * help.el (with-help-window): Don't reference
13901         temp-buffer-show-specifiers in doc-string.
13903 2011-10-31  Andreas Schwab  <schwab@linux-m68k.org>
13905         * subr.el (keymap--menu-item-with-binding): Ignore item if not a
13906         menu-item.
13908 2011-10-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13910         * whitespace.el: New version 13.2.2.
13911         (whitespace-newline-mode): Disable properly.  Reported by Sarah
13912         <EmacsWiki>.
13914 2011-10-30  Ulf Jasper  <ulf.jasper@web.de>
13916         * net/newst-treeview.el: Remove "Time-stamp".
13917         (newsticker--group-manage-orphan-feeds): Do not call
13918         newsticker--treeview-tree-update.
13919         (newsticker-treeview-update, newsticker-treeview):
13920         Call newsticker--treeview-tree-update if necessary.
13922 2011-10-30  Martin Rudalics  <rudalics@gmx.at>
13924         * window.el (window-iso-combination-p, window-iso-combined-p)
13925         (window-iso-combinations): Remove "iso-" infix.
13926         Suggested by Chong Yidong.
13927         (window-min-size-1, window-size-fixed-1, window-min-delta-1)
13928         (window-max-delta-1, window-resize, window--resize-siblings)
13929         (window--resize-this-window, adjust-window-trailing-edge)
13930         (split-window, balance-windows-1)
13931         (shrink-window-if-larger-than-buffer):
13932         * calendar/calendar.el (calendar-generate-window):
13933         * help.el (resize-temp-buffer-window): Adjust callers accordingly.
13935 2011-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13937         * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
13938         in place (bug#9907).
13939         (eshell-subcommand-arg-values, eshell-rewrite-named-command)
13940         (eshell-rewrite-if-command, eshell-rewrite-for-command)
13941         (eshell-structure-basic-command, eshell-rewrite-while-command)
13942         (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
13943         (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
13944         (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
13945         (eshell-do-pipelines-synchronously, eshell-eval-command):
13946         Use backquotes and prefer setq to set.
13947         (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
13948         (eshell-macrop): Use functionp.
13949         (eshell-do-eval): Handle multiple expressions in `while' body.
13951 2011-10-30  Chong Yidong  <cyd@gnu.org>
13953         * emulation/viper-cmd.el (viper-exec-change): Use push-mark
13954         instead of set-mark (Bug#9810).
13956 2011-10-30  Chong Yidong  <cyd@gnu.org>
13958         * window.el (split-window-below, split-window-right): Rename from
13959         split-window-above-each-other and split-window-side-by-side
13960         respectively.  All callers changed.
13961         (split-window-sensibly, split-window-sensibly): Use them.
13962         (split-window-keep-point): Doc fix.
13964         * isearch.el: Add isearch-scroll property to split-window-below
13965         and split-window-right.
13967         * follow.el (follow-mode):
13968         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13969         * progmodes/ada-xref.el (ada-gdb-application):
13970         * emulation/vip.el (vip-buffer-in-two-windows):
13971         * image-dired.el (image-dired-dired-with-window-configuration):
13972         * dired-x.el (dired-do-find-marked-files):
13973         * dired.el (dired-pop-to-buffer):
13974         * bs.el (bs--show-with-configuration):
13975         * vc/emerge.el (emerge-setup-windows):
13976         * textmodes/two-column.el (2C-two-columns):
13977         * textmodes/reftex-toc.el (reftex-toc):
13978         * progmodes/gdb-mi.el (gdb-setup-windows):
13979         * progmodes/fortran.el (fortran-window-create):
13980         * net/newst-treeview.el (newsticker--treeview-window-init):
13981         * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
13982         * emulation/tpu-edt.el (tpu-gold-map):
13983         * emulation/crisp.el (crisp-mode-map):
13984         * calendar/calendar.el (calendar-basic-setup): Callers changed.
13986 2011-10-29  Chong Yidong  <cyd@gnu.org>
13988         * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
13990         * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
13992         * textmodes/flyspell.el (flyspell-word): Fix char offset for
13993         forged Ispell output (Bug#7904).
13995         * emacs-lisp/package.el (package-refresh-contents): Add autoload.
13997 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13999         * doc-view.el: Avoid ugly errors about not finding nil.
14000         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
14001         (doc-view-dvipdf-program, doc-view-unoconv-program)
14002         (doc-view-ps2pdf-program, doc-view-pdftotext-program):
14003         Avoid nil or absolute file name as default value.
14004         (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
14006 2011-10-28  Alan Mackenzie  <acm@muc.de>
14008         * progmodes/cc-defs.el (c-version): -> 5.32.2.
14010 2011-10-28  Alan Mackenzie  <acm@muc.de>
14012         Amend the handling of c-beginning/end-of-defun in nested declaration
14013         scopes.
14015         * progmodes/cc-vars.el (c-defun-tactic): Move here from
14016         cc-langs.el.  Change it to a defcustom.
14018         * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
14019         cc-vars.el.
14021         * progmodes/cc-engine.el (c-beginning-of-statement-1):
14022         Prevent "class foo : bar" being spuriously recognized as a label.
14024         * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
14025         Add parameter `inclusive' (to include enclosing braces in the region).
14026         (c-widen-to-enclosing-decl-scope): New function.
14027         (c-while-widening-to-decl-block): New macro.
14028         (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
14029         outward for defun boundaries, and correspondingly change symbol
14030         `respect-enclosure' to `go-outward'.
14031         (c-declaration-limits): Change algorithm to report only the "innermost"
14032         defun's boundaries.
14034 2011-10-28  Deniz Dogan  <deniz@dogan.se>
14036         * net/rcirc.el (rcirc-mode): Use hard newlines.
14038 2011-10-28  Alan Mackenzie  <acm@muc.de>
14040         Amend to indent and fontify macros "which include their own semicolon"
14041         correctly, using the "virtual semicolon" mechanism.
14043         * progmodes/cc-defs.el: Update "virtual semicolon" comments.
14045         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
14046         Recode to scan one line at a time rather than having \n and \r
14047         explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
14048         (c-forward-label): Amend for virtual semicolons.
14049         (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
14051         * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
14052         of the new C macros.
14054         * progmodes/cc-langs.el (c-at-vsemi-p-fn):
14055         (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
14056         (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
14057         (c-opt-cpp-macro-define): Make into a full language variable.
14058         (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
14059         AWK Mode (including \n, \r) removed, no longer needed.
14061         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
14062         Invoke c-make-macro-with-semi-re.
14064         * progmodes/cc-vars.el (c-macro-with-semi-re):
14065         (c-macro-names-with-semicolon): New variables.
14066         (c-make-macro-with-semi-re): New function.
14068 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14070         * vc/log-edit.el: Fill empty field rather than adding new one.
14071         (log-edit-add-field): New function.
14072         (log-edit-insert-changelog): Use it.
14074 2011-10-28  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
14076         * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
14078 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14080         * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
14081         (gdb--check-interpreter): New function.
14082         (gdb): Use it.
14084 2011-10-27  Glenn Morris  <rgm@gnu.org>
14086         * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
14087         (least-positive-float, least-negative-float)
14088         (least-positive-normalized-float, least-negative-normalized-float)
14089         (float-epsilon, float-negative-epsilon):
14090         Remove unnecessary declarations.
14092         * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
14093         * emacs-lisp/cl.el (most-positive-float, most-negative-float)
14094         (least-positive-float, least-negative-float)
14095         (least-positive-normalized-float, least-negative-normalized-float)
14096         (float-epsilon, float-negative-epsilon): Add doc-strings,
14097         based on those in cl.texi.
14099         * files.el (set-visited-file-name): If the major-mode changed,
14100         reload the local variables.  (Bug#9796)
14102 2011-10-27  Chong Yidong  <cyd@gnu.org>
14104         * subr.el (change-major-mode-after-body-hook): New hook.
14105         (run-mode-hooks): Run it.
14107         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14108         Use change-major-mode-before-body-hook.
14110         * simple.el (fundamental-mode):
14111         * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
14112         change introducing fundamental-mode-hook.
14114 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
14116         * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
14118 2011-10-26  Michael Albinus  <michael.albinus@gmx.de>
14120         * ido.el (ido-file-name-all-completions-1): Do not require
14121         tramp.el explicitly.  (Bug#7583)
14123 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14125         * progmodes/octave-mod.el:
14126         * progmodes/octave-inf.el: Update maintainer.
14128 2011-10-26  Chong Yidong  <cyd@gnu.org>
14130         * subr.el (with-wrapper-hook): Rewrite doc.
14132 2011-10-25  Michael Albinus  <michael.albinus@gmx.de>
14134         * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
14135         filenames "/method:foo:".  (Bug#9793)
14137 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
14139         * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
14140         (bug#9865).
14142 2011-10-24  Glenn Morris  <rgm@gnu.org>
14144         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.  (Bug#9819)
14146 2011-10-24  Michael Albinus  <michael.albinus@gmx.de>
14148         * notifications.el: Add the requirement of a running D-Bus session
14149         bus to the Commentary.
14151 2011-10-24  Juri Linkov  <juri@jurta.org>
14153         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
14154         `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
14155         (Bug#9364)
14157 2011-10-24  Juri Linkov  <juri@jurta.org>
14159         * info.el (Info-following-node-name-re): Add newline to the list
14160         of allowed characters for leading space.  (Bug#9824)
14162 2011-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14164         * progmodes/octave-inf.el (inferior-octave-mode-map):
14165         Fix C-c C-h binding.
14166         * progmodes/octave-mod.el (octave-help): Remove.
14168 2011-10-23  Michael Albinus  <michael.albinus@gmx.de>
14170         Sync with Tramp 2.2.3.
14172         * net/tramp-cache.el (top): Pacify byte-compiler using
14173         `init-file-user' and `site-run-file'.
14175         * net/trampver.el: Update release number.
14177 2011-10-23  Chong Yidong  <cyd@gnu.org>
14179         * files.el (toggle-read-only): Remove obsolete comment about
14180         version control.
14182         * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
14183         for toggle-read-only.  Note that this hasn't called vc-next-action
14184         since 2008-05-02, though it wasn't documented at the time.
14186         * vc/ediff-init.el (ediff-toggle-read-only-function):
14187         Use toggle-read-only.
14189 2011-10-22  Alan Mackenzie  <bug-cc-mode@gnu.org>
14191         Fix bug #9560, sporadic wrong indentation; improve instrumentation
14192         of c-parse-state.
14194         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
14195         correct faulty logical expression.
14196         (c-parse-state-state, c-record-parse-state-state):
14197         (c-replay-parse-state-state): New defvar/defuns.
14198         (c-debug-parse-state): Use new functions.
14200 2011-10-22  Martin Rudalics  <rudalics@gmx.at>
14202         * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
14203         last fix.  Use window-in-direction correctly.
14205 2011-10-21  Chong Yidong  <cyd@gnu.org>
14207         * progmodes/idlwave.el (idlwave-mode):
14208         * progmodes/vera-mode.el (vera-mode): No need to set
14209         require-final-newline; that's done in prog-mode.
14210         Suggested by Stefan Monnier.
14212 2011-10-21  Martin Rudalics  <rudalics@gmx.at>
14214         * mouse.el (mouse-drag-window-above)
14215         (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
14216         (mouse-drag-mode-line-1, mouse-drag-header-line)
14217         (mouse-drag-vertical-line-rightward-window): Remove.
14218         (mouse-drag-line): New function.
14219         (mouse-drag-mode-line, mouse-drag-header-line)
14220         (mouse-drag-vertical-line): Call mouse-drag-line.
14221         * window.el (window-at-side-p, windows-at-side): New functions.
14223 2011-10-21  Ulrich Mueller  <ulm@gentoo.org>
14225         * tar-mode.el (tar-grind-file-mode):
14226         Fix handling of setuid/setgid, handle sticky bit.  (Bug#9817)
14228 2011-10-21  Chong Yidong  <cyd@gnu.org>
14230         * progmodes/idlwave.el (idlwave-mode):
14231         * progmodes/vera-mode.el (vera-mode):
14232         Use mode-require-final-newline.
14234 2011-10-20  Glenn Morris  <rgm@gnu.org>
14236         * vc/vc.el (vc-next-action): Handle removed directories.  (Bug#9781)
14238 2011-10-20  Christoph Scholtes  <cschol2112@googlemail.com>
14240         * emulation/cua-base.el (cua-set-mark): Fix case of string.
14242 2011-10-20  Chong Yidong  <cyd@gnu.org>
14244         * emulation/cua-base.el (cua-mode):
14245         * mail/footnote.el (footnote-mode):
14246         * mail/mailabbrev.el (mail-abbrevs-mode):
14247         * net/xesam.el (xesam-minor-mode):
14248         * progmodes/bug-reference.el (bug-reference-mode):
14249         * progmodes/cap-words.el (capitalized-words-mode):
14250         * progmodes/compile.el (compilation-minor-mode)
14251         (compilation-shell-minor-mode):
14252         * progmodes/gud.el (gud-tooltip-mode):
14253         * progmodes/hideif.el (hide-ifdef-mode):
14254         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
14255         * progmodes/subword.el (subword-mode):
14256         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
14257         * progmodes/which-func.el (which-function-mode):
14258         * term/tvi970.el (tvi970-set-keypad-mode):
14259         * term/vt100.el (vt100-wide-mode):
14260         * textmodes/flyspell.el (flyspell-mode):
14261         * textmodes/ispell.el (ispell-minor-mode):
14262         * textmodes/nroff-mode.el (nroff-electric-mode):
14263         * textmodes/paragraphs.el (use-hard-newlines):
14264         * textmodes/refill.el (refill-mode):
14265         * textmodes/reftex.el (reftex-mode):
14266         * textmodes/rst.el (rst-minor-mode):
14267         * textmodes/sgml-mode.el (html-autoview-mode)
14268         (sgml-electric-tag-pair-mode):
14269         * textmodes/tex-mode.el (latex-electric-env-pair-mode):
14270         * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
14271         * emulation/crisp.el (crisp-mode):
14272         * emacs-lisp/eldoc.el (eldoc-mode):
14273         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
14274         minor mode behavior.
14276 2011-10-19  Juri Linkov  <juri@jurta.org>
14278         * descr-text.el (describe-char): Add #x2010 and #x2011 to
14279         the list of hard-coded chars with escape-glyph face.
14281 2011-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14283         * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
14285 2011-10-19  Michael Albinus  <michael.albinus@gmx.de>
14287         * net/tramp.el (tramp-connectable-p): Make a stronger check on a
14288         running process.
14290 2011-10-19  Glenn Morris  <rgm@gnu.org>
14292         * vc/vc-bzr.el (vc-bzr-after-dir-status):
14293         Ignore ignored files.  (Bug#9726)
14295 2011-10-19  Chong Yidong  <cyd@gnu.org>
14297         Doc fix for minor modes, stating that an omitted argument enables
14298         the mode unconditionally when called from Lisp.
14300         * abbrev.el (abbrev-mode):
14301         * allout.el (allout-mode):
14302         * autoinsert.el (auto-insert-mode):
14303         * autoarg.el (autoarg-mode, autoarg-kp-mode):
14304         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
14305         (global-auto-revert-mode):
14306         * battery.el (display-battery-mode):
14307         * composite.el (global-auto-composition-mode)
14308         (auto-composition-mode):
14309         * delsel.el (delete-selection-mode):
14310         * desktop.el (desktop-save-mode):
14311         * dired-x.el (dired-omit-mode):
14312         * dirtrack.el (dirtrack-mode):
14313         * doc-view.el (doc-view-minor-mode):
14314         * double.el (double-mode):
14315         * electric.el (electric-indent-mode, electric-pair-mode):
14316         * emacs-lock.el (emacs-lock-mode):
14317         * epa-hook.el (auto-encryption-mode):
14318         * follow.el (follow-mode):
14319         * font-core.el (font-lock-mode):
14320         * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
14321         * help.el (temp-buffer-resize-mode):
14322         * hilit-chg.el (highlight-changes-mode)
14323         (highlight-changes-visible-mode):
14324         * hi-lock.el (hi-lock-mode):
14325         * hl-line.el (hl-line-mode, global-hl-line-mode):
14326         * icomplete.el (icomplete-mode):
14327         * ido.el (ido-everywhere):
14328         * image-file.el (auto-image-file-mode):
14329         * image-mode.el (image-minor-mode):
14330         * iswitchb.el (iswitchb-mode):
14331         * jka-cmpr-hook.el (auto-compression-mode):
14332         * linum.el (linum-mode):
14333         * longlines.el (longlines-mode):
14334         * master.el (master-mode):
14335         * mb-depth.el (minibuffer-depth-indicate-mode):
14336         * menu-bar.el (menu-bar-mode):
14337         * minibuf-eldef.el (minibuffer-electric-default-mode):
14338         * mouse-sel.el (mouse-sel-mode):
14339         * msb.el (msb-mode):
14340         * mwheel.el (mouse-wheel-mode):
14341         * outline.el (outline-minor-mode):
14342         * paren.el (show-paren-mode):
14343         * recentf.el (recentf-mode):
14344         * reveal.el (reveal-mode, global-reveal-mode):
14345         * rfn-eshadow.el (file-name-shadow-mode):
14346         * ruler-mode.el (ruler-mode):
14347         * savehist.el (savehist-mode):
14348         * scroll-all.el (scroll-all-mode):
14349         * scroll-bar.el (scroll-bar-mode):
14350         * server.el (server-mode):
14351         * shell.el (shell-dirtrack-mode):
14352         * simple.el (auto-fill-mode, transient-mark-mode)
14353         (visual-line-mode, overwrite-mode, binary-overwrite-mode)
14354         (line-number-mode, column-number-mode, size-indication-mode)
14355         (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
14356         * strokes.el (strokes-mode):
14357         * time.el (display-time-mode):
14358         * t-mouse.el (gpm-mouse-mode):
14359         * tool-bar.el (tool-bar-mode):
14360         * tooltip.el (tooltip-mode):
14361         * type-break.el (type-break-mode-line-message-mode)
14362         (type-break-query-mode):
14363         * view.el (view-mode):
14364         * whitespace.el (whitespace-mode, whitespace-newline-mode)
14365         (global-whitespace-mode, global-whitespace-newline-mode):
14366         * xt-mouse.el (xterm-mouse-mode): Doc fix.
14368         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14369         Fix autogenerated docstring.
14371 2011-10-19  Juri Linkov  <juri@jurta.org>
14373         * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
14374         by checking environment variables "DESKTOP_SESSION" and
14375         "XDG_CURRENT_DESKTOP".  (Bug#9779)
14377 2011-10-19  Juri Linkov  <juri@jurta.org>
14379         * net/browse-url.el (browse-url-browser-function): Add "Chromium".
14380         (browse-url-chromium-program, browse-url-chromium-arguments):
14381         New defcustoms.
14382         (browse-url-default-browser): Check for `browse-url-chromium' and
14383         call `browse-url-chromium-program'.
14384         (browse-url-chromium): New command.  (Bug#9779)
14386 2011-10-18  Juanma Barranquero  <lekktu@gmail.com>
14388         * facemenu.el (list-colors-duplicates): On Windows, detect more
14389         duplicates by assuming that only colors matching "^System" are
14390         special "system colors".  (Bug#9722)
14392 2011-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14394         * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
14395         to distinguish the author from the committer.
14397 2011-10-18  Michael Albinus  <michael.albinus@gmx.de>
14399         * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
14401 2011-10-18  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
14403         * international/mule.el (sgml-html-meta-auto-coding-function):
14404         Add support for detecting encoding in HTML5 specified only as
14405         <meta charset="UTF-8">.  Implementation just makes http-equiv and
14406         content-type parts from HTML4 encoding string optional.  (Bug#9716)
14408 2011-10-18  Glenn Morris  <rgm@gnu.org>
14410         * vc/vc.el (vc-initial-comment): Mark as obsolete.  (Bug#9745)
14412 2011-10-18  Chong Yidong  <cyd@gnu.org>
14414         * faces.el (cursor): Doc fix.
14416 2011-10-17  Chong Yidong  <cyd@gnu.org>
14418         * font-lock.el (font-lock-maximum-size): Mark as obsolete.
14420 2011-10-17  Ryan Barrett  <emacs@ryanb.org>  (tiny change)
14422         * dirtrack.el (dirtrack): Support shell buffers with path
14423         prefixes, e.g. tramp-based remote shells.  (Bug#9647)
14425 2011-10-17  Teodor Zlatanov  <tzz@lifelogs.com>
14427         * json.el: Bump version to 1.3 and note change in History.
14428         (json-alist-p, json-plist-p): Rewrite to avoid recursion.
14430 2011-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14432         * comint.el (comint-insert-input, comint-send-input)
14433         (comint-get-old-input-default, comint-backward-matching-input)
14434         (comint-next-prompt): Use nil instead of `input' for field property of
14435         past user input (bug#114).
14437         * minibuffer.el (completion--replace): Inherit surrounding properties
14438         (bug#114).
14439         (minibuffer-complete-and-exit): Use it.
14441         * comint.el (comint--table-subvert): Quote the all-completions output
14442         (bug#9160).
14444 2011-10-17  Martin Rudalics  <rudalics@gmx.at>
14446         * ido.el (ido-default-buffer-method): Remove redundant :type entry.
14448         * menu-bar.el (menu-bar-file-menu): Add entry for making new
14449         window on right of selected.  (Bug#9350) Reword other window
14450         entries and separate them from frame entries.
14452 2011-10-15  Glenn Morris  <rgm@gnu.org>
14454         * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
14455         Doc fixes.
14457 2011-10-15  Chong Yidong  <cyd@stupidchicken.com>
14459         * net/network-stream.el (network-stream-open-starttls):
14460         Improve detection of failure due to lack of TLS support.
14462         * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
14463         putting the input text in front and in bold.
14465 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14467         * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
14469         * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
14470         empty buffer.
14472         * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
14473         unread-command-events rather than pushing yet-another event.
14475 2011-10-14  Eli Zaretskii  <eliz@gnu.org>
14477         * mail/sendmail.el (sendmail-query-once): Improve the wording of
14478         the explanation of the possible choices.  Make the options passed
14479         to completing-read shorter.
14481 2011-10-13  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
14483         * textmodes/flyspell.el (flyspell-large-region): Make sure
14484         extended character mode is used if defined (Bug#1339).
14486 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
14488         * simple.el (what-cursor-position): Fix the display of the
14489         character info for LRE, LRO, RLE, and RLO characters by appending
14490         an invisible PDF.
14492 2011-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14494         * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
14495         even in case of error; add debug spec; simplify data flow.
14496         (with-timeout-handler): Remove.
14498 2011-10-12  Michael Albinus  <michael.albinus@gmx.de>
14500         Fix Bug#6019, Bug#9315.
14502         * files.el (set-auto-mode): Call `file-name-sans-versions' for the
14503         complete `buffer-file-name', the local file name part could look
14504         remotely (for example on VMS).
14506         * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
14507         `tramp-run-real-handler'.
14508         (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
14509         already quoted by '"'.
14511         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
14512         Let `file-name-handler-alist' be nil, the local file name part
14513         could look remotely (for example on VMS).
14515 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14517         * textmodes/flyspell.el (flyspell-word): Move with-local-quit
14518         from here...
14519         (flyspell-post-command-hook): ...to here.
14521 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14523         * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
14524         if not needed.
14525         (sendmail-query-once): Remove OS dependencies.  Make it a 3-way choice
14526         using completion.  Protect against "slow" callers.
14527         Remove the "message hack".
14529 2011-10-11  Juri Linkov  <juri@jurta.org>
14531         * isearch.el (isearch-lazy-highlight-word): New variable.
14532         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
14533         Use it.  (Bug#9727)
14535 2011-10-11  Glenn Morris  <rgm@gnu.org>
14537         * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
14538         like f90-previous-statement does.
14540 2011-10-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14542         * eshell/eshell.el (eshell-command): History should be saved
14543         only in interactive use, to avoid error.
14545 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14547         * minibuffer.el (completion-file-name-table): Fix last change,
14548         i.e. ignore normal errors but not the other ones.
14550 2011-10-10  Martin Rudalics  <rudalics@gmx.at>
14552         * window.el (special-display-buffer-names)
14553         (special-display-regexps): Remove some remnants of earlier
14554         changes from doc-strings.
14555         (quit-windows-on): New function.
14557         * vc/vc.el (vc-revert, vc-rollback):
14558         * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
14559         instead of deleting windows.  (Bug#4557) (Bug#5310) (Bug#5556)
14560         (Bug#6183) (Bug#7074) (Bug#7447)
14562 2011-10-09  Martin Rudalics  <rudalics@gmx.at>
14564         * window.el (frame-auto-hide-function): Add version tag.
14565         (Bug#9699)
14567 2011-10-09  Michael Albinus  <michael.albinus@gmx.de>
14569         * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
14570         condition.
14572 2011-10-09  Leo Liu  <sdl.web@gmail.com>
14574         * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
14575         (Bug#9701)
14577 2011-10-08  Glenn Morris  <rgm@gnu.org>
14579         * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
14580         before the first code statement zero indent.  (Bug#9690)
14582 2011-10-08  Chong Yidong  <cyd@stupidchicken.com>
14584         * simple.el (count-words-region): Always count in the region.
14585         Report the number of lines and characters too.
14586         (count-words): New command, which counts in the buffer if the
14587         region is inactive, as count-words-region used to.
14588         (count-words--message): New function.  Handle plurals.
14589         (count-lines-region): Make it an alias for count-words-region.
14591         * bindings.el (esc-map): Replace count-lines-region with
14592         count-words-region.
14594 2011-10-08  Martin Rudalics  <rudalics@gmx.at>
14596         * window.el (window--delete): Delete dedicated frame
14597         unconditionally when argument KILL is non-nil.  (Bug#9699)
14598         (switch-to-buffer): Fix doc-string typo.
14600 2011-10-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14602         * eshell/eshell.el (eshell-command): Avoid using hooks.
14604 2011-10-07  Chong Yidong  <cyd@stupidchicken.com>
14606         * bindings.el ([M-left],[M-right]): Bind to left-word and
14607         right-word respectively.
14609 2011-10-07  Glenn Morris  <rgm@gnu.org>
14611         * cus-start.el (debug-on-quit): Fix custom type.
14613 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14615         * subr.el (define-key-after): Clarify that the function is not
14616         useful for non-menu keymaps.
14618         * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
14620 2011-10-06  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14622         * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
14623         in current minibuffer (Fix bug with recursive minibuffers).
14625 2011-10-06  Chong Yidong  <cyd@stupidchicken.com>
14627         * progmodes/gdb-mi.el (gdb): Doc fix.
14629 2011-10-05  Martin Rudalics  <rudalics@gmx.at>
14631         * window.el (frame-auto-hide-function): New option replacing
14632         frame-auto-delete.  Suggested by Stefan Monnier.
14633         (window--delete): Call frame-auto-hide-function instead of
14634         investigating frame-auto-delete.
14635         (window-point-1, set-window-point-1): New functions.
14636         (window-in-direction, record-window-buffer, window-state-get-1)
14637         (display-buffer-record-window): Use window-point-1 instead of
14638         window-point.
14639         (set-window-buffer-start-and-point): Use set-window-point-1.
14641 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14643         * emacs-lisp/edebug.el: Heed checkdoc recommendations.
14645 2011-10-05  Glenn Morris  <rgm@gnu.org>
14647         * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
14648         (perl-calculate-indent): Suppress scan errors.  (Bug#2205)
14650 2011-10-05  Leo Liu  <sdl.web@gmail.com>
14652         * subr.el (read-char-choice): Fix argument to buffer-live-p which
14653         works with buffer object.
14655 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14657         * mpc.el (mpc-tool-bar-map): Add labels.
14659 2011-10-04  Glenn Morris  <rgm@gnu.org>
14661         * calendar/holidays.el (calendar-check-holidays): Doc fix.
14663 2011-10-04  Martin Rudalics  <rudalics@gmx.at>
14665         * window.el (window--delete): New function.
14666         (frame-auto-delete): Resuscitate option.
14667         (bury-buffer, replace-buffer-in-windows)
14668         (quit-window): Rewrite using window--delete.
14669         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14670         Pass display-buffer-mark-dedicated to window--display-buffer-2
14671         (Bug#9639).
14673 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14675         * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
14676         returns a list (bug#9554).  Add remote file name completion.
14677         * comint.el (comint--table-subvert): Curry and get quote&unquote
14678         functions as arguments.
14679         (comint--complete-file-name-data): Adjust call accordingly.
14680         * pcomplete.el (pcomplete--table-subvert): Remove.
14681         (pcomplete-completions-at-point): Use comint--table-subvert instead.
14683         * minibuffer.el (completion-table-case-fold): Use currying.
14684         (completion--styles-type, completion--cycling-threshold-type):
14685         New constants.
14686         (completion-styles, completion-category-overrides)
14687         (completion-cycle-threshold): Use them.
14688         * pcomplete.el (pcomplete-completions-at-point): Adjust call to
14689         completion-table-case-fold.
14691 2011-10-03  Stephen Berman  <stephen.berman@gmx.net>
14693         * minibuffer.el (completion-category-overrides): Fix type of styles
14694         and add more user friendly tags (bug#9660).
14696 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14698         * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
14699         (mule-input-method-string): New widget.
14700         (default-input-method, language-info-custom-alist): Use it.
14702 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14704         * pcomplete.el: Require comint.
14705         (pcomplete--common-suffix): Remove.
14706         (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
14707         (pcomplete--table-subvert): Sync with comint--table-subvert.
14708         (pcomplete--entries): Use comint-completion-file-name-table.
14709         * comint.el (comint-unquote-filename): Simplify.
14710         (comint-completion-file-name-table): New function (bug#9616).
14711         (comint--complete-file-name-data): Use it.
14713         * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
14714         (pcmpl-gnu-tar-buffer): Remove.
14715         (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
14716         around.  Make sure pcomplete-suffix-list is only changed temporarily.
14717         Don't look inside the tar's file if it's too large.
14719 2011-10-01  Chong Yidong  <cyd@stupidchicken.com>
14721         * cus-edit.el (custom-mode-map):
14722         * epa.el (epa-key-list-mode-map):
14723         * man.el (Man-mode-map):
14724         * startup.el (splash-screen-keymap):
14725         * simple.el (special-mode-map): Use scroll-up-command and
14726         scroll-down-command.
14728         * progmodes/idlw-help.el (idlwave-help-mode-map):
14729         * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
14730         * net/newst-plainview.el (newsticker-mode-map):
14731         * emulation/ws-mode.el (wordstar-mode-map):
14732         * emulation/vi.el (vi-com-map):
14733         * calc/calc-graph.el (calc-graph-show-dumb):
14734         * term/sun.el (terminal-init-sun):
14735         * term/ns-win.el (global-map):
14736         * progmodes/grep.el (grep-mode-map):
14737         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
14738         * mail/rmail.el (rmail-mode-map):
14739         * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
14741         * custom.el (custom-safe-themes, load-theme): Treat value of t for
14742         custom-safe-themes as special.
14744 2011-10-01  Julien Danjou  <julien@danjou.info>
14746         * notifications.el (notifications-notify): Fix docstring.
14748 2011-10-01  Per Starbäck  <per@starback.se>
14750         * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call.  (Bug#9643)
14752 2011-09-30  Martin Rudalics  <rudalics@gmx.at>
14754         * startup.el (command-line-1): Fix last fix by inserting
14755         initial-scratch-message into *scratch* before displaying it.
14756         (Bug#9605) and (Bug#9636)
14758 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
14760         * simple.el (line-move): If auto-hscroll-mode is disabled and the
14761         window is hscrolled, move by logical lines.  (Bug#9607)
14762         (line-move-visual): Update the doc string to the above effect.
14764 2011-09-29  Martin Rudalics  <rudalics@gmx.at>
14766         * window.el (display-buffer-record-window): When WINDOW is the
14767         selected window use `point' instead of `window-point'.  (Bug#9626)
14769         * startup.el (command-line-1): Use insert-before-markers when
14770         inserting initial-scratch-message.  (Bug#9605)
14772         * help.el (help-window): Remove variable.
14774 2011-09-29  Glenn Morris  <rgm@gnu.org>
14776         * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
14778 2011-09-29  Juanma Barranquero  <lekktu@gmail.com>
14780         * descr-text.el (describe-char-categories): Accept category
14781         descriptions more than one line long.
14783 2011-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14785         * simple.el (delete-trailing-whitespace): Fix last change.
14787         * progmodes/perl-mode.el (perl-syntax-propertize-function):
14788         Don't confuse "y => 3" as the beginning of a `y' operation.
14790         * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
14791         object has more than 4 slots (bug#9613).
14793 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
14795         * subr.el (with-output-to-temp-buffer):
14796         * net/quickurl.el (quickurl, quickurl-browse-url):
14797         Fix typos in docstrings.
14799 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
14801         * minibuffer.el (completion-styles)
14802         (completion-category-overrides): Cross reference each other in doc
14803         strings.
14805 2011-09-27  Glenn Morris  <rgm@gnu.org>
14807         * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
14808         to split-string.  (Bug#9606)
14810 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14812         * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
14813         (bug#9615).
14815 2011-09-27  Chong Yidong  <cyd@stupidchicken.com>
14817         * emacs-lisp/package.el (list-packages): Fix echo area message.
14819 2011-09-27  Leo Liu  <sdl.web@gmail.com>
14821         * ido.el (ido-read-internal): Accept cons cell HIST arg.
14823 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
14825         * net/dbus.el (dbus-unregister-object): Don't release services for
14826         registered signals.  (Bug#9581)
14828 2011-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
14830         * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
14831         function that picks between cfengine 2 and 3 support
14832         automatically.  Update docs accordingly.
14834 2011-09-22  Kenichi Handa  <handa@m17n.org>
14836         * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
14837         ZERO.
14838         (indian-itrans-v5-table-for-tamil): New variable.
14839         (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
14841 2011-09-22  Ken Manheimer  <ken.manheimer@gmail.com>
14843         * allout.el (allout-this-command-hid-stuff): Buffer-local variable
14844         that's true if the current command involved collapsing of text.
14845         It's reset to false at the beginning of the next command.
14846         (allout-post-command-business): Move the cursor to the beginning
14847         of entry if the cursor is hidden and collapsing activity just
14848         happened.
14850 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
14852         * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
14853         tracking (Bug#9541).
14855 2011-09-24  Ulf Jasper  <ulf.jasper@web.de>
14857         * net/newst-reader.el (newsticker-html-renderer)
14858         (newsticker-show-news): Automatically load html rendering package
14859         if newsticker-html-renderer is set.  Fixes "Warning: defvar ignored
14860         because w3m-fill-column is let-bound" and the error "Symbol's value
14861         as variable is void: w3m-fill-column".
14863 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
14865         * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
14866         Release services only if they are defined.  (Bug#9581)
14868 2011-09-23  Richard Stallman  <rms@gnu.org>
14870         * textmodes/paragraphs.el (forward-sentence): For backwards case,
14871         distinguish start of paragraph from start of its text.
14873         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
14875         * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
14876         (rmail-generate-viewer-buffer): Put that hook on view buffer.
14877         (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
14879 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
14881         * international/mule-diag.el (mule-diag): Insert a newline after
14882         each fontset description.
14884 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14886         * simple.el (delete-trailing-whitespace):
14887         Document last change; simplify.
14889 2011-09-23  Peter J. Weisberg  <pj@irregularexpressions.net>
14891         * simple.el (delete-trailing-whitespace): Also delete
14892         extra newlines at the end of the buffer.
14894         * textmodes/picture.el: Make motion commands obey shift-select-mode.
14895         (picture-newline): Use forward-line so as to ignore fields.
14897 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14899         * subr.el (with-wrapper-hook): Fix edebug spec.
14901 2011-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14903         * simple.el (kill-line): Note effect of `show-trailing-whitespace'
14904         (bug#4538).
14906 2011-09-23  Michael Albinus  <michael.albinus@gmx.de>
14908         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
14909         Fix nasty bug using wrong cached values.
14911 2011-09-23  Alan Mackenzie  <acm@muc.de>
14913         * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
14915 2011-09-23  Chong Yidong  <cyd@stupidchicken.com>
14917         * window.el (pop-to-buffer): Ensure right window is selected if we
14918         chose another frame.
14920 2011-09-22  Eli Zaretskii  <eliz@gnu.org>
14922         * simple.el (what-cursor-position): Use get-char-property-change
14923         and next-single-char-property-change, to be able to show display
14924         properties that come from overlays as well as text properties.
14926 2011-09-22  Chong Yidong  <cyd@stupidchicken.com>
14928         * window.el (pop-to-buffer-same-window): New (reinstated) fun.
14930         * cmuscheme.el (run-scheme, switch-to-scheme):
14931         * cus-edit.el (customize-group, custom-buffer-create)
14932         (customize-browse):
14933         * info.el (info):
14934         * shell.el (shell):
14935         * mail/sendmail.el (mail):
14936         * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
14938 2011-09-22  Richard Stallman  <rms@gnu.org>
14940         * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
14941         move back only to line beg, don't move back over blank lines.
14943 2011-09-22  Michael Albinus  <michael.albinus@gmx.de>
14945         * files.el (copy-directory): Set directory attributes only in case
14946         they could be retrieved from the source directory.  (Bug#9565)
14948 2011-09-22  Dima Kogan  <dkogan@secretsauce.net>  (tiny change)
14950         * progmodes/hideshow.el (hs-looking-at-block-start-p)
14951         (hs-find-block-beginning, hs-hide-level-recursive):
14952         Ignore strings as well as comments.  (Bug#9502)
14954 2011-09-22  Andrew Schein  <andrew@andrewschein.com>  (tiny change)
14956         * progmodes/sql.el (sql-comint-postgres):
14957         Convert port number to a string.  (Bug#9566)
14959 2011-09-22  Martin Rudalics  <rudalics@gmx.at>
14961         * window.el (quit-window): Undedicate window when switching to
14962         previous buffer.  Reported by Thierry Volpiatto
14963         <thierry.volpiatto@gmail.com>.
14964         (special-display-popup-frame): When popping up a new frame reset
14965         its previous buffers to nil.  Simplify code.
14967 2011-09-21  Michael Albinus  <michael.albinus@gmx.de>
14969         * net/tramp.el (tramp-handle-shell-command): Set process sentinel
14970         and process filter, as done also in `shell-command'.
14972 2011-09-21  Martin Rudalics  <rudalics@gmx.at>
14974         * window.el (set-window-buffer-start-and-point):
14975         Call set-window-start with NOFORCE argument t.
14976         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14977         (quit-window): Reword doc-string.  Handle new format of
14978         quit-restore parameter.  Don't delete window if it has a
14979         previous buffer we can show instead of the present one.
14980         (display-buffer-record-window): Rewrite using a new format for
14981         the quit-restore window parameter
14982         (special-display-popup-frame, display-buffer-same-window)
14983         (display-buffer-reuse-window, display-buffer-pop-up-frame)
14984         (display-buffer-pop-up-window, display-buffer-use-some-window):
14985         Adapt symbol passed to display-buffer-record-window.
14986         * help.el (help-window-setup): Handle new format of quit-restore
14987         parameter.
14989 2011-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14991         * faces.el (face-list): Fix docstring (bug#9564).
14993         * window.el (display-buffer--action-function-custom-type):
14994         Don't include internal functions in the Custom interface.
14996 2011-09-20  Juri Linkov  <juri@jurta.org>
14998         * info.el (Info-history-skip-intermediate-nodes): New defcustom.
14999         (Info-forward-node, Info-backward-node, Info-next-preorder)
15000         (Info-last-preorder): Use it.  (Bug#9528)
15002 2011-09-20  Juri Linkov  <juri@jurta.org>
15004         * info.el (Info-last-preorder): Visit last menu item only when
15005         `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
15007 2011-09-20  Julien Danjou  <julien@danjou.info>
15009         * password-cache.el (password-cache-remove): Remove entries even if the
15010         value is nil, so that password with a nil value (negative caching) is
15011         possible to invalidate.
15013 2011-09-20  Lawrence Mitchell  <wence@gmx.li>
15015         * progmodes/f90.el (f90-break-line): If breaking inside comment delete
15016         all whitespace around breakpoint.  (Bug#9553)
15017         (f90-find-breakpoint): Only break at whitespace inside a comment.
15019 2011-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15021         * minibuffer.el (completion-file-name-table): Keep track of errors.
15022         (completion-table-with-predicate): Handle the case where pred1 is nil.
15023         * pcomplete.el (pcomplete-completions-at-point): Simplify.
15025 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15027         * emacs-lisp/debug.el (debugger-args): Give it a docstring.
15028         (debugger-return-value): Signal an error if the debugging context does
15029         not await any return value.
15031         * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
15032         * image-mode.el (image-toggle-display-text)
15033         (image-toggle-display-image): Stay away from evil `intangible'.
15035 2011-09-19  Leo Liu  <sdl.web@gmail.com>
15037         * replace.el (occur-revert-arguments): Make it permanent-local.
15038         (occur-mode): Don't call font-lock-defontify.
15040 2011-09-19  Chong Yidong  <cyd@stupidchicken.com>
15042         * net/ldap.el (ldap-search-internal): Don't push empty search
15043         result (Bug#9508).
15045 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15047         * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
15049 2011-09-19  Michael Albinus  <michael.albinus@gmx.de>
15051         * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
15052         Suggested by Liam Stitt <stittl@cuug.ab.ca>.
15054 2011-09-18  Juri Linkov  <juri@jurta.org>
15056         * buff-menu.el (Buffer-menu-mode-map):
15057         * dired.el (dired-mode-map):
15058         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
15059         (lisp-interaction-mode-map):
15060         * emacs-lisp/package.el (package-menu-mode-map):
15061         * epa.el (epa-key-list-mode-map):
15062         * menu-bar.el (menu-bar-showhide-tool-bar-menu)
15063         (menu-bar-options-menu):
15064         * outline.el (outline-mode-menu-bar-map):
15065         * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
15066         * vc/vc-dir.el (vc-dir-menu-map):
15067         * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
15068         Capitalize non-function content words in menu item strings.
15070         * dired.el (dired-mode-map): Add menu item for
15071         `image-dired-dired-toggle-marked-thumbs'.
15073 2011-09-18  Juri Linkov  <juri@jurta.org>
15075         * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
15076         to `isearch-case-fold-search' and restore its original value
15077         after the `isearch-mode' call.
15079 2011-09-18  Juri Linkov  <juri@jurta.org>
15081         * progmodes/grep.el (grep-process-setup): Don't check code for 1
15082         because `zgrep' returns 1 for successful matches (bug#9226).
15084 2011-09-18  Juri Linkov  <juri@jurta.org>
15086         * info.el (Info-extract-menu-node-name): Check the second match
15087         for empty string (second test-case of bug#9528).
15088         (Info-last-preorder): Let-bind `Info-history' to nil to not add
15089         intermediate nodes to the history (first test-case of bug#9528).
15091 2011-09-18  Juri Linkov  <juri@jurta.org>
15093         * info.el (Info-mode-syntax-table): New variable.
15094         (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
15096 2011-09-18  Juri Linkov  <juri@jurta.org>
15098         * info.el (Info-file-supports-index-cookies):
15099         Increment line-beginning-position's arg from 3 to 4 because makeinfo
15100         outputs one more line for long file names (bug#4142).
15102 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
15104         * newcomment.el (comment-normalize-vars): If prompting for
15105         comment-start, set comment-start-skip too (Bug#8424).
15107 2011-09-18  Johan Bockgård  <bojohan@gnu.org>
15109         * icomplete.el: Fix previous fix of Bug#5849.
15110         (icomplete-mode): Don't set completion-show-inline-help.
15111         (icomplete-minibuffer-setup): Set completion-show-inline-help
15112         locally during icompletion.
15114 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
15116         * woman.el (woman2-process-escapes): Don't delete unrecognized
15117         escapes (Bug#7843).
15119         * files.el (inhibit-first-line-modes-regexps): Add image files.
15120         (hack-local-variables-prop-line): Return nil for malformed
15121         prop-lines (Bug#9044).
15123 2011-09-18  Michael Albinus  <michael.albinus@gmx.de>
15125         * net/tramp.el (top): Don't require 'shell.
15126         (tramp-methods): Fix docstring.
15127         (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
15128         Return complete remote file name.  Handle "smb" case.
15129         Use `tramp-tmpdir', if defined for the respective method.
15130         (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
15132         * net/tramp-compat.el (top): Require 'shell.
15134         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
15135         (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
15136         `tramp-current-host'.
15137         (tramp-get-remote-tmpdir): Remove.
15139         * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
15140         `tramp-tmpdir' entries.
15141         (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
15142         (tramp-smb-handle-file-attributes): Ignore errors.
15143         (tramp-smb-wait-for-output): Check also for process end.
15145 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15147         * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
15148         when sending QUIT (bug#9312).
15150 2011-09-17  Chong Yidong  <cyd@stupidchicken.com>
15152         * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
15153         (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
15154         occur-mode-display-occurrence.
15155         (occur-edit-mode): Add usage message.
15156         (occur-cease-edit): New command.
15157         (occur-after-change-function): Use text properties to find the
15158         position of the prefix text.
15159         (occur-engine): Set stickiness of prefix text properties.
15161 2011-09-17  Glenn Morris  <rgm@gnu.org>
15163         * progmodes/etags.el (complete-tag):
15164         Fix call to completion-in-region.  (Bug#9526)
15166 2011-09-17  Juri Linkov  <juri@jurta.org>
15168         * textmodes/ispell.el (ispell-word): Add to the error message
15169         the word, ispell program name and current dictionary (bug#9121).
15170         (ispell-tex-arg-end): Capitalize "error" in the error message.
15172 2011-09-17  Andreas Schwab  <schwab@linux-m68k.org>
15174         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
15175         check.  (Bug#4251)
15177 2011-09-17  Juri Linkov  <juri@jurta.org>
15179         * window.el (window-safe-min-height, window-safe-min-width):
15180         Fix typos (followup to bug#9522).
15182 2011-09-17  Sven Joachim  <svenjoac@gmx.de>
15184         * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
15186 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
15188         * simple.el (line-move): If goal-column is set, move by logical
15189         lines, not by display lines.  (Bug#971)
15190         (next-line, previous-line, goal-column, line-move-visual): Doc fix
15191         to reflect the above change.
15193 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15195         * image.el (imagemagick-register-types): Use regexp-opt.
15197 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
15199         * window.el (display-buffer-base-action): Rename from
15200         display-buffer-default-action.  Make default value empty.
15201         (display-buffer-overriding-action): Convert to defvar.
15202         (display-buffer-fallback-action): New var.
15204 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
15206         * emacs-lisp/package.el (package-alist): Fix risky-local-variable
15207         declaration.
15208         (package--add-to-archive-contents): If there is a duplicate entry
15209         with an older version, remove it.
15210         (package-menu-mark-delete, package-menu-mark-install)
15211         (package-menu-mark-unmark): Make unused args optional.
15212         (package-menu-mark-obsolete-for-deletion):
15213         Use package-menu-get-status instead of a regexp search.
15214         (package-menu-get-status): Use tabulated-list-entry.
15215         (package-menu-mark-upgrades): New command.
15216         (package-menu-mode-map): Bind it to U.  Add it to menu bar.
15217         (package-menu-execute): Do installation before deletion.
15218         (package-menu-refresh, package-menu-execute): Use derived-mode-p
15219         instead of checking major-mode.
15220         (package-menu--find-upgrades): New function.
15222 2011-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15224         * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
15225         passwords in the log buffer.
15226         (smtpmail-process-filter): Update the process marker so that the
15227         "broken by peer" status message is inserted in the right place.
15229 2011-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
15231         * textmodes/bibtex.el (bibtex-complete-string-cleanup)
15232         (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
15233         bibtex-completion-at-point-function.
15234         (bibtex-completion-at-point-function): Use them.
15236         * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
15238         * mpc.el (mpc-constraints-tag-lookup): New function.
15239         (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
15240         also to browser "album|playlist".
15242 2011-09-14  Juri Linkov  <juri@jurta.org>
15244         * isearch.el (isearch-fail-pos): Add new arg `msg'.  Doc fix.
15245         (isearch-edit-string): Use length of `isearch-string' when
15246         `isearch-fail-pos' returns nil.
15247         (isearch-message): Remove duplicate code and call
15248         `isearch-fail-pos' with arg `t'.
15250 2011-09-14  Chong Yidong  <cyd@stupidchicken.com>
15252         * replace.el (occur-mode-goto-occurrence): Don't force using other
15253         window (Bug#9499).
15255         * dired-aux.el (dired-do-chmod): Don't provide initial input.
15257 2011-09-14  Martin Rudalics  <rudalics@gmx.at>
15259         * window.el (display-buffer-window): Remove.
15260         (display-buffer-record-window): Use help-setup window parameter
15261         instead of variable display-buffer-window.
15262         (display-buffer-function, special-display-buffer-names)
15263         (special-display-function): Mention help-setup parameter instead
15264         of display-buffer-window in doc-string.
15265         * help.el (help-window-setup): New argument help-window.
15266         Use help-window-setup parameter instead of display-buffer-window.
15267         Reword some messages.
15268         (with-help-window): Pass window used for displaying the buffer
15269         to help-window-setup.  Don't set display-buffer-window.
15271 2011-09-13  Glenn Morris  <rgm@gnu.org>
15273         * emacs-lisp/debug.el (debugger-make-xrefs):
15274         Preserve point.  (Bug#9462)
15276 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
15278         * window.el (window-deletable-p): Use next-frame.
15280 2011-09-13  Martin Rudalics  <rudalics@gmx.at>
15282         * window.el (window-auto-delete): Remove.
15283         (window-deletable-p): Remove argument FORCE.  Don't deal with
15284         dedication and previous buffers.
15285         (switch-to-prev-buffer): Don't delete window.
15286         (delete-windows-on): Delete a window's frame if and only if the
15287         window is dedicated.
15288         (replace-buffer-in-windows): Delete buffer's window or frame if
15289         and only if window is dedicated.
15290         (quit-window): Handle quit-restore as before last change.
15291         (bury-buffer): Delete window only if window-deletable-p returns t.
15293 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
15295         * window.el (window-deletable-p): Never delete the last frame on a
15296         given terminal.
15298 2011-09-13  Glenn Morris  <rgm@gnu.org>
15300         * help.el (describe-key-briefly): Copy previous standard-output change.
15302 2011-09-13  PJ Weisberg  <pj@irregularexpressions.net>
15304         * help.el (where-is): Respect non-standard standard-output.  (Bug#9030)
15306 2011-09-13  Glenn Morris  <rgm@gnu.org>
15308         * emacs-lisp/lisp-mode.el (lisp-indent-function):
15309         * progmodes/scheme.el (scheme-indent-function): Doc fixes.
15311 2011-09-12  Chong Yidong  <cyd@stupidchicken.com>
15313         * dired-aux.el (dired-mark-read-string): Don't return default
15314         value on empty input (Bug#9361).
15315         (dired-do-chxxx): Treat empty input for "touch" as no -t option.
15316         Omit initial minibuffer contents.
15317         (dired-do-chmod): Signal an error on empty input.
15318         (dired-mark-read-string): Don't return default on empty input.
15320         * files.el (file-modes-symbolic-to-number): Doc fix.
15322 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15324         * international/mule-cmds.el (ucs-completions): Remove.
15325         (read-char-by-name): Use complete-with-action instead; add metadata.
15327 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
15329         * window.el (display-buffer--action-function-custom-type)
15330         (display-buffer--action-custom-type): New vars.
15331         (display-buffer-alist, display-buffer-default-action)
15332         (display-buffer-overriding-action): Add defcustom types.
15334         * frame.el (delete-other-frames): Doc fix (Bug#276).
15336 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15338         * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
15340 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
15342         Change modes that used same-window-* vars to use switch-to-buffer.
15344         * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
15345         Use switch-to-buffer.
15347         * cus-edit.el (customize-group, custom-buffer-create)
15348         (customize-browse, custom-buffer-create-other-window):
15349         Use switch-to-buffer or switch-to-buffer-other-window.
15351         * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
15352         (Info-prev, Info-up, Info-speedbar-goto-node)
15353         (info-display-manual): Use switch-to-buffer.
15354         (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
15356         * mail/sendmail.el (mail): Use switch-to-buffer.
15357         (mail-recover): Use switch-to-buffer-other-window.
15359         * cmuscheme.el (run-scheme, switch-to-scheme):
15360         * ielm.el (ielm):
15361         * shell.el (shell):
15362         * net/rlogin.el (rlogin):
15363         * net/telnet.el (telnet, rsh):
15364         * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
15366 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
15368         * dired.el (dired-sort-toggle-or-edit): Revert last changes.
15370 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15372         * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
15373         so don't mention it (bug#9301).
15374         (dired-sort-toggle-or-edit): Clarify string further.
15376         * faces.el (face-spec-set-match-display): Make `(type graphic)'
15377         match `x', `w32' and `ns', like the manual says (bug#9029).
15379         * subr.el (eval-after-load): Doc string clarification (bug#9125).
15380         (process-kill-buffer-query-function): Mention the buffer name in
15381         the query.
15383         * image-mode.el (image-next-line): The line parameter is mandatory
15384         (bug#9258).
15386         * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
15387         which can be useful (bug#9301).
15389         * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
15391         * subr.el (match-string): Mention that the current buffer should
15392         be the same as the search was done in (bug#9282).
15394         * facemenu.el: Disable the remove-* commands if the mark isn't
15395         active (bug#9162).
15397 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
15399         * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
15400         of display-buffer.
15401         (Buffer-menu-2-window): Use switch-to-buffer-other-window.
15403         * replace.el (occur-mode-goto-occurrence)
15404         (occur-mode-display-occurrence) Use second arg of pop-to-buffer
15405         and display-buffer.
15407         * mail/reporter.el (reporter-submit-bug-report): Use second arg of
15408         display-buffer.
15410         * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
15411         special-display and same-window variables.
15412         (mail-other-window): Use switch-to-buffer-other-window.
15413         (mail-other-frame): USe switch-to-buffer-other-frame.
15415         * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
15416         Use display-buffer-other-frame.
15417         (gdb-display-gdb-buffer): Use pop-to-buffer.
15419         * progmodes/gud.el (gud-goto-info): Use info-other-window.
15421         * progmodes/python.el: Don't set same-window-buffer-names.
15423         * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
15425         * window.el (display-buffer-alist): Add *Python*.
15427 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
15429         * window.el (display-buffer-alist): Add entry for buffers
15430         previously handled same-window-*.
15431         (display-buffer-alist, display-buffer-default-action)
15432         (display-buffer-overriding-action): Mark as risky.
15433         (display-buffer-alist): Document action function changes.
15434         (display-buffer--same-window-action)
15435         (display-buffer--other-frame-action): New variables.
15436         (switch-to-buffer, display-buffer-other-frame): Use them.
15437         (display-buffer): Rename reuse-frame entry to reusable-frames.
15438         (display-buffer-reuse-selected-window): Function deleted.
15439         (display-buffer-reuse-window): Handle reusable-frames alist entry.
15440         If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
15441         (display-buffer-special): New function.
15442         (display-buffer--maybe-pop-up-frame-or-window): Rename from
15443         display-buffer-reuse-or-pop-window.  Split off special-display
15444         part into display-buffer-special.
15445         (display-buffer-use-some-window): Don't perform any special
15446         pop-up-frames handling.
15447         (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
15448         (display-buffer--maybe-same-window): Rename from
15449         display-buffer-maybe-same-window.
15451         * info.el: Don't set same-window-regexps.
15452         (info-setup): New function.
15453         (info-other-window, info): Call it.
15455         * cus-edit.el: Don't set same-window-regexps.
15456         (customize-group): New argument.
15457         (customize-group-other-window): Use it.
15458         (customize-face, customize-face-other-window): Likewise.
15459         (custom-buffer-create-other-window): Use pop-to-buffer directly.
15461         * net/rlogin.el:
15462         * net/telnet.el:
15463         * progmodes/gud.el: Don't set same-window-regexps.
15465         * cmuscheme.el:
15466         * ielm.el:
15467         * shell.el:
15468         * mail/sendmail.el:
15469         * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
15471 2011-09-10  Juri Linkov  <juri@jurta.org>
15473         * isearch.el (isearch-edit-string): Remove obsolete mention of
15474         `C-w' (`isearch-yank-word-or-char') from docstring.
15475         (isearch-query-replace): Fix typo in docstring (bug#9466).
15477 2011-09-10  Juri Linkov  <juri@jurta.org>
15479         * paren.el (show-paren-function): Don't show escaped parens.
15480         Let-bind `unescaped' to `t' when paren is not escaped.  (Bug#9461)
15482 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
15484         * mail/sendmail.el (mml-to-mime, mml-attach-file)
15485         (mm-default-file-encoding): Remove autoload forms, they are
15486         replaced with autoload cookies in mml.el and mm-encode.el.
15487         (mail-add-attachment): New command.
15488         (mail-mode-map): Add a menu-bar item for mail-add-attachment.
15489         (mail-mode): Mention mail-insert-file and mail-add-attachment in
15490         the doc string.
15491         (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
15493 2011-09-10  Reuben Thomas  <rrt@sc3d.org>
15495         * simple.el (count-words-region): Use buffer if there's no region
15496         (bug#9429).
15498 2011-09-09  Juri Linkov  <juri@jurta.org>
15500         * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
15501         `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
15502         (wdired-isearch-filter-read-only): New function.  (Bug#6362)
15504 2011-09-09  Alan Mackenzie  <acm@muc.de>
15506         * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
15507         spuriously generating `awk-mode-syntax-table'.  (Bug #9448).
15509 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
15511         Fix for Savannah bug#9392.
15512         * simple.el (mail-encode-mml): New defvar.
15514         * mail/rmail.el (mail-encode-mml): Add a defvar.
15515         (rmail-enable-mime-composing): Default to t.
15516         (rmail-forward): Use MIME method of forwarding only if both
15517         rmail-enable-mime-composing and rmail-enable-mime are non-nil.
15518         Set mail-encode-mml non-nil if the MIME method was used.
15520         * mail/sendmail.el (mml-to-mime): Add autoload form.
15521         (mail-encode-mml): Add a defvar.
15522         (mail-mode): Make mail-encode-mml buffer-local and initialize it
15523         to nil.
15524         (mail-send): If mail-encode-mml is non-nil, run the outgoing
15525         message through mml-to-mime, and reset mail-encode-mml to nil.
15527 2011-09-09  Glenn Morris  <rgm@gnu.org>
15529         * woman.el (woman-if-body): When processing an .el block,
15530         do not delete the next .el block as well.  (Bug#9447)
15531         (woman-special-characters): Add oq, cq, and hy characters.
15533 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
15535         * window.el (window-deletable-p): Make sure window is live before
15536         invoking window-prev-buffers.
15538 2011-09-08  Leo Liu  <sdl.web@gmail.com>
15540         * net/rcirc.el (rcirc-cmd-invite): New rcirc command.  (Bug#9453)
15542 2011-09-08  Juri Linkov  <juri@jurta.org>
15544         * progmodes/compile.el (compilation-environment): Make it
15545         a defcustom (bug#8340).
15547 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
15549         * window.el (frame-auto-delete): Rename to window-auto-delete.
15550         Make it control auto-deletion of windows and/or frames.
15551         (window-deletable-p): New argument FORCE.  Rewrite conditions
15552         for deleting window/frame.  (Bug#9419)
15553         (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
15554         Rewrite handling of case when window/frame can be deleted.
15555         (delete-windows-on): Call window-deletable-p with new FORCE
15556         argument t.  (Bug#9456)
15558 2011-09-07  Chong Yidong  <cyd@stupidchicken.com>
15560         * help-mode.el (help-mode): Restore autoload.
15562 2011-09-07  Juri Linkov  <juri@jurta.org>
15564         * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
15565         `compilation-environment'.  Set buffer-local
15566         `compilation-environment' to `thisenv' later after (funcall mode).
15567         (Bug#8340)
15569         * vc/vc-git.el (vc-git-grep): Remove --no-color.  (Bug#9408)
15570         (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
15571         instead of replacing its value.  (Bug#8340)
15573 2011-09-07  Juri Linkov  <juri@jurta.org>
15575         * progmodes/grep.el (grep-regexp-alist): Calculate column positions
15576         based on text properties put by `grep-filter' instead of matching
15577         escape sequences.
15578         (grep-mode): Set buffer-local `compilation-error-screen-columns'
15579         to the value of `grep-error-screen-columns' (bug#9438).
15581 2011-09-07  Juri Linkov  <juri@jurta.org>
15583         * simple.el (next-error-highlight, next-error-highlight-no-select):
15584         Doc fix (bug#9432).
15586 2011-09-07  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
15588         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15589         Check for null c-opt-block-decls-with-vars-key.  (Bug#9443)
15591 2011-09-07  Leo Liu  <sdl.web@gmail.com>
15593         * net/rcirc.el (rcirc-mode): Conditionally initialize
15594         rcirc-input-ring.
15596 2011-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
15598         * emacs-lisp/find-func.el (find-function-C-source): Only set
15599         find-function-C-source-directory after checking that we found a source
15600         file there (bug#9440).
15602 2011-09-06  Alan Mackenzie  <acm@muc.de>
15604         * isearch.el (isearch-other-meta-char): Wherever a key list is
15605         unread, "unread" the prefix arg, too.  This fixes bug #8901.
15607 2011-09-05  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
15609         * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
15611 2011-09-05  Juri Linkov  <juri@jurta.org>
15613         * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
15615 2011-09-05  Juri Linkov  <juri@jurta.org>
15617         * progmodes/grep.el (grep-filter): Avoid incomplete processing by
15618         keeping point where processing of grep matches begins, and
15619         continue to delete remaining escape sequences from the same point.
15620         (grep-filter): Make leading zero optional in "0?1;31m" because
15621         git-grep emits "\033[1;31m" escape sequences unlike expected
15622         "\033[01;31m" as GNU Grep does (bug#9408).
15623         (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
15625 2011-09-05  Juri Linkov  <juri@jurta.org>
15627         * subr.el (y-or-n-p): Capitalize "yes".
15629 2011-09-04  Michael Albinus  <michael.albinus@gmx.de>
15631         * net/tramp.el (top): Require 'shell.  Use `tramp-unload-hook' but
15632         `tramp-cache-unload-hook' where appropriate.
15633         (tramp-methods): Rename `tramp-remote-sh' to
15634         `tramp-remote-shell'.  Add `tramp-remote-shell-args'.
15635         (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
15637         * net/tramp-sh.el (top): Don't require 'shell.
15638         (tramp-methods): Add `tramp-remote-shell' and
15639         `tramp-remote-shell-args' entries.
15640         (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
15641         (tramp-sh-handle-shell-command): Remove.
15642         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
15643         Use `tramp-remote-shell'.
15645 2011-09-03  Chong Yidong  <cyd@stupidchicken.com>
15647         * mail/sendmail.el (sendmail-query-once-function): Delete.
15648         (sendmail-query-once): Save directly to send-mail-function.
15649         Update message-send-mail-function too.
15651         * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
15653 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
15655         * progmodes/python.el (python-mode-map): Use correct function to
15656         start python interpreter from menu-bar (as reported by Geert
15657         Kloosterman).
15658         (inferior-python-mode-map): Fix typo.
15659         (python-shell-map): Remove.
15661 2011-09-03  Deniz Dogan  <deniz@dogan.se>
15663         * net/rcirc.el (rcirc-print): Simplify code for
15664         rcirc-scroll-show-maximum-output.  There is no need to walk
15665         through all windows to find the right one.
15667 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
15669         * help.el (help-return-method): Doc fix.
15671 2011-09-03  Martin Rudalics  <rudalics@gmx.at>
15673         * window.el (window-deletable-p): Don't return a non-nil value
15674         when there's a buffer that was shown in the window before.
15675         (Bug#9419)
15676         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15677         Set window's previous buffers to nil.
15679 2011-09-03  Eli Zaretskii  <eliz@gnu.org>
15681         * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
15682         newline before and after the tag line, so it doesn't interfere
15683         with determining the paragraph direction of bidirectional text.
15685 2011-09-03  Leo Liu  <sdl.web@gmail.com>
15687         * files.el (find-file-not-true-dirname-list): Remove.  (Bug#9422)
15689 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
15691         * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
15692         (pop-to-buffer): Change interactive spec.  Pass second argument
15693         directly to display-buffer.
15694         (display-buffer): Fix interactive spec.  Use functionp to
15695         distinguish between a function and a list of functions.
15697         * abbrev.el (edit-abbrevs):
15698         * arc-mode.el (archive-extract):
15699         * autoinsert.el (auto-insert):
15700         * bookmark.el (bookmark-bmenu-list):
15701         * files.el (find-file):
15702         * view.el (view-buffer):
15703         * progmodes/compile.el (compilation-goto-locus):
15704         * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
15706 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
15708         * window.el (display-buffer-alist): Doc fix.
15709         (display-buffer): Add docstring.  Don't treat
15710         display-buffer-default specially.
15711         (display-buffer-reuse-selected-window)
15712         (display-buffer-same-window, display-buffer-maybe-same-window)
15713         (display-buffer-reuse-window, display-buffer-pop-up-frame)
15714         (display-buffer-pop-up-window)
15715         (display-buffer-reuse-or-pop-window)
15716         (display-buffer-use-some-window): New functions.
15717         (display-buffer-default-action): Use them.
15718         (display-buffer-default): Delete.
15719         (pop-to-buffer-1): Fix choice of actions.
15721 2011-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15723         * minibuffer.el (completion--insert-strings): Don't get confused by
15724         completion entries that end with an LF char.
15726 2011-09-01  Eli Zaretskii  <eliz@gnu.org>
15728         * window.el (frame-auto-delete, window-deletable-p): Doc fix.
15730 2011-09-01  Chong Yidong  <cyd@stupidchicken.com>
15732         * window.el (display-buffer): Restore interactive spec.
15733         (display-buffer-same-window, display-buffer-other-window):
15734         New functions.
15735         (pop-to-buffer-1): New function.  Use the above.
15736         (pop-to-buffer, pop-to-buffer-same-window): Use it.
15737         (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
15739         * view.el (view-buffer-other-window, view-buffer-other-frame):
15740         Just use pop-to-buffer.
15742 2011-09-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
15744         * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories.  (Bug#9391)
15746 2011-09-01  Wilfred Hughes  <wilfred@potatolondon.com>  (tiny change)
15748         * vc/vc-git.el (vc-git-grep): Use --no-color.  (Bug#9408)
15750 2011-08-31  Richard Stallman  <rms@gnu.org>
15752         * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
15753         of the separation of rmail-view-buffer from rmail-buffer.
15754         If you say no to "replace original", the decrypt is in the
15755         view buffer.  If you say yes, the decrypt goes into the
15756         rmail buffer also.
15758 2011-08-31  Martin Rudalics  <rudalics@gmx.at>
15760         * window.el (display-buffer-window): Rewrite doc-string.
15761         (display-buffer-record-window): New function.
15762         (display-buffer-macro-specifiers)
15763         (display-buffer-even-window-sizes, display-buffer-set-height)
15764         (display-buffer-set-width, display-buffer-in-window)
15765         (display-buffer-reuse-window, display-buffer-split-specifiers)
15766         (display-buffer-side-specifiers, display-buffer-split-window-1)
15767         (display-buffer-split-window, display-buffer-split-atom-window)
15768         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15769         (display-buffer-pop-up-side-window, display-buffer-in-side-window)
15770         (display-buffer-other-window-means-other-frame)
15771         (display-buffer-normalize-special)
15772         (display-buffer-normalize-default)
15773         (display-buffer-normalize-argument)
15774         (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
15775         (display-buffer-normalize-specifiers, display-buffer-frame)
15776         (display-buffer-same-window, display-buffer-same-frame)
15777         (display-buffer-other-window)
15778         (display-buffer-same-frame-other-window)
15779         (display-buffer-other-frame, pop-to-buffer-same-window)
15780         (pop-to-buffer-same-frame, pop-to-buffer-other-window)
15781         (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
15782         (switch-to-buffer-same-frame)
15783         (switch-to-buffer-other-window-same-frame)
15784         (display-buffer-alist-of-strings-p, display-buffer-alist-add)
15785         (display-buffer-alist-set-1, display-buffer-alist-set-2)
15786         (display-buffer-alist-set): Remove.
15787         (display-buffer-function, special-display-buffer-names)
15788         (special-display-regexps, special-display-function):
15789         In doc-string refer to display-buffer-window and quit-restore
15790         parameter.
15791         (pop-up-frame-alist, pop-up-frame-function, special-display-p)
15792         (special-display-frame-alist, special-display-popup-frame)
15793         (same-window-buffer-names, same-window-regexps, same-window-p)
15794         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15795         (split-window-preferred-function, split-height-threshold)
15796         (split-width-threshold, window-splittable-p)
15797         (split-window-sensibly, window--try-to-split-window)
15798         (window--frame-usable-p, even-window-heights)
15799         (window--even-window-heights, window--display-buffer-1)
15800         (window--display-buffer-2, display-buffer-other-frame):
15801         Restore old Emacs 23 code, order and doc-strings where applicable.
15802         (display-buffer-default, display-buffer-assq-regexp): New functions.
15803         (display-buffer-alist): Rewrite doc-string.
15804         (display-buffer-default-action)
15805         (display-buffer-overriding-action): New variables.
15806         (display-buffer, switch-to-buffer): Rewrite.
15807         (pop-to-buffer): Restore Emacs 23 behavior but use
15808         window-normalize-buffer-to-display.
15809         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
15810         Restore Emacs 23 behavior but use
15811         window-normalize-buffer-to-switch-to.
15812         (pop-to-buffer-same-window): Rewrite.
15813         (pop-to-buffer-other-window, pop-to-buffer-other-frame):
15814         Rewrite using Emacs 23 options.
15816 2011-08-31  Michael Albinus  <michael.albinus@gmx.de>
15818         * net/tramp.el (tramp-root-regexp): Remove.
15819         (tramp-completion-file-name-regexp-unified)
15820         (tramp-completion-file-name-regexp-separate)
15821         (tramp-completion-file-name-regexp-url): Don't use leading volume
15822         letter on w32 systems.  (Bug#5303, Bug#9311)
15823         (tramp-drop-volume-letter): Simplify definition.
15824         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
15826 2011-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15828         * subr.el (event-modifiers): Fix "missing modifier" part of docstring
15829         (bug#9356).
15831 2011-08-30  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
15833         * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
15835 2011-08-29  Juri Linkov  <juri@jurta.org>
15837         * isearch.el (isearch-done): Don't display message "Mark saved"
15838         when arg `edit' is non-nil to prevent its flicker in the echo area.
15840 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
15842         * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
15843         obsolete packages for deletion.
15845 2011-08-28  Christoph Scholtes  <cschol2112@googlemail.com>
15847         * help-mode.el (help-mode-map): Add special-mode-map to parent.
15848         (help-mode): Derive help-mode from special-mode.  Don't invoke
15849         view-mode from help-mode.
15850         (help-xref-override-view-map): Remove.
15851         (help-make-xrefs): Remove minor-mode-overriding-map-alist since
15852         view-mode is not used anymore.
15854 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
15856         * server.el (server-port): Doc fix.
15858         * cus-theme.el (custom-theme-choose-mode): Inherit from
15859         special-mode (Bug#9124).
15860         (custom-theme-choose-mode-map): Add special-mode to parent.
15862 2011-08-28  Alan Mackenzie  <acm@muc.de>
15864         * progmodes/cc-fonts.el
15865         (c-make-font-lock-BO-decl-search-function): New function.
15866         (c-basic-matchers-after - "Fontify the clauses after various
15867         keywords"): Extract the three keyword lists for the 3 erroneous
15868         constructs from the list of four, and use the new function above
15869         in place of an old one.
15871 2011-08-28  Deniz Dogan  <deniz@dogan.se>
15873         * net/rcirc.el (rcirc-insert-prev-input)
15874         (rcirc-insert-next-input): Remove unused argument.
15876 2011-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15878         * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
15880 2011-08-27  Alan Mackenzie  <acm@muc.de>
15882         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
15883         handle function pointer parameters properly.
15885 2011-08-27  Martin Rudalics  <rudalics@gmx.at>
15887         * window.el (display-buffer-reuse-window): Fix case where
15888         selected window was reused with non-nil OTHER-WINDOW argument.
15889         (Bug#9381)
15891 2011-08-27  Deniz Dogan  <deniz@dogan.se>
15893         * net/rcirc.el (rcirc-check-auth-status): Adding support for
15894         oftc's NickServ messages.
15896 2011-08-27  Glenn Morris  <rgm@gnu.org>
15898         * saveplace.el (save-place-limit): Make it finite.  (Bug#9352)
15900 2011-08-26  Chong Yidong  <cyd@stupidchicken.com>
15902         * emacs-lisp/package.el (package-install): Call package-initialize
15903         if called interactively.
15905 2011-08-26  Leo Liu  <sdl.web@gmail.com>
15907         * emacs-lisp/cl-macs.el (defstruct): Fix format.  (Bug#9357)
15909 2011-08-25  Juri Linkov  <juri@jurta.org>
15911         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15912         `search-whitespace-regexp' (bug#9364).
15914 2011-08-25  Juri Linkov  <juri@jurta.org>
15916         * isearch.el (isearch-edit-string): Let-bind `search-ring' and
15917         `regexp-search-ring' to their global values to protect from
15918         updating by `read-from-minibuffer' (bug#9185).
15920 2011-08-25  Juri Linkov  <juri@jurta.org>
15922         * textmodes/ispell.el (ispell-command-loop): Add newline
15923         at the end of the "Use option `i'..." line.
15925 2011-08-25  Juri Linkov  <juri@jurta.org>
15927         * battery.el (display-battery-mode): If `battery-status-function'
15928         or `battery-mode-line-format' is nil, display the message and set
15929         `display-battery-mode' to nil (bug#9363).
15931 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
15933         * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
15934         bidi-string-mark-left-to-right; they are unnecessary now.
15936 2011-08-25  Deniz Dogan  <deniz@dogan.se>
15938         * net/quickurl.el: Documentation typo fixes.
15940 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
15942         * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
15944 2011-08-25  Glenn Morris  <rgm@gnu.org>
15946         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15948         * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
15949         (smtpmail-via-smtp): Handle nil response from smtp.
15951 2011-08-24  Juri Linkov  <juri@jurta.org>
15953         * proced.el (proced-marked): Inherit from `error' instead of
15954         `font-lock-warning-face'.
15956         * ibuffer.el (ibuffer-marked-face): Change default face from
15957         `font-lock-warning-face' to `warning'.
15958         (ibuffer-deletion-face): Change default face from
15959         `font-lock-type-face' to `error'.
15961         * battery.el (battery-update): Use the face `error' instead of
15962         `font-lock-warning-face' (bug#6117).
15964 2011-08-24  Juri Linkov  <juri@jurta.org>
15966         * faces.el (success): Change face color from "Green3" to
15967         "ForestGreen" on light background (bug#9353).
15969 2011-08-24  Chong Yidong  <cyd@stupidchicken.com>
15971         * window.el (quit-window): Rename from quit-restore-window.
15972         Use same arglist as old quit-window.
15973         (frame-auto-delete): Doc fix.
15975         * view.el (view-mode-exit): Use quit-window.
15977 2011-08-24  Juri Linkov  <juri@jurta.org>
15979         * isearch.el (isearch-ring-adjust1): Start visiting previous
15980         search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
15981         (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
15982         for empty search string (when the last search string is reused
15983         automatically) to adjust the isearch ring to the last element and
15984         prepare the correct index for further M-p commands (bug#9185).
15986 2011-08-24  Kenichi Handa  <handa@m17n.org>
15988         * international/ucs-normalize.el: If decomposition property of
15989         CHAR is the default one (i.e. a list of CHAR itself), treat it as
15990         nil.
15991         (nfd, nfkd): Likewise.
15993 2011-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15995         * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
15996         from process filters aren't reliably transmitted to the surrounding
15997         accept-process-output.
15998         (mpc-proc-check): New function.
15999         (mpc-proc-sync): Use it (bug#8293)
16001 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16003         * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
16004         Add compatibility functions (bug#9313).
16006 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
16008         * cus-start.el (all): Add entry for bidi-paragraph-direction.
16010         * international/uni-bidi.el: Regenerate.
16012 2011-08-23  Kenichi Handa  <handa@m17n.org>
16014         * international/charprop.el:
16015         * international/uni-bidi.el:
16016         * international/uni-category.el:
16017         * international/uni-combining.el:
16018         * international/uni-comment.el:
16019         * international/uni-decimal.el:
16020         * international/uni-decomposition.el:
16021         * international/uni-digit.el:
16022         * international/uni-lowercase.el:
16023         * international/uni-mirrored.el:
16024         * international/uni-name.el:
16025         * international/uni-numeric.el:
16026         * international/uni-old-name.el:
16027         * international/uni-titlecase.el:
16028         * international/uni-uppercase.el: Regenerate.
16030 2011-08-23  Martin Rudalics  <rudalics@gmx.at>
16032         * help.el (help-window-setup): Fix message displayed when other
16033         window is reused.  (Bug#9341)
16035 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16037         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
16038         * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
16040         * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
16041         Mark obsolete.
16042         * shell.el (shell-parse-pcomplete-arguments): New function.
16043         (shell-completion-vars): Use it instead (bug#9160).
16045 2011-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16047         * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
16048         strings and comments (bug#9333).
16050         * emacs-lisp/debug.el (debug-arglist): New function.
16051         (debug-convert-byte-code): Use it.  Handle lexical byte-codes.
16052         (debug-on-entry-1): Handle interpreted closures (bug#9120).
16054 2011-08-22  Juri Linkov  <juri@jurta.org>
16056         * progmodes/compile.el (compilation-mode-font-lock-keywords):
16057         Revert regexp that highlights output switches to its old
16058         pre-2010-10-28 value and remove one `?' from it (bug#9319).
16060         * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
16061         to check for empty output (bug#9226).
16063 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
16065         * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
16066         symbol-constituent as the default, as that stops font-lock from
16067         working properly (Bug#8843).
16069 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16071         * mail/smtpmail.el (smtpmail-via-smtp): Only bind
16072         `coding-system-for-*' around the process open call to avoid
16073         auth-source side effects.
16074         (smtpmail-try-auth-methods): Expand the secret password.
16075         (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
16076         probe hangs.
16078 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
16080         * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
16082         * emacs-lisp/find-func.el (find-function-noselect): New arg
16083         lisp-only.
16085         * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
16086         signal an error for built-in functions (Bug#6664).
16088 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16090         * mail/smtpmail.el (smtpmail-smtp-user): New variable.
16091         (smtpmail-try-auth-methods): Use it.
16093 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
16095         * font-lock.el (font-lock-fontify-region)
16096         (font-lock-unfontify-region, font-lock-default-fontify-buffer)
16097         (font-lock-default-unfontify-buffer)
16098         (font-lock-default-fontify-region)
16099         (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
16101         * progmodes/compile.el (compilation-error-properties):
16102         Fix confusion between file struct and message struct (Bug#9319).
16103         (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
16104         `ant' regexp.
16106         * net/browse-url.el (browse-url-firefox): Don't call
16107         browse-url-firefox-sentinel unless using -remote (Bug#9328).
16109 2011-08-20  Glenn Morris  <rgm@gnu.org>
16111         * tutorial.el (help-with-tutorial): Avoid an error on short screens.
16113         * tutorial.el (tutorial--default-keys): Update some default bindings.
16115         * files.el (hack-local-variables): Fully ignore case for "mode:".
16117 2011-08-20  Alan Mackenzie  <acm@muc.de>
16119         Resolve invalid use of a regexp in regexp-opt.
16121         * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
16122         detection for a java annotation.
16124         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
16125         detection for a java annotation.
16127         * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
16128         handling for java.
16129         (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
16131 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
16133         * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
16134         (Bug#9274).
16136 2011-08-20  Alan Mackenzie  <acm@muc.de>
16138         Fontify CPP expressions correctly when starting in the middle of
16139         such a construct.  Mainly for when jit-lock etc. starts a chunk
16140         here.
16142         * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
16143         variable.
16144         (c-make-font-lock-search-form): New function, extracted from
16145         c-make-font-lock-search-function.
16146         (c-make-font-lock-search-function): Use the above function.
16147         (c-make-font-lock-context-search-function): New function.
16148         (c-cpp-matchers): Enhance the preprocessor expression case with
16149         the above function
16150         (c-font-lock-complex-decl-prepare): Test for being in a CPP form
16151         which takes an expression.
16153         * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
16155 2011-08-20  Martin Rudalics  <rudalics@gmx.at>
16157         * window.el (display-buffer-reuse-window)
16158         (display-buffer-pop-up-window): Don't reuse or split a side
16159         window.
16161 2011-08-19  Glenn Morris  <rgm@gnu.org>
16163         * files.el (hack-local-variables-prop-line, hack-local-variables):
16164         Downcase "Mode:".  (Bug#9331)
16166 2011-08-18  Chong Yidong  <cyd@stupidchicken.com>
16168         * international/characters.el: Add L and R categories.
16170         * subr.el (bidi-string-mark-left-to-right): Rename from
16171         string-mark-left-to-right.  Use category search.
16173         * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
16175 2011-08-18  Juri Linkov  <juri@jurta.org>
16177         * faces.el (error, warning, success): New faces with definitions
16178         copied from old default values of `font-lock-warning-face',
16179         `compilation-warning', `compilation-info' (bug#6117).
16181         * font-lock.el (font-lock-warning-face): Inherit from `error'.
16183         * progmodes/compile.el (compilation-error): Inherit from `error'.
16184         (compilation-warning): Inherit from `warning'.
16185         (compilation-info): Inherit from `success'.
16187         * dired.el (dired-marked): Inherit from `warning'.
16188         (dired-flagged): Inherit from `error'.
16190 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16192         * mail/smtpmail.el (auth-source): Require to avoid problems with
16193         binding variables (bug#9298).  Also clean up some unused
16194         autoloads.
16196         * net/network-stream.el (network-stream-open-starttls):
16197         Support using starttls.el without using gnutls-cli.
16199 2011-08-17  Juri Linkov  <juri@jurta.org>
16201         * progmodes/grep.el (rgrep): Handle the case when
16202         `grep-find-command' is a cons cell (bug#9278).
16204 2011-08-17  Martin Rudalics  <rudalics@gmx.at>
16206         * window.el (display-buffer-pop-up-frame): Run frame creation
16207         function with BUFFER current (as special-display-popup-frame
16208         does).  Reported by Drew Adams.
16210 2011-08-17  Daiki Ueno  <ueno@unixuser.org>
16212         * epa-mail.el: Simplify GnuPG group expansion using
16213         epg-expand-group.
16214         (epa-mail-group-alist, epa-mail-group-modtime)
16215         (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
16216         (epa-mail-sync-groups, epa-mail-expand-recipient-1)
16217         (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
16218         Remove.
16220 2011-08-16  Feng Li  <fengli@gmail.com>  (tiny change)
16222         * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
16224 2011-08-16  Alan Mackenzie  <acm@muc.de>
16226         * progmodes/cc-engine.el (c-state-cache-non-literal-place):
16227         Correct, to avoid the inside of macros.
16229 2011-08-16  Richard Stallman  <rms@gnu.org>
16231         * epa-mail.el: Handle GnuPG group definitions.
16232         (epa-mail-group-alist, epa-mail-group-modtime)
16233         (epa-mail-gnupg-conf-file): New variables.
16234         (epa-mail-parse-groups, epa-mail-sync-groups)
16235         (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
16236         (epa-mail-expand-recipients): New functions.
16237         (epa-mail-encrypt): Call epa-mail-expand-recipients.
16239         * mail/rmail.el (rmail-epa-decrypt): New command.
16241         * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
16242         Don't bind buffer-read-only, just inhibit-read-only.
16243         (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
16244         (epa-decrypt-armor-in-region): Make error message clearer.
16246 2011-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
16248         * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
16249         and "a2b" to "ab" for `prefix'.
16251 2011-08-14  Chong Yidong  <cyd@stupidchicken.com>
16253         * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
16254         filter groups.
16255         (ibuffer-included-in-filter-p-1): Use it.  Suggested by Rafaël
16256         Fourquet (Bug#8804).
16258 2011-08-12  Juanma Barranquero  <lekktu@gmail.com>
16260         * startup.el (argi): Declare as global variable (bug#9275).
16262 2011-08-12  Chong Yidong  <cyd@stupidchicken.com>
16264         * subr.el (string-mark-left-to-right): Search the entire string
16265         for RTL script, not just the terminating character.  Doc fix.
16267 2011-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
16269         * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
16270         New function.
16271         (js--regexp-literal, js-syntax-propertize-function): Remove.
16272         (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
16273         (js-mode-map): Don't rebind electric keys.
16274         (js-insert-and-indent): Remove.
16275         (js-mode): Setup electric-layout and electric-indent instead.
16277         * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
16279 2011-08-12  Daiki Ueno  <ueno@unixuser.org>
16281         * epa.el (epa-progress-callback-function): Fix the logic of
16282         displaying progress.
16283         * epa-file.el (epa-file-insert-file-contents): Make progress
16284         display more user-friendly.
16285         (epa-file-write-region): Ditto.
16287 2011-08-10  Chong Yidong  <cyd@stupidchicken.com>
16289         * subr.el (string-mark-left-to-right): New function.
16291         * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
16292         Use string-mark-left-to-right.
16293         (list-buffers-noselect): Caller changed.
16295         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
16296         Use string-mark-left-to-right.
16297         (tabulated-list-print): Recenter after moving point.
16299 2011-08-10  Juri Linkov  <juri@jurta.org>
16301         * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
16302         This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
16303         intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
16305 2011-08-09  Chong Yidong  <cyd@stupidchicken.com>
16307         * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
16308         (Bug#7554).
16310 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
16312         * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
16313         character.  (Bug#6594)
16315 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
16317         * image-dired.el: Don't use find-file for temporary work (Bug#7895).
16318         (image-dired--with-db-file): New macro.
16319         (image-dired-write-tags, image-dired-remove-tag)
16320         (image-dired-create-gallery-lists, image-dired-write-comments)
16321         (image-dired-get-comment, image-dired-mark-tagged-files)
16322         (image-dired-list-tags, image-dired-gallery-generate): Use it.
16323         (image-dired-gallery-generate): Use insert-file-contents.
16325         * time.el (display-time-world-list, display-time-world-display):
16326         * time-stamp.el (time-stamp-string):
16327         * vc/add-log.el (add-change-log-entry): Use setenv instead of
16328         set-time-zone-rule (Bug#7337).
16330 2011-08-08  Daiki Ueno  <ueno@unixuser.org>
16332         * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
16333         (epg-error-to-string, epg-errors-to-string): New function.
16334         (epg-wait-for-completion): Reverse errors list.
16335         (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
16336         (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
16337         (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
16338         (epg-sign-keys, epg-generate-key-from-file)
16339         (epg-generate-key-from-string): Format errors by using
16340         epg-errors-to-string (bug#9255).
16341         (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
16343 2011-08-07  Juri Linkov  <juri@jurta.org>
16345         * faces.el (list-faces-display): Remove extra angle bracket
16346         from `help-mode-map'.
16348         * info.el (Info-history-toc-nodes): Doc fix.
16350         * longlines.el (longlines-mode): Doc fix.
16352 2011-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16354         * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
16355         of statements and in a few more cases (bug#9183).
16357         * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
16358         New functions.
16359         (cl-transform-lambda): Use them (bug#9239).
16361 2011-08-05  Martin Rudalics  <rudalics@gmx.at>
16363         * window.el (display-buffer-same-window)
16364         (display-buffer-same-frame, display-buffer-other-window)
16365         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
16366         (pop-to-buffer-other-window)
16367         (pop-to-buffer-same-frame-other-window)
16368         (pop-to-buffer-other-frame): Make them defuns.
16369         (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
16371 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16373         * subr.el (make-composed-keymap): Move from C.  Change calling
16374         convention, and improve docstring to bring attention to a subtle point.
16375         * minibuffer.el (completing-read-default): Adjust accordingly.
16377 2011-08-03  Michael Albinus  <michael.albinus@gmx.de>
16379         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
16380         (tramp-open-shell): Use `tramp-shell-quote-argument'.
16382         * net/trampver.el: Update release number.
16384 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16386         * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
16387         "in" (bug#9190).
16389 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16391         * mail/sendmail.el (sendmail-query-once): Restore the current
16392         buffer after querying (bug#9074).
16394         * dired.el (dired-flagged): Use different faces for marked and
16395         flagged files (bug#6117).
16397         * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
16398         (bug#4433).
16400         * ido.el (ido-mode): Switch off the message if called
16401         non-interactively.
16403         * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
16404         before 587, since it appears that that's more likely to work for
16405         more people.
16407         * cus-edit.el (custom-file): When running under emacs -q, always
16408         refuse to save the customizations, even if the .emacs file doesn't
16409         exist.
16411         * info.el: Remove the `Info-beginning-of-buffer' function
16412         (bug#8325).
16414         * net/network-stream.el (network-stream-open-starttls):
16415         Use `starttls-available-p' to see whether starttls.el can be used.
16417 2011-08-01  Martin Rudalics  <rudalics@gmx.at>
16419         * window.el (display-buffer-in-window): Don't set dedicated status
16420         of window here (Bug#9215).
16421         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
16422         (display-buffer-pop-up-side-window)
16423         (display-buffer-in-side-window): Set dedicated status of window here.
16425 2011-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
16427         * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
16428         before binding generated-autoload-file.
16430 2011-08-01  Deniz Dogan  <deniz@dogan.se>
16432         * net/rcirc.el (rcirc-handler-333): Clarify docstring.
16434 2011-07-30  Michael Albinus  <michael.albinus@gmx.de>
16436         Sync with Tramp 2.2.2.
16438         * net/trampver.el: Update release number.
16440 2011-07-30  Juri Linkov  <juri@jurta.org>
16442         * dired-aux.el (dired-touch-initial): Remove function.
16443         (dired-do-chxxx): For op-symbol `touch', set `initial' to the
16444         current time, and `default' to the last modification time of the
16445         current marked file (bug#6887).
16447 2011-07-28  Jose E. Marchesi  <jemarch@gnu.org>
16449         * simple.el (goto-line): Use string-to-number to provide a
16450         numeric argument to read-number (bug#9163).
16452 2011-07-27  Michael Albinus  <michael.albinus@gmx.de>
16454         * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
16455         connection process, it could be nil.
16457 2011-07-27  Leo Liu  <sdl.web@gmail.com>
16459         Simplify url handling in rcirc-mode.
16461         * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
16462         (rcirc-browse-url-at-mouse): Remove.
16463         * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
16465 2011-07-26  Alan Mackenzie  <acm@muc.de>
16467         Fontify bitfield declarations properly.
16469         * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
16470         (c-symbol-chars): Now exported as a lang variable.
16471         (c-not-primitive-type-keywords): New lang variable.
16473         * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
16474         QT keyword "more" to prevent "more slots: ...." being spuriously
16475         parsed as a bitfield declaration.
16477         * progmodes/cc-engine.el (c-beginning-of-statement-1):
16478         Refactor and enhance to handle bitfield declarations.
16479         (c-punctuation-in): New function.
16480         (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
16481         declarations properly.
16483 2011-07-26  Ulf Jasper  <ulf.jasper@web.de>
16485         * calendar/icalendar.el (icalendar--all-events): Take care of
16486         multiple vcalendars in a single file.
16487         (icalendar--convert-float-to-ical): Checkdoc fixes.
16489 2011-07-25  Deniz Dogan  <deniz@dogan.se>
16491         * image.el (insert-image): Clarifying docstring.
16493 2011-07-24  Michael Albinus  <michael.albinus@gmx.de>
16495         * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
16496         `tramp-send-command-and-check' if there is no error.
16497         (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
16499 2011-07-22  Alan Mackenzie  <acm@muc.de>
16501         Prevent cc-langs.elc being loaded at run time.
16503         * progmodes/cc-mode.el: Remove two autoload forms which loaded
16504         cc-langs.
16506         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
16507         "(require 'cc-langs)".  Quote a form so it will evaluate at
16508         (cc-mode's) compilation time.
16510 2011-07-22  Michael Albinus  <michael.albinus@gmx.de>
16512         * net/tramp.el (tramp-file-name-handler): Avoid recursive
16513         loading.  (Bug#9114)
16515 2011-07-21  Martin Rudalics  <rudalics@gmx.at>
16517         * window.el (display-buffer-pop-up-window)
16518         (display-buffer-pop-up-side-window)
16519         (display-buffer-in-side-window): Call display-buffer-set-height
16520         and display-buffer-set-width after setting the new window's
16521         buffer so `fit-window-to-buffer' and friends work on the right buffer.
16523 2011-07-20  Sam Steingold  <sds@gnu.org>
16525         * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
16526         (etags-tags-included-tables): Call `convert-standard-filename' on
16527         the file names contained in TAGS so that windows Emacs can handle
16528         TAGS files created by cygwin ctags.
16530 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16532         * proced.el (proced-update): Revert yesterday's bug#1779 patch,
16533         which apparently didn't work.
16535 2011-07-19  Roland Winkler  <winkler@gnu.org>
16537         * proced.el (proced-send-signal): For *Marked Processes* buffer
16538         put point at beginning of buffer.
16540 2011-07-19  Stephen Berman  <stephen.berman@gmx.net>
16542         * proced.el (proced-format): Make header lines align with the text
16543         (bug#1779).
16545 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16547         * view.el (view-buffer): Allow running in `special' modes if we're
16548         visiting a file (bug#8615).
16550 2011-07-19  Martin Rudalics  <rudalics@gmx.at>
16552         * window.el (display-buffer-alist-of-strings-p)
16553         (display-buffer-alist-set-1, display-buffer-alist-set-2):
16554         New functions.
16555         (display-buffer-alist-set): Rewrite to handle Emacs 23 options
16556         more accurately.
16558 2011-07-18  Alan Mackenzie  <acm@muc.de>
16560         Fontify declarators properly when, e.g., a jit-lock chunk begins
16561         inside a declaration.
16563         * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
16565         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
16566         New function.
16567         (c-complex-decl-matchers): Insert reference to
16568         c-font-lock-enclosing-decls.
16570         * progmodes/cc-engine.el (c-backward-single-comment):
16571         (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
16572         to nil around calls to (forward-comment -1).
16574 2011-07-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16576         * image.el (put-image): Doc typo fix.
16578         * progmodes/etags.el (tags-search): Doc typo fix.
16580         * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
16581         password if we get errors 550 to 554.
16583 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16585         * net/gnutls.el (gnutls-log-level): Remove.
16587         * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
16588         indentation character (bug#6380).
16590         * files.el (buffer-offer-save): Made permanently local (bug#6241).
16592         * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
16593         to clarify what the problem is (bug#4291).
16595         * simple.el (current-kill): Clarify what
16596         `interprogram-paste-function' does (bug#7500).
16597         (auto-fill-mode): Document `auto-fill-function' in relation to
16598         `auto-fill-mode' (bug#2470).
16600 2011-07-16  Lawrence Mitchell  <wence@gmx.li>
16602         * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
16603         method if slot is read-only (bug#9035).
16605 2011-07-16  Martin Rudalics  <rudalics@gmx.at>
16607         * frame.el (select-frame-set-input-focus): New argument NORECORD.
16608         * window.el (pop-to-buffer): Select window used even if it was
16609         selected before, see discussion of (Bug#8615), (Bug#6954).
16610         Pass argument NORECORD on to select-frame-set-input-focus.
16612 2011-07-15  Glenn Morris  <rgm@gnu.org>
16614         * subr.el (read-char-choice): Allow quitting.  (Bug#9001)
16615         Respect help-form.
16617 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
16619         * net/gnutls.el (gnutls-min-prime-bits): New variable.
16620         (gnutls-negotiate): Use it.
16622 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16624         * net/gnutls.el (gnutls-negotiate):
16625         Upcase `gnutls-algorithm-priority'.
16627 2011-07-15  Glenn Morris  <rgm@gnu.org>
16629         * jka-compr.el (jka-compr-verbose): Move from here...
16630         * jka-cmpr-hook.el (jka-compr-verbose): ... to here.  (Bug#9090)
16631         Add missing :version tag.
16632         * info.el: No need to require jka-compr when compiling.
16634 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16636         * net/gnutls.el (gnutls-algorithm-priority): New variable.
16637         (gnutls-negotiate): Use it.
16639         * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
16641         * info.el (Info-beginning-of-buffer): New command.
16642         (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
16643         announcing `b' as the key (bug#8325).
16644         (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
16646         * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
16648         * international/mule-cmds.el
16649         (describe-specified-language-support): Make the error message
16650         clearer (bug#8905).
16652         * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
16654         * isearch.el (isearch-barrier): Add a doc string, since it's
16655         mentioned in a function doc string (bug#8678).
16657 2011-07-15  Martin Rudalics  <rudalics@gmx.at>
16659         * window.el (switch-to-buffer): Call pop-to-buffer with normalized
16660         buffer argument (Bug#9083) and self-identifying label argument.
16662 2011-07-15  Glenn Morris  <rgm@gnu.org>
16664         * emacs-lisp/debug.el (debug): Doc fix.  (Bug#8273)
16666 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16668         * man.el (Man-fontify-manpage): Fix message when formatting the
16669         man page (bug#7929).
16671 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
16673         * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
16674         argument LRM; if non-nil, append an invisible LRM character to the
16675         buffer name.
16676         (list-buffers-noselect): Call Buffer-menu-buffer+size with the
16677         last argument non-nil, when formatting buffer names.
16678         (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
16679         paragraph direction.
16681 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16683         * man.el (Man-bgproc-sentinel): Skip any arguments and only output
16684         the man page name (bug#7929).
16686         * image.el (put-image): Mention the `put-image' overlay property
16687         (bug#7834).
16689         * scroll-bar.el (set-scroll-bar-mode): Mention that
16690         `scroll-bar-mode' lists the values (bug#7772).
16692         * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
16693         command (bug#7729).
16695         * rect.el (apply-on-rectangle): Return the point after the last
16696         operation.
16697         (string-rectangle): Go to the point after the last operation
16698         (bug#7522).
16700         * printing.el (pr-toggle-region): Clarify the documentation
16701         slightly (bug#7493).
16703         * time.el (display-time-update):
16704         Allow `display-time-mail-function' to return nil (bug#7158).
16705         Fix suggested by Detlev Zundel.
16707         * vc/diff.el (diff): Clarify the order the file names are read
16708         (bug#7111).
16710         * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
16711         the doc string (bug#7015).
16713         * font-lock.el (font-lock-maximum-decoration): Mention what
16714         numeric levels mean (bug#6935).
16716         * startup.el (initial-buffer-choice): Don't mention the `none'
16717         selection, which is against policy.
16719 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
16721         * window.el (display-buffer-normalize-special):
16722         Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
16724 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
16726         * subr.el (version<, version<=, version=): Mention "-CVS" and
16727         "-12345" alpha version numbers.
16729 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
16731         * bindings.el: Add advertised binding for set-mark-command
16732         (Bug#5772).
16734 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
16736         * bindings.el (mode-line-other-buffer):
16737         * bookmark.el (bookmark-bmenu-2-window):
16738         * bs.el (bs-cycle-next, bs-cycle-previous):
16739         * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
16740         switch-to-buffer.
16742         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16743         Delete.
16745 2011-07-14  Juanma Barranquero  <lekktu@gmail.com>
16747         * follow.el (follow-debug-message, follow-redisplay):
16748         * jka-cmpr-hook.el (with-auto-compression-mode):
16749         Fix typos in docstrings.
16751 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16753         * subr.el (with-silent-modifications): Clarify somewhat what the
16754         macro inhibits (bug#6525).
16756         * simple.el (eval-expression): Note what it does if called
16757         interactively (bug#6495).
16759 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
16761         * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
16762         Use pop-to-buffer buffer-or-name if it is nil.
16764         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16765         Remove switch-to-buffer.
16767 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16769         * files.el (make-directory): Clarify that an error will be raised
16770         if there's an error (bug#6397).
16772         * startup.el (initial-buffer-choice): Add `none' as a choice
16773         (bug#6234).
16775         * subr.el (add-hook): Clarify section about buffer-local hooks
16776         (bug#6218).
16778         * dired.el (dired-flagged): Clarify doc string (bug#6117).
16780 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
16782         * tabify.el (untabify): Preserve the current column so that point
16783         doesn't move (bug#6032).
16785 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16787         * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
16788         Rewrite to avoid awkward possessive "s" (bug#5986).
16790 2011-07-13  Glenn Morris  <rgm@gnu.org>
16792         * dired.el (dired-use-ls-dired): Doc fix.  (Bug#9039).
16793         (dired-insert-directory): Give a message the first time
16794         if ls is found not to support --dired.
16796 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16798         * simple.el (toggle-truncate-lines): Clarify what is toggled
16799         (bug#5580).  Text by Drew Adams.
16801 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
16803         * simple.el (blink-matching-open): Make the error message from the
16804         last change less verbose.
16806 2011-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
16808         * font-lock.el (font-lock-comment-face): Use the high contrast
16809         "yellow" color for font-lock-comment-face on low color terminals
16810         using a dark background color (bug#4221).
16812 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16814         * dired.el (dired-insert-set-properties): Make the doc string
16815         reflect what it does now (bug#5325).
16817         * simple.el (blink-matching-open): Say that we were unable to find
16818         the match within the limit, if we're limited (bug#5122).
16820         * international/mule-cmds.el (prefer-coding-system): Add an
16821         example (bug#4869).
16823         * progmodes/etags.el (tags-search): Document `file-list-form'
16824         (bug#4731).
16826 2011-07-13  Lawrence Mitchell  <wence@gmx.li>
16828         * net/browse-url.el (browse-url-default-browser)
16829         (browse-url-browser-function): Make the default browser choice a
16830         bit more logical (bug#4300).  Also clean up the doc string.
16832 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
16834         * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
16835         binary endings (bug#4440).
16837 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16839         * info.el (info-insert-file-contents): Inhibit jka-compr messages,
16840         which can be pretty annoying (bug#8971).
16842         * jka-compr.el (jka-compr-verbose): New variable, and use
16843         throughout (bug#8971).
16845         * info.el (Info-find-file): Fall back on the installation
16846         directory if we can't find the info node anywhere else.
16848 2011-07-13  Sergei Organov  <osv@javad.com>  (tiny change)
16850         * vc/vc.el (vc-revert-file):
16851         Don't set file time-stamp in the past.  (Bug#5181)
16853 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16855         * files.el (after-find-file): Give a better error message when
16856         trying to find a symlink that points to a file that doesn't exist
16857         (bug#4398).
16859         * progmodes/cc-vars.el: Remove (probably) misleading comment
16860         (bug#4396).
16862 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
16864         * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
16866 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
16868         * mouse-sel.el: Hack restoring functionality, while keeping
16869         compatibility with 2010-07-03 changes to mouse selection.
16870         (mouse-sel-primary-overlay): New var.
16871         (mouse-sel-selection-alist): Use it.
16872         (mouse-sel-mode): Doc fix; remove points that are default features
16873         of mouse.el.
16875 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
16877         * progmodes/compile.el (compilation-error-regexp-alist-alist):
16878         Fix previous fix (bug#2490).
16880 2011-07-12  Roland Winkler  <winkler@gnu.org>
16882         * textmodes/bibtex.el (bibtex-initialize):
16883         Use pop-to-buffer-same-window.
16884         (bibtex-search-entries): Fix interactive call.
16886 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16888         * progmodes/compile.el (compilation-error-regexp-alist-alist):
16889         Fontise bytecomp Error lines more correctly (bug#2490).
16890         Fix suggested by Johan Bockgård.
16892         * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
16894         * dired-x.el (dired-guess-default): Use `delete-dups'.
16896 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
16898         * dired.el (dired-mark-prompt):
16899         * dired-aux.el (dired-read-shell-command): Doc fix.
16901 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16903         * mail/sendmail.el (sendmail-query-once):
16904         Use `customize-save-variable' unconditionally, now that it works under
16905         emacs -Q.
16907         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16909         * cus-edit.el (custom-file): Take an optional no-error variable.
16910         (customize-save-variable): Set the variable, and give a warning if
16911         running under "emacs -q".
16913 2011-07-11  Juanma Barranquero  <lekktu@gmail.com>
16915         * loadhist.el (unload-feature-special-hooks):
16916         Add `auto-coding-functions', `fill-nobreak-predicate' and
16917         `find-directory-functions' (bug#5327).
16919 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16921         * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
16923         * cus-edit.el (custom-guess-name-alist): -alist variables should
16924         use the `alist' type (bug#3120).  Suggested by Drew Adams.
16926         * printing.el: Add documentation to all the `pr-toggle-' commands.
16928 2011-07-11  Leo Liu  <sdl.web@gmail.com>
16930         * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
16931         backends where it makes sense (bug#2623).
16933 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16935         * dired-x.el (dired-guess-default): Remove duplicate shell command
16936         entries (bug#2028).
16937         (dired-guess-default): Fix grammar in doc string (bug#2028).
16938         (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
16940         * subr.el (remove-duplicates): New conveniency function.
16942 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16944         * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
16945         (bug#1526).
16947 2011-07-10  Martin Rudalics  <rudalics@gmx.at>
16949         * window.el (display-buffer-normalize-default): Don't invert
16950         meaning of even-window-heights.  Reported by Eli Zaretskii
16951         <eliz@gnu.org>.
16953 2011-07-10  Bob Rogers  <rogers@rgrjr.dyndns.org>
16955         * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
16957 2011-07-10  Chong Yidong  <cyd@stupidchicken.com>
16959         * window.el (display-buffer): Fix arguments to
16960         display-buffer-reuse-window in last change.
16962         * faces.el (link): Use a less saturated blue on light backgrounds.
16964         * startup.el (fancy-startup-text, fancy-about-text)
16965         (fancy-startup-tail): Use font-lock faces, for background safety.
16967 2011-07-09  Bob Nnamtrop  <bobnnamtrop@gmail.com>  (tiny change)
16969         * emulation/viper-cmd.el (viper-change-state-to-vi):
16970         Limit triggering of abbrev expansion (Bug#9038).
16972 2011-07-09  Martin Rudalics  <rudalics@gmx.at>
16974         * window.el (display-buffer-default-specifiers): Remove.
16975         (display-buffer-macro-specifiers): Remove default specifiers.
16976         (display-buffer-alist): Default to nil.
16977         (display-buffer-reuse-window): New optional argument other-window.
16978         (display-buffer-pop-up-window): Allow splitting internal
16979         windows.  Check whether a live window was created.
16980         (display-buffer-other-window-means-other-frame)
16981         (display-buffer-normalize-arguments): Rename to
16982         display-buffer-normalize-argument and rewrite.  Set the
16983         other-window specifier.
16984         (display-buffer-normalize-special): New function.
16985         (display-buffer-normalize-options): Rename to
16986         display-buffer-normalize-default and rewrite.
16987         (display-buffer-normalize-options-inhibit): Remove.
16988         (display-buffer-normalize-specifiers): Rewrite.
16989         (display-buffer): Process other-window specifier and call
16990         display-buffer-reuse-window with it.  Emulate Emacs 23 behavior
16991         more faithfully.
16992         (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
16993         (display-buffer-alist-set): Don't handle 'unset default values.
16994         (display-buffer-in-window, display-buffer-alist-set):
16995         Replace symbol "dedicated" by "dedicate".  Reported by Tassilo Horn
16996         <tassilo@member.fsf.org>.
16998 2011-07-09  Leo Liu  <sdl.web@gmail.com>
17000         * register.el (insert-register): Restore accidental change on
17001         2011-06-26.  (Bug#9028)
17003 2011-07-09  Glenn Morris  <rgm@gnu.org>
17005         * subr.el (remq): Handle the empty list.  (Bug#9024)
17007 2011-07-08  Andreas Schwab  <schwab@linux-m68k.org>
17009         * mail/sendmail.el (send-mail-function): No longer delay custom
17010         initialization.
17011         * custom.el (custom-initialize-delay): Doc fix.
17013 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17015         * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
17017 2011-07-08  Michael Albinus  <michael.albinus@gmx.de>
17019         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
17020         human-friendly prompt.
17022 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17024         * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
17025         provided by a particular plugin.
17027 2011-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17029         * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
17030         save customizations (with "emacs -Q"), just set the variable
17031         instead of erroring out.
17033         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
17035 2011-07-08  Juri Linkov  <juri@jurta.org>
17037         * arc-mode.el (archive-zip-expunge, archive-zip-update)
17038         (archive-zip-update-case): Use 7z if found by `executable-find'.
17039         The order of searching the available programs is the same as in
17040         `archive-zip-extract' (bug#8968).
17042 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
17044         * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
17045         (menu-bar-options-menu): Tweak descriptions.
17047 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17049         * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
17050         menu items into verb phrases (bug#1421).  Also refill to fit under
17051         80 columns.
17053 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
17055         * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
17056         (Info-read-node-name): Doc fix (Bug#1084).
17058         * thingatpt.el (forward-thing, bounds-of-thing-at-point)
17059         (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
17060         (end-of-sexp, beginning-of-sexp)
17061         (thing-at-point-bounds-of-list-at-point, forward-whitespace)
17062         (forward-symbol, forward-same-syntax, word-at-point)
17063         (sentence-at-point): Doc fix (Bug#1144).
17065 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17067         * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
17068         should cover it (bug#1281).
17070         * cus-edit.el (custom-show): Mark as obsolete.
17072         * net/network-stream.el (network-stream-open-starttls): If GnuTLS
17073         negotiation fails, then possibly try again with a non-encrypted
17074         connection (bug#9017).
17076         * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
17077         be used.
17079 2011-07-07  Richard Stallman  <rms@gnu.org>
17081         * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
17082         property, and handle its changed format.
17083         Look for the correct line number.
17084         Use file's line contents (but not past first =) to find
17085         correct line in message.
17087 2011-07-07  Kenichi Handa  <handa@m17n.org>
17089         * international/characters.el (build-unicode-category-table):
17090         Delete it.
17091         (unicode-category-table): Set it by unicode-property-table-internal.
17093         * international/mule-cmds.el (char-code-property-alist): Move to
17094         to src/chartab.c.
17095         (get-char-code-property): Call unicode-property-table-internal to
17096         load a file.  Call get-unicode-property-internal where necessary.
17097         (put-char-code-property): Call unicode-property-table-internal to
17098         load a file.  Call put-unicode-property-internal where necessary.
17099         put-unicode-property-internal where necessary.
17100         (char-code-property-description):
17101         Call unicode-property-table-internal to load a file.
17103         * international/charprop.el:
17104         * international/uni-bidi.el:
17105         * international/uni-category.el:
17106         * international/uni-combining.el:
17107         * international/uni-comment.el:
17108         * international/uni-decimal.el:
17109         * international/uni-decomposition.el:
17110         * international/uni-digit.el:
17111         * international/uni-lowercase.el:
17112         * international/uni-mirrored.el:
17113         * international/uni-name.el:
17114         * international/uni-numeric.el:
17115         * international/uni-old-name.el:
17116         * international/uni-titlecase.el:
17117         * international/uni-uppercase.el: Regenerate.
17119         * loadup.el: Load international/charprop.el before
17120         international/characters.
17122 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
17124         * window.el (next-buffer, previous-buffer): Signal an error if
17125         called from a minibuffer window.
17127         * bindings.el: Revert 2011-07-04 change.
17129 2011-07-06  Richard Stallman  <rms@gnu.org>
17131         * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
17132         (rmail-mime-insert-bulk, rmail-mime-insert-text):
17133         Treat markers like ints.
17134         (rmail-mime-entity): Doc fix.
17136 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17138         * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
17139         defcustom again for backwards compatibility.
17141         * simple.el (shell-command-on-region): Fill.
17143         * dired-aux.el (dired-kill-line): Add a doc string.
17145         * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
17146         to "\\sw\\|\\s_" (bug#358).
17148         * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
17149         (dired-unmark-backward): Ditto.
17150         (dired-flag-backup-files): Ditto.
17152         * dired-x.el (dired-mark-sexp): Ditto.
17154 2011-07-06  Richard Stallman  <rms@gnu.org>
17156         * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
17157         (rmail-mime-entity): New arg TRUNCATED.
17158         (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
17159         New functions.
17160         (rmail-mime-save): Warn if entity is truncated.
17161         (rmail-mime-toggle-hidden): Likewise, for showing.
17162         (rmail-mime-process-multipart): Record when an entity is truncated.
17164         * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
17165         if ENTITY is a string.
17167 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17169         * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
17170         of faces when `M-C-x'-ing their definitions (bug#8378).
17171         Also clean up the code slightly.
17173         * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
17174         because that makes the colors go away.
17176         * mail/sendmail.el (send-mail-function): Change the default to
17177         `sendmail-query-once'.
17178         (sendmail-query-once): Add an autoload cookie.
17180         * net/network-stream.el (network-stream-open-starttls): Try using
17181         a plain connection even if the server offered STARTTLS, and we
17182         kinda wanted to use it, if Emacs doesn't have any STARTTLS
17183         capability.  This should make smtpmail.el work in slightly more
17184         configurations.
17186 2011-07-06  Michael Albinus  <michael.albinus@gmx.de>
17188         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
17189         New defun.
17190         * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
17192 2011-07-06  Michael R. Mauger  <mmaug@yahoo.com>
17194         * progmodes/sql.el: Version 3.0
17195         (sql-product-alist): Add product :completion-object,
17196         :completion-column, and :statement attributes.
17197         (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
17198         (sql-mode-syntax-table): Mark all punctuation.
17199         (sql-font-lock-keywords-builder): Temporarily remove fallback on
17200         ansi keywords.
17201         (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
17202         (sql-mode-oracle-font-lock-keywords): Improve.
17203         (sql-oracle-show-reserved-words): New function for development.
17204         (sql-product-font-lock): Simplify for source code buffers.
17205         (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
17206         New functions.
17207         (sql-highlight-product): Set product specific syntax table.
17208         (sql-mode-map): Add statement movement functions.
17209         (sql-ansi-statement-starters, sql-oracle-statement-starters):
17210         New variable.
17211         (sql-statement-regexp, sql-beginning-of-statement)
17212         (sql-end-of-statement, sql-signum): New functions.
17213         (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
17214         (sql-show-sqli-buffer): Bug fix.
17215         (sql-interactive-mode): Store connection data as buffer local.
17216         (sql-connect): Add NEW-NAME parameter.  Redesign interaction
17217         with sql-interactive-mode.
17218         (sql-save-connection): Save buffer local settings.
17219         (sql-connection-menu-filter): Change menu entry name.
17220         (sql-product-interactive): Bug fix.
17221         (sql-preoutput-hold): New variable.
17222         (sql-interactive-remove-continuation-prompt): Bug fixes.
17223         (sql-debug-redirect): New variable.
17224         (sql-str-literal): New function.
17225         (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
17226         Redesign.
17227         (sql-oracle-save-settings, sql-oracle-restore-settings)
17228         (sql-oracle-list-all, sql-oracle-list-table): New functions.
17229         (sql-completion-object, sql-completion-column)
17230         (sql-completion-sqlbuf): New variables.
17231         (sql-build-completions-1, sql-build-completions)
17232         (sql-try-completion): New functions.
17233         (sql-read-table-name): Use them.
17234         (sql-contains-names): New buffer local variable.
17235         (sql-list-all, sql-list-table): Use it.
17236         (sql-oracle-completion-types): New variable.
17237         (sql-oracle-completion-object, sql-sqlite-completion-object)
17238         (sql-postgres-completion-object): New functions.
17240 2011-07-06  Glenn Morris  <rgm@gnu.org>
17242         * window.el (pop-to-buffer): Doc fix.
17244 2011-07-06  Markus Heiser  <markus.heiser@darmarit.de>  (tiny change)
17246         * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
17248 2011-07-06  Chong Yidong  <cyd@stupidchicken.com>
17250         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
17252         * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
17254 2011-07-05  Chong Yidong  <cyd@stupidchicken.com>
17256         * button.el (button): Inherit from link face.  Suggested by Dan
17257         Nicolaescu.
17259 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17261         * progmodes/gdb-mi.el: Fit in 80 columns.
17262         (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
17263         switch-to-buffer.
17265         * progmodes/which-func.el (which-func-ff-hook): Don't output a message
17266         if imenu is simply not configured (bug#8941).
17268 2011-07-05  Ken Manheimer  <ken.manheimer@gmail.com>
17270         * allout.el (allout-post-undo-hook): New allout outline-change
17271         event hook to signal undo activity.
17272         (allout-post-command-business): Run allout-post-undo-hook if an
17273         undo just occurred.
17274         (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
17275         * allout-widgets.el (allout-widgets-after-undo-function):
17276         Ensure the integrity of the current item's decoration after it has been
17277         in the vicinity of an undo.
17278         (allout-widgets-mode): Include allout-widgets-after-undo-function
17279         on the new allout-post-undo-hook.
17281 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17283         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
17284         Let define-derived-mode define it.
17285         * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
17286         cycles of abbrev-table inheritance (bug#8998).
17288 2011-07-05  Roland Winkler  <winkler@gnu.org>
17290         * textmodes/bibtex.el: Add support for biblatex.
17291         (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
17292         (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
17293         (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
17294         (bibtex-entry-alist, bibtex-field-alist): New variables.
17295         (bibtex-entry-field-alist): Obsolete alias for
17296         bibtex-BibTeX-entry-alist.
17297         (bibtex-entry-alist, bibtex-field-alist): New widgets.
17298         (bibtex-set-dialect): New command.
17299         (bibtex-entry-type, bibtex-entry-head)
17300         (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
17301         Bind via bibtex-set-dialect.
17302         (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
17303         (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
17304         (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
17305         (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
17306         Define via bibtex-set-dialect.
17307         (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
17308         Obey bibtex-no-opt-remove-re.
17309         (bibtex-vec-push, bibtex-vec-incr): New functions.
17310         (bibtex-format-entry, bibtex-field-list)
17311         (bibtex-print-help-message, bibtex-validate)
17312         (bibtex-search-entries): Use new format of bibtex-entry-alist.
17314 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17316         * progmodes/compile.el (compilation-goto-locus):
17317         * net/tramp-cmds.el (tramp-append-tramp-buffers):
17318         * bs.el (bs-cycle-next, bs-cycle-previous):
17319         * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
17320         * bindings.el (mode-line-other-buffer):
17321         * autoinsert.el (auto-insert):
17322         * arc-mode.el (archive-extract):
17323         * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
17325 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
17327         * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
17328         Fix check of `emacs-lock-unlockable-modes'.
17329         Coerce true values of `emacs-lock--try-unlocking' to t.
17331 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
17333         * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
17334         * emacs-lock.el: New file.
17336 2011-07-05  Julien Danjou  <julien@danjou.info>
17338         * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
17339         than `boundp' to check if face is set.
17341 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
17343         * register.el (registerv-make):
17344         * window.el (window-min-height): Fix typos in docstrings.
17346 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
17348         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
17349         Update doc string.
17351 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
17353         * server.el (server-execute): Catch quit and call
17354         `server-return-error' to pass the error back to emacsclient and
17355         close the connection (bug#8942).
17357 2011-07-04  Ken Manheimer  <ken.manheimer@gmail.com>
17359         * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
17360         insecure exception for current topic.  Also note that auto-saves
17361         are handled differently.
17363         (allout-auto-save-temporarily-disabled, allout-just-did-undo):
17364         State variables for tracking auto-save inhibition situation.
17366         (allout-write-contents-hook-handler): Rename from
17367         'allout-write-file-hook-handler', and describe how it depends on
17368         write-contents-functions sensitivity to non-nil value to prevent
17369         file write.
17371         (allout-auto-save-hook-handler): Remove.  auto-save does not check
17372         this in individual buffers, only in the starting buffer, so this
17373         is not the right way for us to inhibit auto-save in a buffer
17374         according to its condition.
17376         (allout-mode): Use new allout-write-contents-hook-handler, and
17377         only with write-contents-functions.  Remove auto-save provisions -
17378         they're implemented elsewhere.
17380         (allout-before-change-handler): If undo is in progress, note that
17381         for attention of allout-post-command-business.
17383         (allout-post-command-business): If the command we're following was
17384         an undo, check for change in the status of encrypted items and
17385         adjust auto-save inhibitions accordingly.
17387         (allout-toggle-subtree-encryption): Adjust auto-save inhibition
17388         according to whether there are or aren't any plain-text topics
17389         pending encryption.
17391         (allout-inhibit-auto-save-info-for-decryption):
17392         Adjust buffer-saved-size and some allout state to inhibit auto-saves
17393         if there are plain-text topics pending encryption.
17395         (allout-maybe-resume-auto-save-info-after-encryption): Adjust
17396         buffer-saved-size and some allout state to not inhibit auto-saves
17397         if there are no longer any plain-text topics pending encryption.
17399         (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
17400         No longer provide for exemption of the current topic.
17402 2011-07-04  Juri Linkov  <juri@jurta.org>
17404         Add 7z operations to delete and save changed members (bug#8968).
17405         * arc-mode.el (archive-7z-expunge, archive-7z-update):
17406         New defcustoms.
17407         (archive-7z-write-file-member): New function.
17408         (archive-7z-summarize): Fix the number of dashes in the
17409         listing output.
17411 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17413         * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
17414         (bug#8958).
17416 2011-07-04  Chong Yidong  <cyd@stupidchicken.com>
17418         * bindings.el: Ignore next-buffer and previous-buffer in
17419         minibuffer-local-map.
17421         * font-lock.el (font-lock-builtin-face): Change light background
17422         color to dark slate blue (Bug#6693).
17424 2011-07-04  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
17426         * progmodes/gdb-mi.el (gdb): Use completion-at-point.
17428 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17430         * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
17431         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
17432         Add switch-to-buffer.
17434 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17436         * isearch.el (isearch-search-fun-function): Clarify further the
17437         meaning of the function returned.
17439 2011-07-04  Michael Albinus  <michael.albinus@gmx.de>
17441         * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
17443         * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
17444         (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
17445         Use it.
17446         (tramp-remote-path): Add "/bin" and "/usr/bin".  On busyboxes,
17447         `tramp-default-remote-path' does not exist.
17448         (tramp-send-command-and-read): New optional argument NOERROR.
17449         (tramp-open-connection-setup-interactive-shell)
17450         (tramp-get-remote-path, tramp-get-remote-stat): Use it.
17451         (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
17452         (tramp-process-sentinel): Flush also process' connection property.
17453         (tramp-sh-handle-start-file-process): Do not set process
17454         sentinel.  It is done now ...
17455         (tramp-maybe-open-connection): ... here.  (Bug#8929)
17457 2011-07-04  MON KEY  <monkey@sandpframing.com>
17459         * play/animate.el (animate-string): Doc fixes and allow changing
17460         the buffer name (bug#5417).
17462 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17464         * play/animate.el (animation-buffer-name): Rename from *animate*.
17466 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
17468         * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
17469         This is simpler and helps future-proof the code.
17470         (timer-until): Use time-subtract and float-time.
17471         (timer--time-less-p): Use time-less-p.
17473 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
17475         * type-break.el (timep): Use the value of `float-time' to avoid a
17476         byte-compiler warning.
17478         * server.el (server-eval-and-print): Return any result, even nil.
17480 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17482         * type-break.el: Accept time formats that the builtins accept.
17483         (timep, type-break-time-difference): Accept any format that
17484         float-time accepts, rather than insisting on (HIGH LOW USECS) format.
17485         This is simpler and helps future-proof the code.
17486         (type-break-time-difference): Round rather than ignoring
17487         subseconds components.
17489 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17491         * info.el (Info-apropos-matches): Make non-interactive, since it
17492         doesn't seem to do anything useful as a command (bug#8829).
17494 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
17496         * frame.el (frame-background-mode, frame-set-background-mode):
17497         Move from faces.el.
17498         (frame-default-terminal-background): New function.
17500         * custom.el (custom-push-theme): Don't record faces in `changed'
17501         theme; this doesn't work correctly for per-frame face settings.
17502         (disable-theme): Use face-set-after-frame-default to reset faces.
17503         (custom--frame-color-default): New function.
17505 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17507         * dired.el (dired-flagging-regexp): Remove unused variable
17508         (bug#8769).
17510 2011-03-29  Kevin Ryde  <user42@zip.com.au>
17512         * progmodes/compile.el (compilation-error-regexp-alist-alist):
17513         `perl-Test2' extend to match possible "fail #N" rep count
17514         (bug#8377).
17516 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17518         * mail/feedmail.el (feedmail-buffer-to-smtpmail):
17519         `smtpmail-via-smtp' now returns the error instead of nil.
17521         * isearch.el (isearch-search-fun-function): Clarify the doc string
17522         (bug#8101).
17524 2011-07-03  Richard Kim  <emacs18@gmail.com>  (tiny change)
17526         * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
17527         unnecessary spaces (bug#8987).
17529 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17531         * net/network-stream.el (open-network-stream): Use the
17532         :end-of-capability command thoughout.
17534 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
17536         * net/network-stream.el (open-network-stream): Add the
17537         :end-of-capability command parameter, used by pop3.el.
17539 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17541         * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
17543         * fringe.el (fringe-query-style): Remove redundant text " (type ?
17544         for list)" (bug#6475).
17546         * files.el (file-expand-wildcards): Ignore non-readable
17547         sub-directories while trying to find matches instead of signaling
17548         an error (bug#6297).
17550         * man.el (Man-reference-regexp): Allow matching possible
17551         word-wrapped references (bug#6289).
17553         * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
17554         for consistency with the other vc buffers (bug#6197).
17555         (vc-checkin): Ditto.
17557         * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
17559         * longlines.el (longlines-mode): Document what ARG does (bug#6150).
17561 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17563         * custom.el (defcustom): Clarify that :set is only used in the
17564         Customize user interface (bug#6089).
17566         * progmodes/flymake.el (flymake-mode): If the buffer isn't
17567         associated with a file, refuse to run instead of erroring out
17568         (bug#6084).
17570         * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
17571         the doc string, since it appears that using `fill-column' always
17572         controls the width (bug#7845).
17574         * simple.el (shell-command-on-region): Say where the error output
17575         went if `shell-command-default-error-buffer' is set (bug#6857).
17577 2011-07-02  Ken Manheimer  <ken.manheimer@gmail.com>
17579         * allout.el (allout-yank-processing): Adjust cursor position for
17580         backwards-deleted space.
17582         (allout-rebullet-heading): Register changes with
17583         allout-exposure-changed-hook, so the modified topic is properly
17584         decorated.
17586 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17588         * minibuffer.el (completion-in-region): Document PREDICATE
17589         (bug#7136).
17591         * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
17592         of keyword/argument pairs (bug#6904).
17594         * replace.el (multi-occur):
17595         Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
17597 2011-07-02  Drew Adams  <drew.adams@oracle.com>
17599         * dired.el (dired-mark-if): Make the message about whether it's
17600         marking or unmarking clearer (bug#8523).
17602 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17604         * disp-table.el (display-table-print-array): New function.
17605         (describe-display-table): Use it to print the vectors more pretty
17606         (Bug#8859).
17608 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
17610         * window.el (window-state-get-1): Don't assign clone numbers.
17611         Add clone-of item to list of window parameters.
17612         (window-state-put-2): Don't process clone numbers.
17613         (display-buffer-alist): Fix doc-string.
17615 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
17617         * subr.el (remq): Don't allocate if it's not needed.
17618         (keymap--menu-item-binding, keymap--menu-item-with-binding)
17619         (keymap--merge-bindings): New functions.
17620         (keymap-canonicalize): Use them to refine the canonicalization.
17621         * minibuffer.el (minibuffer-local-completion-map)
17622         (minibuffer-local-must-match-map): Move initialization from C.
17623         (minibuffer-local-filename-completion-map): Move initialization from C;
17624         don't inherit from anything here.
17625         (minibuffer-local-filename-must-match-map): Make obsolete.
17626         (completing-read-default): Use make-composed-keymap to combine
17627         minibuffer-local-filename-completion-map with either
17628         minibuffer-local-must-match-map or
17629         minibuffer-local-filename-completion-map.
17631 2011-07-01  Glenn Morris  <rgm@gnu.org>
17633         * type-break.el (type-break-time-sum): Use dolist.
17635         * textmodes/flyspell.el (flyspell-word-search-backward):
17636         Replace CL function.
17638 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
17640         * mouse.el (mouse--strip-first-event): New function.
17641         (function-key-map): Use it to map fringe clicks to normal clicks
17642         by default.
17644         * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
17645         (vc-bzr-revision-completion-table): Add support for annotate and date.
17647         * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
17648         inherit from parent.
17650 2011-07-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17652         * dired-aux.el (dired-diff): Doc fixup (bug#8816).
17653         (dired-show-file-type): Doc fixup (bug#8818).
17655         * dired.el (dired-mode): Fix up the doc string as suggested by
17656         Drew Adams (bug#8817).
17658         * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
17659         cookie, since the manual says that it should be possible to add
17660         this function to `find-file-hook' (bug#8709).
17662 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
17664         * progmodes/cfengine.el: Moved all cfengine3.el functionality
17665         here.  Noted Ted Zlatanov as the maintainer.
17666         (cfengine-common-settings, cfengine-common-syntax): New functions
17667         to set up common things between `cfengine-mode' and
17668         `cfengine3-mode'.
17669         (cfengine3-mode): New mode.
17670         (cfengine3-defuns cfengine3-defuns-regex
17671         (cfengine3-class-selector-regex cfengine3-category-regex)
17672         (cfengine3-vartypes cfengine3-font-lock-keywords)
17673         (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
17674         (cfengine3-indent-line): Add from cfengine3.el.
17676 2011-07-01  Michael Albinus  <michael.albinus@gmx.de>
17678         * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
17680         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
17682 2011-07-01  Martin Rudalics  <rudalics@gmx.at>
17684         * window.el (same-window-buffer-names, same-window-regexps)
17685         (same-window-p, special-display-frame-alist)
17686         (special-display-popup-frame, special-display-function)
17687         (special-display-buffer-names, special-display-regexps)
17688         (special-display-p, pop-up-frame-alist, pop-up-frame-function)
17689         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17690         (split-window-preferred-function, split-height-threshold)
17691         (split-width-threshold, even-window-heights)
17692         (display-buffer-mark-dedicated, window-splittable-p)
17693         (split-window-sensibly, window-safely-shrinkable-p):
17694         Un-obsolete.
17695         (display-buffer): Don't spread args with function specifier
17696         because special-display-popup-frame won't like it.
17698 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
17700         Time-stamp simplifications and fixes.
17701         These improve accuracy slightly, and future-proof the code
17702         against some potential changes to current-time format.
17704         * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
17705         by using time-since and float-time.
17707         * vc/ediff-util.el (ediff-calc-command-time): Use time-since
17708         and float-time.  Say "NNN.NNN seconds" rather than "NNN seconds
17709         + NNN microseconds".
17711         * type-break.el (type-break-time-sum): Rewrite using time-add.
17713         * play/hanoi.el (hanoi-current-time-float): Remove.
17714         All uses replaced by float-time.
17716         * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
17717         This yields a more-accurate answer.
17718         (rng-time-to-float): Remove; no longer needed.
17720         * emacs-lisp/timer.el (timer-relative-time): Use time-add.
17722         * calendar/timeclock.el (timeclock-seconds-to-time):
17723         Defalias to seconds-to-time, since they're the same thing.
17725         * emacs-lisp/elp.el (elp-elapsed-time):
17726         * emacs-lisp/benchmark.el (benchmark-elapse):
17727         * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
17729 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
17731         * window.el (bury-buffer): Don't iconify the only frame.
17732         (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
17733         to pop-to-buffer.  Use pop-to-buffer-same-frame if you don't like that.
17735 2011-07-01  Chong Yidong  <cyd@stupidchicken.com>
17737         * eshell/em-smart.el (eshell-smart-display-navigate-list):
17738         Add mouse-yank-primary.
17740 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
17742         * progmodes/cfengine3.el: New file to support CFEngine 3.x.
17744 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
17746         * emacs-lisp/find-func.el (find-library--load-name): New fun.
17747         (find-library-name): Use it to find relative load names when provided
17748         absolute file name (bug#8803).
17750 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17752         * textmodes/flyspell.el (flyspell-word): Consider words that
17753         differ only in case as potential doublons (bug#5687).
17755         * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
17756         Remove two rather uninteresting debugging-like messages to make
17757         debbugs.el more silent.
17759         * comint.el (comint-password-prompt-regexp): Accept "Response" as
17760         a password-like phrase.
17762 2011-06-30  Masatake YAMATO  <yamato@redhat.com>
17764         * progmodes/cc-guess.el: New file.
17766         * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
17768         * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
17769         derived from `c-basic-common-init'.
17771         * progmodes/cc-mode.el (top-level): Require cc-guess.
17772         (c-basic-common-init): Use `cc-choose-style-for-mode'.
17774 2011-06-30  Lawrence Mitchell  <wence@gmx.li>
17776         * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
17778 2011-06-30  Alan Mackenzie  <acm@muc.de>
17780         * progmodes/cc-engine.el (c-guess-continued-construct):
17781         Correct the handling of template-args-cont, particularly for when font
17782         lock is disabled.  Name this case as "CASE G".
17784 2011-06-30  Ken Manheimer  <ken.manheimer@gmail.com>
17786         * allout.el (allout-yank-processing): Fix injection of extra space
17787         between bullet and non-whitespace character in first topic when
17788         pasting, ensuring that the actual spacing in the pasted topic
17789         following the bullet char is preserved.  This extra space was
17790         causing pasted encrypted topics to get a decrypted status even
17791         when the content was actually still encrypted.  Now the decryption
17792         status from before the paste is preserved.
17794         (allout-flag-region): Set all allout overlays so they evaporate
17795         when reduced to zero length (evanescent), to prevent overlay
17796         leakage.
17798 2011-06-30  Glenn Morris  <rgm@gnu.org>
17800         * w32-fns.el (w32-charset-info-alist): Declare.
17802         * find-dired.el (find-grep-options): Simplify.
17804         * term/ns-win.el (ns-set-resource): Declare.
17806         * ses.el (row, col): Declare dynamic variables honestly.
17808         * textmodes/reftex-parse.el (index-tags): Declare.
17810 2011-06-30  Chong Yidong  <cyd@stupidchicken.com>
17812         * cus-edit.el (customize-push-and-save): New function.
17814         * files.el (hack-local-variables-confirm): Use it.
17816         * custom.el (load-theme): New arg NO-CONFIRM.
17817         Use customize-push-and-save (Bug#8720).
17818         (custom-enabled-themes): Doc fix.
17820         * cus-theme.el (customize-create-theme)
17821         (custom-theme-merge-theme): Callers to load-theme changed.
17823 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17825         * thingatpt.el (thing-at-point-short-url-regexp): Require that
17826         short URLs have at least one dot in them (bug #7614).
17828         * progmodes/grep.el (rgrep): Bind `process-connection-type' to
17829         nil, because using a pty is apparently too slow (bug #895).
17831 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17833         * mail/sendmail.el (sendmail-query-once): New function.
17834         (sendmail-query-once-function): New variable.
17836 2011-06-29  Glenn Morris  <rgm@gnu.org>
17838         * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
17840         * ses.el (top-level): Require cl when compiling.
17841         (ses-set-localvars): Fix error statement.
17842         Call it at compile time to silence a storm of warnings.
17844 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
17846         * window.el (normalize-live-buffer): Rename to
17847         window-normalize-buffer.
17848         (normalize-live-frame): Rename to window-normalize-frame.
17849         (normalize-any-window): Rename to window-normalize-any-window.
17850         (normalize-live-window): Rename to window-normalize-live-window.
17851         (make-window-atom): Rename to window-make-atom.
17852         (window-resize-reset): Rename to window--resize-reset.
17853         (window-resize-reset-1): Rename to window--resize-reset-1.
17854         (resize-mini-window): Rename to window--resize-mini-window.
17855         (resize-subwindows-skip-p): Rename to
17856         window--resize-subwindows-skip-p.
17857         (resize-subwindows-normal): Rename to
17858         window--resize-subwindows-normal.
17859         (resize-subwindows): Rename to window--resize-subwindows.
17860         (resize-other-windows): Rename to window--resize-siblings.
17861         (resize-this-window): Rename to window--resize-this-window.
17862         (resize-root-window): Rename to window--resize-root-window.
17863         (resize-root-window-vertically): Rename to
17864         window--resize-root-window-vertically.
17865         (normalize-buffer-to-display): Rename to
17866         window-normalize-buffer-to-display.
17867         (normalize-buffer-to-switch-to): Rename to
17868         window-normalize-buffer-to-switch-to.
17869         Correspondingly update all callers of the functions listed
17870         above.
17871         (display-buffer-alist, display-buffer-normalize-arguments)
17872         (display-buffer-normalize-options, display-buffer)
17873         (display-buffer-alist-set): Use "function" instead of
17874         "fun-with-args".
17876 2011-06-28  Chong Yidong  <cyd@stupidchicken.com>
17878         * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
17879         addresses more clearly.  Add hyperlinks for bug-gnu-emacs and
17880         debbugs.gnu.org.  Mention acknowledgment email.
17882 2011-06-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17884         * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
17885         buffer multibyteness, since it shouldn't matter.
17887 2011-06-28  Martin Rudalics  <rudalics@gmx.at>
17889         * window.el (display-buffer-in-side-window): Handle dedicated
17890         windows as in display-buffer-reuse-window.
17891         (display-buffer-normalize-alist): Use value of override
17892         specifier.
17893         (display-buffer-normalize-specifiers): Use value of
17894         other-window-means-other-frame specifier.
17895         (display-buffer-alist): Rewrite some texts in widgets.
17896         (display-buffer): Spread arguments when calling function
17897         specified by fun-with-args.
17899 2011-06-28  Deniz Dogan  <deniz@dogan.se>
17901         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17902         Unnest `let'.
17904         * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
17905         selectors (Bug#5732).
17906         (css-proprietary-nmstart-re): Use `regexp-opt'.
17908 2011-06-27  Jari Aalto  <jari.aalto@cante.net>
17910         * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
17911         (eshell-ls-date-format): New defcustom.
17912         (eshell-ls-file): Use it.
17914 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
17916         * help-fns.el (describe-variable): Fix message for terminal-local vars.
17918 2011-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17920         * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
17921         (ange-ftp-make-tmp-name): New arg.
17922         (ange-ftp-file-local-copy): Use it.
17924 2011-06-27  Jambunathan K  <kjambunathan@gmail.com>
17926         * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
17927         no-conversion (Bug#8870).
17929 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
17931         * window.el (window-right, window-left, window-child)
17932         (window-child-count, window-last-child)
17933         (window-iso-combination-p, walk-window-tree-1)
17934         (window-atom-check-1, window-tree-1, delete-window)
17935         (window-state-get-1, display-buffer-even-window-sizes): Adapt to
17936         new naming conventions - window-vchild, window-hchild,
17937         window-next and window-prev are now called window-top-child,
17938         window-left-child, window-next-sibling and window-prev-sibling
17939         respectively.
17940         (resize-window-reset): Rename to window-resize-reset.
17941         (resize-window-reset-1): Rename to window-resize-reset-1.
17942         (resize-window): Rename to window-resize.
17943         (window-min-height, window-min-width)
17944         (resize-mini-window, resize-this-window, resize-root-window)
17945         (resize-root-window-vertically, adjust-window-trailing-edge)
17946         (enlarge-window, shrink-window, maximize-window)
17947         (minimize-window, delete-window, quit-restore-window)
17948         (split-window, balance-windows, balance-windows-area-adjust)
17949         (balance-windows-area, window-state-put-2)
17950         (display-buffer-even-window-sizes, display-buffer-set-height)
17951         (display-buffer-set-width, set-window-text-height)
17952         (fit-window-to-buffer): Rename all "resize-window" prefixed
17953         calls to use the "window-resize" prefix convention.
17954         (display-buffer-alist): Fix symbol for label specifier.
17955         (display-buffer-reuse-window): Set reuse-dedicated to cdr of
17956         corresponding specifier.
17957         Reported by Juanma Barranquero <lekktu@gmail.com>.
17959 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
17961         * ses.el (ses-destroy-cell-variable-range): Fix heading comment
17962         convention.
17963         (ses-call-printer): Does not pass an empty string to formatter when the
17964         cell is empty to keep from barking printer Calc math-format-value.
17966 2011-06-27  Richard Stallman  <rms@gnu.org>
17968         * battery.el (battery-mode-line-limit): New variable.
17969         (battery-update): Handle it.
17971         * mail/rmailmm.el (rmail-mime-process-multipart):
17972         Handle truncated messages.
17974 2011-06-27  Glenn Morris  <rgm@gnu.org>
17976         * progmodes/flymake.el (flymake-err-line-patterns):
17977         Allow for column numbers in the ant/javac pattern.  (Bug#8866)
17979 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
17981         * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
17982         (ses--clean-!, ses--clean-_): New functions.
17983         (ses-range): Add configurability of readout order, and conversion
17984         to Calc vector.
17986         * ses.el (ses-repair-cell-reference-all): New function.
17987         (ses-cell-symbol): Set macro as safe, so that it can be used in
17988         formulas.
17990         * ses.el: Update cycle detection algorithm.
17991         (ses-localvars): Add ses--Dijkstra-attempt-nb and
17992         ses--Dijkstra-weight-bound, and initial values thereof when applicable.
17993         (ses-set-localvars): New function.
17994         (ses-make-cell): Add property-list as a cell element.
17995         (ses-cell-property-get-fun, ses-cell-property-get)
17996         (ses-cell-property-delq-fun, ses-cell-property-set-fun)
17997         (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
17998         New functions.
17999         (ses-cell-property-set, ses-cell-property-pop)
18000         (ses-cell-property-get-handle): New macro.
18001         (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
18002         New aliases, used for code readability.
18003         (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
18004         cycle detection.
18005         (ses-self-reference-early-detection): New defcustom.
18006         (ses-formula-references): Robustify against self-referring cells.
18007         (ses-mode): Use ses-set-localvars.
18008         (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
18009         before lauching the update processing.
18010         (ses-initialize-Dijkstra-attempt): New function.
18011         (ses-recalculate-cell): Update for cycle detection based on
18012         Dijkstra algorithm.
18014         * ses.el: Fix commenting and indenting convention.
18016 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
18018         * bs.el (bs-cycle-next): Complete last change.
18020 2011-06-27  Drew Adams  <drew.adams@oracle.com>
18022         * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
18024 2011-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18026         * net/network-stream.el (network-stream-open-starttls):
18027         Don't re-get capabilities unless we've reestablished connection.
18028         (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
18030         * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
18031         to binary to possibly avoid line encoding issues on Windows (among
18032         other things).
18034 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18036         * net/network-stream.el (open-network-stream): Return an :error
18037         saying what the problem was, if possible.
18039         * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
18040         server.
18042         * net/network-stream.el (network-stream-open-starttls): If we
18043         wanted to use STARTTLS, and the server offered it, but we weren't
18044         able to because we had no STARTTLS support, then close the connection.
18045         (open-network-stream): Return an :error element, if present.
18047 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
18049         * hl-line.el (hl-line-sticky-flag): Doc fix.
18050         (global-hl-line-sticky-flag): New option (Bug#8323).
18051         (global-hl-line-highlight): Obey it.
18053         * vc/vc.el (vc-revert-show-diff): Default to t.
18055 2011-06-26  Ken Manheimer  <ken.manheimer@gmail.com>
18057         * allout-widgets.el (allout-widgets-post-command-business):
18058         Stop decorating intermediate isearch matches.  They're not being
18059         undecorated when an isearch is continued past, and isearch
18060         automatically collapses them.  This leads to "widget leaks", where
18061         decorated items accumulate in collapsed areas.  Lines with lots of
18062         hidden widgets can slow down cursor travel, substantially.
18063         Too much complicated machinery would be needed to ensure undecoration,
18064         so we're doing without this nicety.
18066         (allout-widgets-tally-string): Don't try to do a hash-table-count
18067         of allout-widgets-tally when it's nil.  This eliminates spurious "Error
18068         during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
18069         *Messages* when allout-widgets-maintain-tally is t.
18071 2011-06-26  Martin Rudalics  <rudalics@gmx.at>
18073         * window.el (display-buffer-normalize-argument): Rename to
18074         display-buffer-normalize-arguments.  Handle special meaning of
18075         LABEL argument.  Respect special-display-function when popping up
18076         a new frame.  Fix code searching for a window showing the buffer
18077         on another frame.
18078         (display-buffer-normalize-specifiers):
18079         Call display-buffer-normalize-arguments.
18080         (display-buffer-in-window): Don't undedicate the window if its
18081         buffer remains the same.
18082         Reported by Drew Adams <drew.adams@oracle.com>.
18083         (display-buffer-alist): Add choice for same-window macro
18084         specfier.
18085         (display-buffer): Mention special meaning of LABEL argument in
18086         doc-string.  Fix quoting.  Don't pop up a new frame even as
18087         fallback.
18089 2011-06-26  Juanma Barranquero  <lekktu@gmail.com>
18091         * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
18092         avoid deleting the current window in some cases (bug#8911).
18094 2011-06-26  Andreas Schwab  <schwab@linux-m68k.org>
18096         * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
18097         (Bug#8934)
18099 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18101         * net/network-stream.el (network-stream-open-starttls):
18102         Use built-in TLS support if `gnutls-available-p' is true.
18103         (network-stream-open-tls): Ditto.
18105 2011-06-26  Leo Liu  <sdl.web@gmail.com>
18107         * register.el (registerv): New struct.
18108         (registerv-make): New function.
18109         (jump-to-register, describe-register-1, insert-register):
18110         Support the jump-func, print-func and insert-func slot of a registerv
18111         struct.  (Bug#8415)
18113 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
18115         * vc/vc.el (vc-revert-show-diff): New defcustom.
18116         (vc-diff-internal): New arg specifying diff buffer.
18117         (vc-revert): Obey vc-revert-show-diff.  If we show a diff, don't
18118         reuse an existing *vc-diff* buffer (Bug#8927).
18120         * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
18122 2011-06-26  Glenn Morris  <rgm@gnu.org>
18124         * progmodes/f90.el (f90-critical-indent): New option.
18125         (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
18126         (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
18127         (f90-mode): Doc fix.
18128         (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
18129         (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
18130         (f90-beginning-of-block, f90-next-block, f90-indent-region)
18131         (f90-match-end): Handle block, critical.
18133 2011-06-25  Glenn Morris  <rgm@gnu.org>
18135         * calendar/diary-lib.el (diary-included-files): Doc fix.
18136         (diary-include-files): New function, extracted from
18137         diary-include-other-diary-files and diary-mark-included-diary-files.
18138         (diary-include-other-diary-files, diary-mark-included-diary-files):
18139         Just call diary-include-files.
18140         (diary-mark-entries): Reset diary-included-files on first call.
18142         * calendar/diary-lib.el (diary-mark-entries)
18143         (diary-mark-included-diary-files):
18144         Visit included diary-files in temp buffers.
18146         * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
18147         (f90-blocks-re, f90-program-block-re, f90-end-block-re)
18148         (f90-start-block-re, f90-imenu-generic-expression)
18149         (f90-looking-at-program-block-start, f90-no-block-limit):
18150         Add support for submodules.
18152         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
18153         (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
18155 2011-06-25  Eli Zaretskii  <eliz@gnu.org>
18157         * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
18158         buffer-file-type before setting its value, to avoid disastrous
18159         global effects on decoding files for DOS/Windows systems.  (Bug#8780)
18161 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
18163         * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
18165         * ses.el (ses-unload-function):
18166         * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
18168         * proced.el (proced-unload-function):
18169         * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
18171 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
18173         * server.el (server-create-window-system-frame): Add parameters arg.
18174         (server-process-filter): Doc fix.  Handle frame-parameters.
18176 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
18178         Fix bug#8730, bug#8781.
18180         * loadhist.el (unload--set-major-mode): New function.
18181         (unload-feature): Use it.
18183         * progmodes/python.el (python-after-info-look): Add autoload cookie.
18184         (python-unload-function): New function.
18186 2011-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
18188         * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
18190 2011-06-25  Giuseppe Scrivano  <gscrivano@gnu.org>
18192         * net/browse-url.el (browse-url-firefox-program): Add icecat to
18193         the candidates list.
18195 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
18197         * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
18199 2011-06-23  Richard Stallman  <rms@gnu.org>
18201         * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
18202         (rmail-variables): Set next-error-move-function.
18203         (rmail-what-message): Take argument POS.
18204         (rmail-next-error-move): New function.
18206 2011-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
18208         * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
18209         messages for adjacent non-terminals.
18211 2011-06-23  Richard Stallman  <rms@gnu.org>
18213         * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
18214         (rmail-show-message-1): Preserve buffer modified flag.
18215         (rmail-start-mail): Don't specify use of rmail-mail-return;
18216         that's done by mail-bury now.
18217         (rmail-mail-return): Handle arg NEWBUF.
18219 2011-06-23  Michael Albinus  <michael.albinus@gmx.de>
18221         * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
18222         SIZE is a number.
18224 2011-06-23  Martin Rudalics  <rudalics@gmx.at>
18226         * window.el (get-lru-window, get-mru-window)
18227         (get-largest-window): Never return a minibuffer window.
18228         (display-buffer-pop-up-window): Fix a bug that could lead to
18229         reusing the minibuffer window.
18230         (display-buffer): Pass original specifier argument to
18231         display-buffer-function instead of the normalized one.
18232         Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
18234 2011-06-22  Leo Liu  <sdl.web@gmail.com>
18236         * minibuffer.el (completing-read-function)
18237         (completing-read-default): Move from minibuf.c.
18239 2011-06-22  Richard Stallman  <rms@gnu.org>
18241         * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
18242         to Rmail even if not started by a special Rmail command.
18244         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
18245         Copy the buffer currently showing just one message.
18247 2011-06-22  Roland Winkler  <winkler@gnu.org>
18249         * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
18250         (bibtex-clean-entry): First delete the old key so that a
18251         customized algorithm for generating the new key does not get
18252         confused by the old key.
18253         (bibtex-url): Obey regexp of first step.
18254         (bibtex-search-entries): Do not use add-to-list with local
18255         list-var.
18257 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18259         * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
18260         stored a user name, then query for the password first, instead of
18261         waiting for SMTP to give an error message and the trying again.
18263 2011-06-22  Lawrence Mitchell  <wence@gmx.li>
18265         * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
18266         BUFFER in call-process.
18268 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18270         * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
18271         QUIT twice.
18272         (smtpmail-try-auth-methods): Require user name and password from
18273         auth-source.
18275 2011-06-22  Martin Rudalics  <rudalics@gmx.at>
18277         * window.el (display-buffer-default-specifiers)
18278         (display-buffer-alist): Remove entries for pop-up-frame-alist.
18279         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
18280         (split-window): Normalize SIDE argument (Bug#8916).
18282         * frame.el (pop-up-frame-alist, pop-up-frame-function)
18283         (special-display-frame-alist, special-display-popup-frame):
18284         Remove duplicate declarations.  These are now in window.el.
18286 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18288         * mail/smtpmail.el (smtpmail-via-smtp):
18289         Set :use-starttls-if-possible so that we always use STARTTLS if the
18290         server supports it.  SMTP servers that support STARTTLS commonly
18291         require it.
18293         * net/network-stream.el (network-stream-open-starttls): Support
18294         upgrading to STARTTLS always, even if we don't have built-in support.
18295         (open-network-stream): Add the :always-query-capabilities keyword.
18297         * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
18298         upgrades with `open-network-stream', and rely solely on
18299         auth-source for all credentials.  Big changes throughout the file,
18300         but in particular:
18301         (smtpmail-auth-credentials): Remove.
18302         (smtpmail-starttls-credentials): Remove.
18303         (smtpmail-via-smtp): Check for servers saying they want AUTH after
18304         MAIL FROM, too.
18306         * net/network-stream.el (network-stream-open-starttls):
18307         Provide support for client certificates both for external and built-in
18308         STARTTLS.
18309         (auth-source): Require.
18310         (open-network-stream): Document the :client-certificate keyword.
18311         (network-stream-certificate): Change cert-cert to cert and
18312         cert-key to key.
18314 2011-06-21  Michael Albinus  <michael.albinus@gmx.de>
18316         * net/tramp-cache.el (top): Don't load the persistency file when
18317         "emacs -Q" has been called.
18319 2011-06-21  Tim Harper  <timcharper@gmail.com>
18321         * term/ns-win.el (ns-initialize-window-system):
18322         Set application-specific `ApplePressAndHoldEnabled' system
18323         resource to NO as it is not yet supported by the NS port.
18325 2011-06-21  Juanma Barranquero  <lekktu@gmail.com>
18327         * misc.el (list-dynamic-libraries--refresh): Compute header here...
18328         (list-dynamic-libraries): ...not here.
18330 2011-06-21  Leo Liu  <sdl.web@gmail.com>
18332         * subr.el (sha1): Implement sha1 using secure-hash.
18334 2011-06-21  Martin Rudalics  <rudalics@gmx.at>
18336         * window.el (display-buffer-alist): In default value do not
18337         enforce searching a window on any but the selected frame.
18338         Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
18339         (display-buffer-select-window): Remove function.
18340         (display-buffer-in-window): When a window on another frame gets
18341         reused, do not select it any more but just raise its frame if
18342         necessary (Bug#8851) and (Bug#8856).
18343         (display-buffer-normalize-options): Handle pop-up-frames related
18344         options more faithfully.
18345         (pop-to-buffer): Don't rely on `display-buffer' selecting the
18346         window if it is on another frame.
18347         (display-buffer-alist, display-buffer-default-specifiers):
18348         Don't make new frame unsplittable by default.
18349         (display-buffer-normalize-argument): Fix doc-string typo and use
18350         'same-frame-other-window instead of 'other-window when associating
18351         with display-buffer-macro-specifiers.
18353 2011-06-21  Vincent Belaïche  <vincent.b.1@hotmail.fr>
18355         * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
18356         New functions.
18357         (5x5-mode-map, 5x5-mode-menu): Bind them.
18358         (5x5-draw-grid): Tweak the solver's rendering.
18360 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
18362         * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
18363         `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
18365 2011-06-21  Drew Adams  <drew.adams@oracle.com>
18367         * menu-bar.el: Use function variable instead of switch-to-buffer.
18368         (menu-bar-select-buffer-function): New variable.
18369         (menu-bar-update-buffers): Use it (bug#8876).
18371 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
18373         * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
18374         variable's status.
18376 2011-06-20  Jan Djärv  <jan.h.d@swipnet.se>
18378         * x-dnd.el (x-dnd-version-from-flags)
18379         (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
18380         and long as number (Bug#8899).
18381         (x-dnd-handle-xdnd): Call functions above (Bug#8899).
18383 2011-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
18385         * minibuffer.el (completion-metadata): Add `metadata' to the alist.
18386         (completion-try-completion, completion-all-completions): Compute the
18387         metadata argument if it's missing; make it optional (bug#8795).
18389         * wid-edit.el: Use lex-bind and move towards completion-at-point.
18390         (widget-complete): Use new :completion-function property.
18391         (widget-completions-at-point): New function.
18392         (default): Use :completion-function instead of :complete.
18393         (widget-default-completions): Rename from widget-default-complete;
18394         Rewrite.
18395         (widget-string-complete, widget-file-complete, widget-color-complete):
18396         Remove functions.
18397         (file, symbol, function, variable, coding-system, color):
18398         * international/mule-cmds.el (default-input-method, charset)
18399         (language-info-custom-alist):
18400         * cus-edit.el (face): Use new property :completions.
18402         * progmodes/pascal.el (pascal-completions-at-point): New function.
18403         (pascal-mode): Use it.
18404         (pascal-mode-map): Use completion-at-point.
18405         (pascal-toggle-completions): Make obsolete.
18406         (pascal-complete-word, pascal-show-completions):
18407         * progmodes/octave-mod.el (octave-complete-symbol):
18408         Redefine as obsolete alias.
18409         * progmodes/octave-inf.el (inferior-octave-completion-at-point):
18410         Signal absence of completion info for old Octave,
18411         (inferior-octave-complete): Redefine as obsolete alias.
18412         * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
18413         (meta-completions-at-point): Rename from meta-complete-symbol and
18414         adapt it for use on completion-at-point-functions.
18415         (meta-common-mode): Use it.
18416         (meta-looking-at-backward, meta-match-buffer): Remove.
18417         (meta-complete-symbol): Redefine as obsolete alias.
18418         (meta-common-mode-map): Use completion-at-point.
18419         * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
18420         (makefile-mode-map): Use completion-at-point.
18421         (makefile-completions-at-point): Rename from makefile-complete and
18422         adapt it for use on completion-at-point-functions.
18423         (makefile-mode): Use it.
18424         (makefile-complete): Redefine as obsolete alias.
18426 2011-06-20  Deniz Dogan  <deniz@dogan.se>
18428         * net/rcirc.el: Delete trailing whitespaces once and for all.
18430 2011-06-20  Daniel Colascione  <dan.colascione@gmail.com>
18432         * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
18434 2011-06-19  Chong Yidong  <cyd@stupidchicken.com>
18436         * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
18438         * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
18440 2011-06-19  Martin Rudalics  <rudalics@gmx.at>
18442         * window.el (display-buffer-other-window-means-other-frame):
18443         Call display-buffer-normalize-alist.
18444         (display-buffer-normalize-specifiers-1): Rename to
18445         display-buffer-normalize-argument.  New argument other-frame.
18446         Rewrite.
18447         (display-buffer-normalize-specifiers-2): Rename to
18448         display-buffer-normalize-options.
18449         (display-buffer-normalize-alist-1): New function.
18450         (display-buffer-normalize-specifiers-3): Rename to
18451         display-buffer-normalize-alist.
18452         Call display-buffer-normalize-alist-1.
18453         (display-buffer-normalize-options-inhibit): New variable.
18454         (display-buffer-normalize-specifiers): Rewrite calling
18455         display-buffer-normalize-alist,
18456         display-buffer-normalize-argument, and
18457         display-buffer-normalize-options.  Don't call the latter if
18458         display-buffer-normalize-options-inhibit is non-nil.
18459         (frame-auto-delete): New option.
18460         (window-deletable-p): Use frame-auto-delete.
18461         (window-list-no-nils, window-state-ignored-parameters)
18462         (window-state-get-1, window-state-get, window-state-put-list)
18463         (window-state-put-1, window-state-put-2, window-state-put):
18464         New functions.
18465         (display-buffer-normalize-options): Move special-display-p group
18466         after pop-up-frame group (Bug#8851) and (Bug#8856).
18468 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
18470         * emacs-lisp/rx.el (rx-constituents): Add support for numbered
18471         groups (Bug#8776).
18472         (rx-submatch-n): New function.
18473         (rx): Document it.
18475         * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
18476         (Bug#8768).
18478         * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
18480         * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
18482         * cus-face.el (custom-declare-face): Call custom-theme-recalc face
18483         anytime existing face settings are present (Bug#8889).
18485         * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
18486         (delphi-mode): Use define-derived-mode to inherit from prog-mode.
18487         Remove unused argument.
18489 2011-06-18  Martin Rudalics  <rudalics@gmx.at>
18491         * window.el (display-buffer-default-specifiers):
18492         Remove pop-up-frame.  Add pop-up-window-min-height,
18493         pop-up-window-min-width, and another reuse-window specifier
18494         (Bug#8882).  Reported by Dan Nicolaescu <dann@gnu.org>.
18495         (display-buffer-normalize-specifiers-2):
18496         Handle split-height-threshold and split-width-threshold also when
18497         pop-up-windows is unset.  Add a reuse-window specifier for the
18498         case popping up a new window fails.
18499         (special-display-popup-frame): Remove double quoting.
18500         (display-buffer-normalize-specifiers-1): Fix thinko.
18502 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
18504         * shell.el (shell-completion-vars): Set pcomplete-termination-string
18505         according to comint-completion-addsuffix.
18507         * pcomplete.el: Convert to lexical binding and fix bug#8819.
18508         (pcomplete-suffix-list): Mark as obsolete.
18509         (pcomplete-completions-at-point): Capture pcomplete-norm-func and
18510         pcomplete-seen in the closure.
18511         (pcomplete-comint-setup): Setup completion-at-point as well.
18512         (pcomplete--entries): New function.
18513         (pcomplete--env-regexp): New var.
18514         (pcomplete-entries): Rewrite to work with partial-completion and
18515         without relying on pcomplete-suffix-list.
18516         (pcomplete-pare-list): Remove, unused.
18518 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
18520         * window.el (display-buffer-alist): Set pop-up-window-min-height
18521         and pop-up-window-min-width in default value.  Reported by
18522         Thierry Volpiatto <thierry.volpiatto@gmail.com>.  New specifier
18523         other-window-means-other-frame.
18524         (display-buffer-macro-specifiers): Comment out entry for
18525         other-window specifier.
18526         (display-buffer-other-window-means-other-frame): New function.
18527         (display-buffer-normalize-specifiers-1): New arguments
18528         buffer-name and label.  Treat other-window case specially.
18529         (display-buffer-normalize-specifiers-2): Treat other-window case
18530         specially.
18531         (display-buffer-normalize-specifiers-3): New function.
18532         (display-buffer-normalize-specifiers):
18533         Call display-buffer-normalize-specifiers-3.
18535 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
18537         * window.el (same-window-p): Fix two typos introduced when
18538         adding with-no-warnings.
18539         (display-buffer-normalize-specifiers-1): Don't check
18540         pop-up-frames for 'unset initialization.
18541         (display-buffer-normalize-specifiers-2): Major rewrite using
18542         special-display-p and same-window-p (Bug#8851) and (Bug#8856).
18543         (pop-up-frames, display-buffer-reuse-frames)
18544         (display-buffer-mark-dedicated): Don't initialize to 'unset.
18545         Suggested by David Engster <deng@randomsample.de>.
18546         (even-window-heights): Initialize to 'unset.
18547         (display-buffer-alist-set): Handle new 'unset initializations.
18548         (display-buffer-macro-specifiers): Don't pop up a new frame in the
18549         other window case.
18551 2011-06-16  Martin Rudalics  <rudalics@gmx.at>
18553         * window.el (display-buffer-normalize-specifiers-1):
18554         Respect current value of pop-up-frames for most reasonable values of
18555         second argument of display-buffer (Bug#8865).
18556         (switch-to-buffer-same-frame, switch-to-buffer-other-window)
18557         (switch-to-buffer-other-window-same-frame)
18558         (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
18559         Adams (Bug#8875).
18560         (display-buffer): Don't check noninteractive when calling
18561         display-buffer-pop-up-frame.
18562         (display-buffer-pop-up-frame): Never pop up a frame in
18563         noninteractive mode (Bug#8857).
18564         (enlarge-window, shrink-window): Don't report an error when the
18565         window can't be resized as requested (Bug#8862).
18567 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
18569         * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
18571         * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
18573         * abbrev.el (define-abbrev-table): Don't add a table multiple times.
18575 2011-06-15  Alan Mackenzie  <acm@muc.de>
18577         * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
18578         for declarators, disable knr checking to speed up for normal files.
18579         2: Refactor, replacing a sequence of nested if forms by a cond form.
18581 2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18583         * net/network-stream.el (open-network-stream): Add the keyword
18584         :always-query-capabilities for the case where you want to force a
18585         `plain' network connection, but the protocol still requires the
18586         capabilitiy command (i.e., SMTP and EHLO).
18588         * subr.el (process-live-p): Rename from `process-alive-p' for
18589         consistency with other `-live-p' functions.
18591 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
18593         * window.el (same-window-buffer-names, same-window-regexps)
18594         (special-display-frame-alist, special-display-popup-frame)
18595         (special-display-function, special-display-buffer-names)
18596         (special-display-regexps, pop-up-frame-alist)
18597         (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
18598         (pop-up-windows, split-window-preferred-function)
18599         (split-height-threshold, split-width-threshold, even-window-heights)
18600         (display-buffer-mark-dedicated): Don't encourage the use of
18601         display-buffer-alist from Elisp code.
18603 2011-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
18605         * progmodes/python.el (python-mode): Derive from prog-mode.
18606         * progmodes/ps-mode.el (ps-mode):
18607         * progmodes/mixal-mode.el (mixal-mode):
18608         * progmodes/cfengine.el (cfengine-mode):
18609         * progmodes/ld-script.el (ld-script-mode): Likewise.
18611 2011-06-15  Martin Rudalics  <rudalics@gmx.at>
18613         * window.el (display-buffer-alist): Trim default value to avoid
18614         popping up a new frame (Bug#8857) or reusing an arbitrary window
18615         on another frame.
18616         (display-buffer): Do not fall back on popping up a new frame in
18617         batch mode (Bug#8857).
18619 2011-06-14  Chong Yidong  <cyd@stupidchicken.com>
18621         * cus-theme.el (describe-theme-1): Use custom-theme-p.
18622         (custom-theme-summary): New function.
18623         (customize-themes): Use it.
18625 2011-06-13  Glenn Morris  <rgm@gnu.org>
18627         * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
18629 2011-06-13  Martin Rudalics  <rudalics@gmx.at>
18631         * help.el (help-window): Remove variable.
18632         (help-window-point-marker, temp-buffer-max-height)
18633         (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
18634         (help-print-return-message): Don't set help-window.
18635         (resize-temp-buffer-window): Rewrite cod eand doc-string.
18636         (help-window-setup-finish): Remove.
18637         (help-window-display-message, help-window-setup)
18638         (with-help-window): Major rewrite based on new
18639         display-buffer-window variable.
18641         * help-mode.el (help-mode-finish): Remove help-window related
18642         code.
18644         * view.el (view-exits-all-viewing-windows): Remove reference to
18645         view-return-to-alist in doc-string.
18646         (view-return-to-alist): Make obsolete.
18647         (view-buffer): Call pop-to-buffer-same-window and remove
18648         undo-window code.
18649         (view-buffer-other-window): Call pop-to-buffer-other-window and
18650         simplify code.  Ignore second argument.
18651         (view-buffer-other-frame): Call pop-to-buffer-other-frame and
18652         simplify code.  Ignore second argument.
18653         (view-return-to-alist-update): Make obsolete.
18654         (view-mode-enter): Rename second argument to QUIT-RESTORE.
18655         Rewrite using quit-restore window parameters.
18656         (view-mode-exit): Rename second argument to EXIT-ONLY.
18657         Rewrite using quit-restore-window.
18658         (View-exit, View-exit-and-edit, View-leave, View-quit)
18659         (View-quit-all, View-kill-and-leave): Call view-mode-exit with
18660         appropriate arguments.
18661         (view-end-message): Use quit-restore window parameter.
18663         * window.el (display-buffer-function): Rewrite doc-string.
18664         (display-buffer-window, display-buffer-alist): New variables.
18665         (display-buffer-split-specifiers)
18666         (display-buffer-side-specifiers)
18667         (display-buffer-macro-specifiers): New constants.
18668         (display-buffer-even-window-sizes, display-buffer-set-height)
18669         (display-buffer-set-width, display-buffer-select-window)
18670         (display-buffer-in-window, display-buffer-reuse-window)
18671         (display-buffer-split-window-1, display-buffer-split-window)
18672         (display-buffer-split-atom-window, display-buffer-pop-up-window)
18673         (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
18674         (display-buffer-in-side-window, normalize-buffer-to-display)
18675         (display-buffer-normalize-specifiers-1)
18676         (display-buffer-normalize-specifiers-2)
18677         (display-buffer-normalize-specifiers, display-buffer-frame):
18678         New functions.
18679         (display-buffer): Major rewrite.
18680         (display-buffer-other-window, display-buffer-other-frame)
18681         (pop-to-buffer, switch-to-buffer-other-window)
18682         (switch-to-buffer-other-frame): Rewrite.
18683         (display-buffer-same-window, display-buffer-same-frame)
18684         (display-buffer-same-frame-other-window)
18685         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18686         (pop-to-buffer-other-window)
18687         (pop-to-buffer-same-frame-other-window)
18688         (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
18689         (switch-to-buffer-other-window-same-frame): New functions.
18690         (same-window-p, special-display-p): Rewrite disabling warnings.
18691         Make obsolete.
18692         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18693         (display-buffer-mark-dedicated): Initialize to symbol 'unset.
18694         Make obsolete
18695         (same-window-buffer-names, same-window-regexps)
18696         (special-display-frame-alist, special-display-popup-frame)
18697         (special-display-function, special-display-buffer-names)
18698         (special-display-regexps, pop-up-frame-alist)
18699         (pop-up-frame-function, split-window-preferred-function)
18700         (split-height-threshold, split-width-threshold)
18701         (even-window-heights): Make obsolete.
18703 2011-06-12  Glenn Morris  <rgm@gnu.org>
18705         * term/xterm.el (terminal-init-xterm): `version' may be nil.  (Bug#8838)
18706         Misc simplifications.
18708 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
18710         * window.el (window-safely-shrinkable-p): Restore function which
18711         was inadvertently removed in change from 2011-06-11.  Declare as
18712         obsolete.
18714         * calendar/calendar.el (calendar-generate-window):
18715         Use window-iso-combined-p instead of combination of one-window-p and
18716         window-safely-shrinkable-p.
18718 2011-06-12  Glenn Morris  <rgm@gnu.org>
18720         * progmodes/fortran.el (fortran-mode-syntax-table):
18721         * progmodes/f90.el (f90-mode-syntax-table):
18722         Set % to punctuation.  (Bug#8820)
18723         (f90-find-tag-default): Remove, no longer needed.
18725 2011-06-12  Daniel Colascione  <dan.colascione@gmail.com>
18727         * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
18729 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
18731         * image.el (image-animated-p): Return animation delay in seconds.
18732         Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
18733         (image-animate-timeout): Remove DELAY argument.  Don't assume
18734         every subimage has the same delay; get it from image-animated-p.
18735         (image-animate): Caller changed.
18737 2011-06-11  Michael Albinus  <michael.albinus@gmx.de>
18739         * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
18740         to ignored backtrace functions.
18742 2011-06-11  Glenn Morris  <rgm@gnu.org>
18744         * calendar/appt.el (appt-disp-window-function): Doc fix.
18745         (appt-check): Handle overlapping appointments.  (Bug#8337)
18747 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
18749         * window.el (window-tree-1, window-tree): New functions, moving
18750         the latter to window.el.
18751         (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
18752         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
18753         (bw-refresh-edges): Remove.
18754         (balance-windows-1, balance-windows-2): New functions.
18755         (balance-windows): Rewrite in terms of window tree functions,
18756         balance-windows-1 and balance-windows-2.
18757         (bw-adjust-window): Remove.
18758         (balance-windows-area-adjust): New function with functionality of
18759         bw-adjust-window but using resize-window.
18760         (set-window-text-height): Rewrite doc-string.
18761         Use normalize-live-window and resize-window.
18762         (enlarge-window-horizontally, shrink-window-horizontally):
18763         Rename argument to DELTA.
18764         (window-buffer-height): New function.
18765         (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
18766         Rewrite using new window resize routines.
18767         (kill-buffer-and-window, mouse-autoselect-window-select):
18768         Use ignore-errors instead of condition-case.
18769         (quit-window): Call delete-frame instead of delete-windows-on
18770         for the only buffer on frame.
18772 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
18774         * loadup.el (top-level): Load window before files for the sake
18775         of replace-buffer-in-windows.
18777         * files.el (read-buffer-to-switch)
18778         (switch-to-buffer-other-window)
18779         (switch-to-buffer-other-frame, display-buffer-other-frame):
18780         Move to window.el.
18782         * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
18783         (previous-buffer): Move to window.el.
18785         * bindings.el (unbury-buffer): Move to window.el.
18787         * window.el (delete-other-windows-vertically): Move after
18788         definition of delete-other-windows.
18789         (other-window, delete-windows-on, replace-buffer-in-windows):
18790         Move here from window.c.
18791         (record-window-buffer, unrecord-window-buffer)
18792         (set-window-buffer-start-and-point, switch-to-prev-buffer)
18793         (switch-to-next-buffer): New functions.
18794         (get-next-valid-buffer, last-buffer, next-buffer): Move here
18795         from simple.el.  Call switch-to-next-buffer.
18796         (previous-buffer): Move here from simple.el.
18797         Call switch-to-prev-buffer.
18798         (bury-buffer): Move here from buffer.c.  Switch to previous
18799         buffer when window cannot be deleted.
18800         (unbury-buffer): Move here from bindings.el.
18801         (ctl-x-map): Move binding for other-window from window.c to
18802         here.
18803         (read-buffer-to-switch, switch-to-buffer-other-window)
18804         (switch-to-buffer-other-frame): Move here from files.el.
18805         (normalize-buffer-to-switch-to): New functions.
18806         (switch-to-buffer): Move here from buffer.c.
18807         Use read-buffer-to-switch and normalize-buffer-to-switch-to.
18809 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
18811         * window.el (window-min-height, window-min-width): Move here
18812         from window.c.  Add defcustoms and rewrite doc-strings.
18813         (resize-mini-window, resize-window): New functions.
18814         (adjust-window-trailing-edge, enlarge-window, shrink-window):
18815         Move here from window.c.
18816         (maximize-window, minimize-window): New functions.
18817         (delete-window, delete-other-windows, split-window): Move here
18818         from window.c.
18819         (window-split-min-size): New function.
18820         (split-window-keep-point): Mention split-window-above-each-other
18821         instead of split-window-vertically.
18822         (split-window-above-each-other, split-window-vertically):
18823         Rename split-window-vertically to split-window-above-each-other
18824         and provide defalias for old definition.
18825         (split-window-side-by-side, split-window-horizontally):
18826         Rename split-window-horizontally to split-window-side-by-side
18827         and provide defalias for the old definition.
18828         (ctl-x-map): Move bindings for delete-window,
18829         delete-other-windows and enlarge-window here from window.c.
18830         Replace bindings for split-window-vertically and
18831         split-window-horizontally by bindings for
18832         split-window-above-each-other and split-window-side-by-side.
18834         * cus-start.el (all): Remove entries for window-min-height and
18835         window-min-width.  Add entries for window-splits and
18836         window-nest.
18838 2011-06-09  Glenn Morris  <rgm@gnu.org>
18840         * calendar/appt.el (appt-mode-line): New function.
18841         (appt-check, appt-disp-window): Use it.
18843         * files.el (hack-one-local-variable-eval-safep):
18844         Allow minor-modes with explicit +/-1 arguments.
18846 2011-06-09  Teodor Zlatanov  <tzz@lifelogs.com>
18848         * term/xterm.el (xterm): Add defgroup.
18849         (xterm-extra-capabilities): Add defcustom to supply known xterm
18850         capabilities, skip querying them, or query them (default).
18851         (terminal-init-xterm): Use it.
18852         (terminal-init-xterm-modify-other-keys): New function to set up
18853         modifyOtherKeys support to simplify `terminal-init-xterm'.
18855 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
18857         * window.el (resize-window-reset, resize-window-reset-1)
18858         (resize-subwindows-skip-p, resize-subwindows-normal)
18859         (resize-subwindows, resize-other-windows, resize-this-window)
18860         (resize-root-window, resize-root-window-vertically)
18861         (window-deletable-p, window-or-subwindow-p)
18862         (frame-root-window-p): New functions.
18864 2011-06-09  Glenn Morris  <rgm@gnu.org>
18866         * net/ange-ftp.el (ange-ftp-switches-ok): New function.
18867         (ange-ftp-get-files): Use it.
18869 2011-06-09  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
18871         * mail/sendmail.el (mail-recover-1, mail-recover):
18872         * files.el (recover-file, recover-session):
18873         Handle dired-listing-switches not being just a single short option.
18875 2011-06-09  Glenn Morris  <rgm@gnu.org>
18877         * calendar/appt.el (appt-display-message, appt-disp-window):
18878         Handle lists of appointments.
18880 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
18882         * window.el (one-window-p): Move down in code.
18883         Rewrite doc-string.
18884         (window-current-scroll-bars): Rewrite doc-string.
18885         Normalize live window argument.
18886         (walk-windows, get-window-with-predicate, count-windows):
18887         Rewrite doc-string.  Use window-list-1.
18888         (window-in-direction-2, window-in-direction, get-mru-window):
18889         New functions.
18891 2011-06-08  Reuben Thomas  <rrt@sc3d.org>
18893         * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
18894         Doc fix (Bug#8713).
18896 2011-06-08  Chong Yidong  <cyd@stupidchicken.com>
18898         * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
18900 2011-06-08  Juanma Barranquero  <lekktu@gmail.com>
18902         * loadhist.el (unload-feature-special-hooks):
18903         Add `comint-output-filter-functions'.
18905 2011-06-08  Ivan Kanis  <gnu@kanis.fr>
18907         * calendar/appt.el (appt-check): Move some initializations into the let.
18909 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
18911         * window.el (window-height): Defalias to window-total-height.
18912         (window-width): Defalias to window-body-width.
18914 2011-06-07  Chong Yidong  <cyd@stupidchicken.com>
18916         * image-mode.el (image-toggle-animation): New command.
18917         (image-mode-map): Bind it to RET.
18918         (image-mode): Update message.
18919         (image-toggle-display-image): Avoid a spurious cache flush.
18920         (image-transform-rotation): Doc fix.
18921         (image-transform-properties): Return quickly in the normal case.
18922         (image-animate-loop): Rename from image-animate-max-time.
18924         * image.el (image-animate-max-time): Move to image-mode.el.
18925         (create-animated-image): Remove unnecessary function.
18926         (image-animate): Rename from image-animate-start.  New arg.
18927         (image-animate-stop): Remove; just use image-animate-timer.
18928         (image-animate-timer): Use car-safe.
18929         (image-animate-timeout): Rename argument.
18931 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
18933         * window.el (get-lru-window, get-largest-window): Move here from
18934         window.c.  Rename first argument to ALL-FRAMES.
18935         Rephrase doc-strings.
18936         (get-buffer-window-list): Rewrite using window-list-1.
18937         Rephrase doc-string.
18938         (window-safe-min-height, window-safe-min-width): New constants.
18939         (window-size-ignore, window-min-size, window-min-size-1)
18940         (window-sizable, window-sizable-p, window-size-fixed-1)
18941         (window-size-fixed-p, window-min-delta-1, window-min-delta)
18942         (window-max-delta-1, window-max-delta, window-resizable)
18943         (window-resizable-p, window-total-height, window-total-width)
18944         (window-body-width): New functions.
18945         (window-full-height-p, window-full-width-p): Rewrite using
18946         window-total-size.
18947         (window-body-height): Rewrite using window-body-size.
18949 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
18951         * window.el (window-right, window-left, window-child)
18952         (window-child-count, window-last-child, window-any-p)
18953         (normalize-live-buffer, normalize-live-frame)
18954         (normalize-any-window, normalize-live-window)
18955         (window-iso-combination-p, window-iso-combined-p)
18956         (window-iso-combinations)
18957         (walk-window-tree-1, walk-window-tree, walk-window-subtree)
18958         (windows-with-parameter, window-with-parameter)
18959         (window-atom-root, make-window-atom, window-atom-check-1)
18960         (window-atom-check, window-side-check, window-check):
18961         New functions.
18962         (ignore-window-parameters, window-sides, window-sides-vertical)
18963         (window-sides-slots): New variables.
18964         (window-size-fixed): Move down in code.  Minor doc-string fix.
18966 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
18968         * comint.el (comint-dynamic-complete-as-filename)
18969         (comint-dynamic-complete-filename): Correctly call
18970         completion-in-region.
18972 2011-06-05  Deniz Dogan  <deniz@dogan.se>
18974         * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
18975         in last change.
18977 2011-06-05  Deniz Dogan  <deniz@dogan.se>
18979         * net/rcirc.el (rcirc-prompt-for-encryption): New function.
18980         (rcirc): Use it to prompt for encryption.
18982 2011-06-05  Roland Winkler  <winkler@gnu.org>
18984         * textmodes/bibtex.el (bibtex-search-buffer): New variable.
18985         (bibtex-search-entries): New command bound to C-c C-a.
18986         (bibtex-display-entries): New function.
18988 2011-06-05  Roland Winkler  <winkler@gnu.org>
18990         * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
18991         (bibtex-insert-kill): After yanking insert newline if necessary.
18992         (bibtex-initialize): Call bibtex-string-files-init only once.
18993         (bibtex-mode): Do not call easy-menu-add.
18994         (bibtex-validate-globally): Use save-excursion in bibtex buffers.
18995         (bibtex-yank): Set arg properly if nil.
18997 2011-06-05  Roland Winkler  <winkler@gnu.org>
18999         * textmodes/bibtex.el (bibtex-search-entry-globally):
19000         New variable.
19001         (bibtex-search-entry): Use it.
19003 2011-06-05  Roland Winkler  <winkler@gnu.org>
19005         * textmodes/bibtex.el (bibtex-entry-format): New option
19006         sort-fields.
19007         (bibtex-format-entry, bibtex-reformat): Honor this option.
19008         (bibtex-parse-entry): Return fields in proper order.
19010 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
19012         * doc-view.el (doc-view-remove-if): Move computation of result out
19013         of `dolist' to silence misleading lexical-binding warning.
19015 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
19017         * emacs-lisp/timer.el (timer-activate): Remove unused arg.
19018         (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
19020 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
19022         * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
19023         "SunOS 5.10".
19025 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
19027         * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
19028         (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
19029         (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
19030         (tramp-parse-putty):
19031         * net/tramp-sh.el (tramp-completion-function-alist-rsh)
19032         (tramp-completion-function-alist-ssh)
19033         (tramp-completion-function-alist-telnet)
19034         (tramp-completion-function-alist-su)
19035         (tramp-completion-function-alist-putty): Set `tramp-autoload'
19036         cookie.
19038         * net/tramp-ftp.el:
19039         * net/tramp-sh.el:
19040         * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
19041         load "tramp.el" `tramp-set-completion-function'.
19043 2011-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
19045         * shell.el: Require and use pcomplete.
19046         (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
19047         (shell-completion-vars): Set pcomplete-default-completion-function.
19049 2011-06-04  Deniz Dogan  <deniz@dogan.se>
19051         * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
19052         `memq' (Bug#8799).
19054 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
19056         * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
19058 2011-06-02  Juanma Barranquero  <lekktu@gmail.com>
19060         * bs.el (bs--mark-unmark, bs--nth-wrapper):
19061         * mpc.el (mpc-select-extend, mpc-songpointer-context):
19062         * vc/log-view.el (log-view-beginning-of-defun):
19063         * vc/smerge-mode.el (smerge-apply-resolution-patch)
19064         (smerge-refine-forward, smerge-refine-chopup-region):
19065         Silence warning for unused `dotimes' counter variables.
19067 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
19069         * net/tramp.el (tramp-with-progress-reporter): Rename from
19070         with-progress-reporter.  Use `declare'.
19071         * net/tramp-smb.el:
19072         * net/tramp-sh.el:
19073         * net/tramp-gvfs.el: Update all uses.
19075 2011-06-02  Jay Belanger  <jay.p.belanger@gmail.com>
19077         * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
19078         buffer isn't killed before making it current.
19080 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
19082         Silence various byte-compiler warnings.
19083         * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
19084         `access-type' and new obsolescence format.
19085         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
19086         new format.
19087         (byte-compile-check-variable): New `access-type' argument.
19088         Only warn if the access-type is obsolete.
19089         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
19090         (byte-compile-variable-set): Adjust callers.
19091         * help-fns.el (describe-variable): Adjust to new obsolescence format.
19092         * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
19093         setting it as obsolete.
19094         * simple.el (minibuffer-completing-symbol):
19095         * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
19096         access as obsolete.
19097         * minibuffer.el (minibuffer-completing-file-name): Don't make it
19098         obsolete yet.
19099         * international/quail.el (quail-mouse-choose-completion): Remove unused
19100         code referring to obsolete var.
19101         (quail-choose-completion-string): Remove.
19102         * server.el (server-clients-with, server-kill-buffer-query-function)
19103         (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
19104         * proced.el (proced-send-signal):
19105         * emacs-lisp/lisp.el (lisp-complete-symbol):
19106         Replace completion-annotate-function with completion-extra-properties.
19108 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
19110         * simple.el (goto-line): Use read-number.
19111         (overriding-map-is-bound): Remove.
19112         (saved-overriding-map): Change default.
19113         (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
19114         Take the map as argument.
19115         (universal-argument, negative-argument, digit-argument): Use it.
19116         (restore-overriding-map): Adjust.
19117         (do-auto-fill): Use fill-forward-paragraph.
19118         (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
19120         * minibuffer.el (minibuffer-inactive-mode-map): New var.
19121         (minibuffer-inactive-mode): New major mode.
19122         * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
19123         the *Messages* buffer" hack.
19124         (mouse-popup-menubar): Don't burp if the event is a normal key.
19126         Miscellaneous tweaks.
19127         * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
19128         lexical scoping as in subr.el's dolist and dotimes.
19129         * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
19130         Silence compiler warning.
19131         * thingatpt.el (forward-whitespace): Trivial coding style fix.
19132         * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
19133         * international/ccl.el (ccl-compile): Trivial simplification.
19134         * help-fns.el (help-do-arg-highlight): Silence compiler warning.
19135         * emacs-lisp/testcover.el (testcover-end): Remove spurious
19136         `printflag' argument.
19137         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
19138         Purecopy the whole obsolescence data.
19140 2011-06-01  Leo Liu  <sdl.web@gmail.com>
19142         * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
19143         improve doc-string as suggested by Marco Pessotto
19144         <melmothx@gmail.com>.
19145         (rcirc-print): Fix last change.
19147 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19149         * minibuffer.el (complete-with-action): Return nil for the metadata and
19150         boundaries of non-functional tables.
19151         (completion-table-dynamic): Return nil for the metadata.
19152         (completion-table-with-terminator): Add default case, using
19153         complete-with-action.
19154         (completion--metadata): New function.
19155         (completion-all-sorted-completions, minibuffer-completion-help): Use it
19156         to try and avoid pathological performance problems.
19157         (completion--embedded-envvar-table): Return `category' metadata.
19159 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19161         * subr.el (process-alive-p): New tiny convenience function.
19163 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19165         * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
19166         content but also its previous major mode.
19168 2011-05-31  Helmut Eller  <eller.helmut@gmail.com>
19170         * emacs-lisp/debug.el (debug): Restore the previous content of the
19171         *Backtrace* buffer when we exit with C-M-c.
19173 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19175         * minibuffer.el: Add metadata method to completion tables.
19176         (completion-category-overrides): New defcustom.
19177         (completion-metadata, completion--field-metadata)
19178         (completion-metadata-get, completion--styles)
19179         (completion--cycle-threshold): New functions.
19180         (completion-try-completion, completion-all-completions):
19181         Add `metadata' argument to choose completion-styles.
19182         (completion--do-completion): Use metadata to choose cycling.
19183         (completion-all-sorted-completions): Use metadata for sorting.
19184         Remove :completion-cycle-penalty which is not needed any more.
19185         (completion--try-word-completion): Add `metadata' argument.
19186         (minibuffer-completion-help): Check metadata for annotation function
19187         and sorting.
19188         (completion-file-name-table): Return `category' metadata.
19189         (minibuffer-completing-file-name): Make obsolete.
19190         * simple.el (minibuffer-completing-symbol): Make obsolete.
19191         * icomplete.el (icomplete-completions): Pass new `metadata' param to
19192         completion-try-completion.
19194 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19196         * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
19198 2011-05-30  Leo Liu  <sdl.web@gmail.com>
19200         * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
19201         (rcirc-print): Decode all incoming messages (bug#8744).
19202         (rcirc-decode-coding-system): Allow value nil for automatic coding
19203         system detection.
19205 2011-06-01  Glenn Morris  <rgm@gnu.org>
19207         * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
19209 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
19211         * image.el (image-animate-max-time): Allow nil and t values.
19212         Default to nil.
19213         (create-animated-image): Doc fix.
19214         (image-animate-start): Remove second arg; just use
19215         image-animate-max-time.
19216         (image-animate-timeout): Doc fix.  Args changed.
19218         * image-mode.el (image-toggle-display-image): Ensure that the
19219         image spec passed to the animate timer is the same object as in
19220         the buffer's display property (Bug#6981).
19221         (image-transform-properties): Doc fix.
19223         * image.el (image-animate-max-time): Default to nil.
19225 2011-05-29  Martin Rudalics  <rudalics@gmx.at>
19227         * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
19228         entire buffer list (Bug#8184).
19230 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
19232         * image.el (imagemagick-types-inhibit)
19233         (imagemagick-register-types): Doc fix.
19235 2011-05-29  Deniz Dogan  <deniz@dogan.se>
19237         * net/rcirc.el (rcirc): Use the user's stored encryption method by
19238         default.
19240 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
19242         * select.el: Don't perform clipboard-manager saving in hooks;
19243         leave the hooks empty.
19245 2011-05-28  Leo Liu  <sdl.web@gmail.com>
19247         * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
19248         (occur-mode-map): Bind occur-edit-mode.  Use occur-menu-map.
19249         (occur-edit-mode): New major mode (Bug#8463).
19250         (occur-after-change-function): New function.
19251         (occur-engine): Give Occur tags a read-only property.
19253 2011-05-28  Kevin Ryde  <user42@zip.com.au>
19255         * subr.el (def-edebug-spec): Doc fix (Bug#8430).
19257 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
19259         * bindings.el (help-echo): Make the initial non-indicator dash
19260         empty on graphical terminals (Bug#7295).
19262         * files.el (auto-mode-alist): Move config rule after the
19263         in-stripping one (Bug#8547).
19265         * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
19267         * startup.el (normal-splash-screen): Remove gratuitous mode-line
19268         setting (Bug#8740).
19270 2011-05-28  Alp Aker  <aker@pitt.edu>  (tiny change)
19272         * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
19273         (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
19274         (Bug#8539).
19276 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
19278         * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
19280 2011-05-28  Dima Kogan  <dkogan@cds.caltech.edu>  (tiny change)
19282         * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
19283         (hs-hide-block-at-point, hs-find-block-beginning)
19284         (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
19285         (Bug#8279).
19287 2011-05-28  Glenn Morris  <rgm@gnu.org>
19289         * startup.el (fancy-about-screen): Use standard mode line.  (Bug#8740)
19291 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
19293         * help-fns.el (describe-function-1): If the function is a derived
19294         major mode, print the parent mode.
19296         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
19297         (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
19299 2011-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
19301         * minibuffer.el (completion--capf-wrapper): Check applicability before
19302         returning non-nil for non-exclusive completion data.
19303         * progmodes/etags.el (tags-completion-at-point-function):
19304         * info-look.el (info-lookup-completions-at-point): Mark as
19305         non-exclusive.
19306         (info-complete): Adjust accordingly.
19308         * info-look.el: Convert to lexical-binding and completion-at-point.
19309         (info-lookup-completions-at-point): New function.
19310         (info-complete): Use it and completion-in-region.
19312 2011-05-28  Drew Adams  <drew.adams@oracle.com>
19314         * isearch.el: Let M-e start with point at the first mismatched char.
19315         (isearch-fail-pos): New function.
19316         (isearch-edit-string): Use it.
19318 2011-05-28  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
19320         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
19322 2011-05-27  Toby Cubitt  <toby-predictive@dr-qubit.org>
19324         * emacs-lisp/avl-tree.el: New avl-tree-stack datatype.  Add new
19325         traversal functions for avl-trees.
19326         (avl-tree--stack): New struct.
19327         (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
19328         (avl-tree-enter): Add optional `updatefun' arg.
19329         (avl-tree--do-enter): Add optional `updatefun' arg.
19330         Change return value.
19331         (avl-tree-delete): Add optional `test' and `nilflag' args.
19332         (avl-tree--do-delete): Add `test' and `nilflag' args.
19333         Change return value.
19334         (avl-tree-member): Add optional `nilflag'
19335         (avl-tree-member-p): New function.
19336         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
19337         (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
19338         (avl-tree-stack-empty-p): New functions.
19340         * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
19341         avl-tree--del-balance1 and make it work both ways.
19342         (avl-tree--del-balance2): Remove.
19343         (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
19344         make it work both ways.
19345         (avl-tree--enter-balance2): Remove.
19346         (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
19347         New macros.
19348         (avl-tree--mapc, avl-tree-map): Add direction argument.
19350 2011-05-27  David Michael  <fedora.dm0@gmail.com>  (tiny change)
19352         * files.el (interpreter-mode-alist): Add rbash (bug#8745).
19354 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
19356         * select.el: Support clipboard managers with built-in function
19357         x-clipboard-manager-save, via delete-frame-functions and
19358         kill-emacs-hook.
19359         (xselect-convert-to-targets): Add MULTIPLE target to list.
19360         (xselect-convert-to-save-targets): New function.
19362 2011-05-27  Kenichi Handa  <handa@m17n.org>
19364         * mail/sendmail.el (mail-encode-header): Avoid double encoding by
19365         let-binding rfc2047-encode-encoded-words to nil.
19367 2011-05-27  Glenn Morris  <rgm@gnu.org>
19369         * mail/emacsbug.el: Don't require url-util.
19371         * shell.el (shell-directory-tracker): Case matters.  (Bug#8735)
19373         * files.el (set-auto-mode):
19374         Also respect mode: entries at the end of the file.  (Bug#8586)
19376 2011-05-26  Glenn Morris  <rgm@gnu.org>
19378         * files.el (hack-local-variables-prop-line, hack-local-variables):
19379         Downcase mode names, as seems to be traditional.
19380         (hack-local-variables, hack-local-variables-apply): Doc fixes.
19382         * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
19383         (report-emacs-bug-hook): Try to validate the From address.  (Bug#8038)
19385 2011-05-25  Julien Danjou  <julien@danjou.info>
19387         * textmodes/rst.el (rst-define-level-faces): Do not define face
19388         symbol if it is already defined.
19390 2011-05-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
19392         * play/5x5.el (5x5-new-game, 5x5-randomize):
19393         Reset 5x5-solver-output to nil when a new grid is cast.
19394         (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
19395         these debugging traces, as defmacro breaks the compiled code.
19397 2011-05-24  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
19399         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
19401 2011-05-24  Leo Liu  <sdl.web@gmail.com>
19403         * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
19404         (vc-bzr-sha1): Adapt.
19406         * sha1.el: Remove.  Function `sha1' is now builtin.
19408         * bindings.el: Provide sha1 feature.
19410 2011-05-24  Kenichi Handa  <handa@m17n.org>
19412         * mail/sendmail.el: Require `rfc2047'.
19413         (mail-insert-from-field): Do not perform RFC2047 encoding.
19414         (mail-encode-header): New function.
19415         (sendmail-send-it): Set buffer-file-coding-system of the work
19416         buffer to the return value of select-message-coding-system.
19417         Call mail-encode-header.
19419         * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
19421 2011-05-24  Sean Neakums  <sneakums@zork.net>  (tiny change)
19423         * mail/supercite.el (sc-default-cite-frame):
19424         Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
19426 2011-05-24  Glenn Morris  <rgm@gnu.org>
19428         * progmodes/python.el (brm-menu): Declare.
19430         * emulation/viper.el (viper-set-hooks): Declare.
19432         * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
19433         (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
19434         (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
19435         (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
19436         (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
19437         (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
19439 2011-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19441         Add an :exit-function for completion-at-point.
19443         * minibuffer.el (completion--done): New fun.
19444         (completion--do-completion): Use it.  New arg `expect-exact'.
19445         (minibuffer-complete, minibuffer-complete-word): Don't output message,
19446         since completion--do-completion does it for us now.
19447         (minibuffer-force-complete): Use completion--done and
19448         completion--replace.  Handle sole-completion case with more care.
19449         (minibuffer-complete-and-exit): Use new `expect-exact' arg.
19450         (completion-extra-properties): New var.
19451         (completion-annotate-function): Make obsolete.
19452         (minibuffer-completion-help): Adjust accordingly.
19453         Use completion-list-insert-choice-function.
19454         (completion-at-point, completion-help-at-point):
19455         Bind completion-extra-properties.
19456         (completion-pcm-word-delimiters): Add | (for uniquify, for example).
19457         * simple.el (completion-list-insert-choice-function): New var.
19458         (completion-setup-function): Preserve it.
19459         (choose-completion): Pay attention to it, shuffle the code a bit.
19460         (choose-completion-string): New arg `insert-function'.
19462         * textmodes/bibtex.el: Convert to lexical binding.
19463         (bibtex-mode-map): Use completion-at-point.
19464         (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
19465         (bibtex-completion-at-point-function): New fun, from bibtex-complete.
19466         (bibtex-complete): Define as obsolete alias.
19467         (bibtex-complete-internal): Remove.
19468         (bibtex-format-entry): Remove unused sub-group in regexp.
19469         * shell.el (shell--command-completion-data)
19470         (shell-environment-variable-completion):
19471         * pcomplete.el (pcomplete-completions-at-point):
19472         * comint.el (comint--complete-file-name-data): Use :exit-function
19473         instead of completion-table-with-terminator so it also works for
19474         choose-completion.
19476 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19478         * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
19480         * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
19481         (bug#8710).
19483         * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
19485 2011-05-23  Ken Manheimer  <ken.manheimer@gmail.com>
19487         * allout.el (allout-inhibit-auto-fill-on-headline): Create new
19488         customization variable and implement: If non-nil, auto-fill will
19489         be inhibited while on topic's header line.
19491 2011-05-23  Vincent Belaïche  <vincentb1@users.sourceforge.net>
19493         * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
19494         click on.  II/ Make 5x5 multisession.  III/ Ensure that random grids
19495         always have a solution in grid size = 5 cases.
19496         (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
19497         (5x5-solver-output, 5x5-log-buffer): New vars.
19498         (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
19499         Make these variables buffer local to achieve 5x5 multi-session-ness.
19500         (5x5): Set 5x5-grid-size only if SIZE is non-negative.
19501         (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
19502         (5x5-solve-suggest): New funs.
19503         (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
19504         randomize a grid so that we ensure that there is always a solution.
19505         (5x5-make-random-grid): Allow other movement than flipping.
19507 2011-05-23  Kevin Ryde  <user42@zip.com.au>
19509         * emacs-lisp/advice.el (ad-read-advised-function):
19510         Use `function-called-at-point' as the default, if it has
19511         advice and passes PREDICATE.
19513 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19515         * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
19516         byte-compile-lambda if it's actually a lambda.
19518         * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
19519         Fix function quoting.  Use backquote better.
19521 2011-05-22  Yuanle Song  <sylecn@gmail.com>
19523         * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
19524         matching (Bug#8516).
19526 2011-01-22  Jari Aalto  <jari.aalto@cante.net>
19528         * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
19529         different face (Bug#8178).
19531 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
19533         * vc/diff-mode.el (diff-changed): Don't use terminal specs for
19534         defface (Bug#8144).
19536 2011-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
19538         * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
19539         funcall as well (bug#8712).  Warn when performing those conversions.
19540         * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
19542         * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
19544 2011-05-22  Glenn Morris  <rgm@gnu.org>
19546         * files.el (hack-local-variables-prop-line): Small simplifications.
19547         (hack-local-variables, hack-local-variables-prop-line):
19548         If MODE-ONLY, return the mode, rather than just `t'.
19550 2011-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
19552         * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
19554 2011-05-21  Glenn Morris  <rgm@gnu.org>
19556         * files.el (hack-local-variables-prop-line, hack-local-variables):
19557         If only interested in the mode, don't bother doing the other stuff.
19559         * image-mode.el (image-after-revert-hook):
19560         Redraw all frames on which the image is visible.  (Bug#8567)
19562         * dired-aux.el (dired-touch-initial): Just use current-time.  (Bug#6887)
19564         * wid-edit.el (widget-checklist-match-inline):
19565         Fix 2011-04-19 change.  (Bug#8649)
19567 2011-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19569         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
19570         Also allow singlespace after single-letter capitals followed by a dot.
19572         * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
19573         enabled.  Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
19575 2011-05-20  Nix  <nix@esperi.org.uk>
19577         * files.el (basic-save-buffer-2):
19578         Fix handling of break-hardlink-on-save with non-existent files.
19580 2011-05-19  Deniz Dogan  <deniz@dogan.se>
19582         * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
19583         (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
19585 2011-05-19  Glenn Morris  <rgm@gnu.org>
19587         * progmodes/f90.el (f90-type-def-re):
19588         Handle "type, bind(c)".  (Bug#8691)
19590         * emacs-lisp/autoload.el (batch-update-autoloads):
19591         Set autoload-excludes by parsing loadup.el rather than Makefiles.
19593 2011-05-18  Michael Albinus  <michael.albinus@gmx.de>
19595         * net/tramp.el (tramp-process-actions): Set "first-password-request"
19596         property for the correct connection in case of multihops.
19598 2011-05-18  Glenn Morris  <rgm@gnu.org>
19600         * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
19601         * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
19603         Rationalize calendar handling of day and month abbrev-arrays.
19604         * calendar/calendar.el (calendar-customized-p): New function.
19605         (calendar-abbrev-construct, calendar-make-alist): Change what it does.
19606         (calendar-day-name-array, calendar-month-name-array): Doc fix.
19607         Add :set function.
19608         (calendar-abbrev-length, calendar-day-abbrev-array)
19609         (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
19610         (calendar-day-abbrev-array, calendar-month-abbrev-array):
19611         Elements may no longer be nil.
19612         (calendar-day-name, calendar-month-name):
19613         Update for changed nature of abbrev arrays.
19614         * calendar/diary-lib.el (diary-name-pattern):
19615         Update for changed nature of abbrev arrays.
19616         (diary-mark-entries-1): Update calendar-make-alist calls.
19617         (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
19618         * calendar/cal-html.el (cal-html-day-abbrev-array):
19619         Simply inherit from calendar-day-abbrev-array.
19621 2011-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
19623         * progmodes/grep.el (grep-mode): Disable default
19624         compilation-directory-matcher setting (bug#8684).
19626 2011-05-17  Michael Albinus  <michael.albinus@gmx.de>
19628         * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
19629         instead of "head" and "tail".  There were problems with SunOS 5.9,
19630         and it performs better.
19632 2011-05-17  Glenn Morris  <rgm@gnu.org>
19634         * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
19636         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
19637         Replace obsolete function.
19639         * shell.el (pcomplete-parse-arguments-function): Declare.
19641         * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
19642         (appt-display-diary, appt-display-interval, appt-prev-comp-time)
19643         (appt-check): Doc fixes.
19644         (appt-disp-window-function, appt-delete-window-function):
19645         Remove needless special case in custom :type.
19646         (appt-display-count): Default to 0, not nil.
19647         (appt-check): Reset appt-display-count to 0, not nil.
19649 2011-05-17  Juanma Barranquero  <lekktu@gmail.com>
19651         * progmodes/python.el (python-font-lock-keywords):
19652         Add the Python 3.X keyword "nonlocal" (bug#8639).
19654 2011-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
19656         * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
19658 2011-05-16  Kevin Ryde  <user42@zip.com.au>
19660         * info-look.el (makefile-automake-mode): New setups, looking in
19661         automake manual, then makefile-mode.
19662         (makefile-mode): Remove automake manual, have it just in
19663         makefile-automake-mode since there's various things different or
19664         not relevant to plain make.
19665         (makefile-mode): Remove "other-modes" non-existent automake-mode,
19666         believe a hypothetical automake-mode would go to makefile-mode,
19667         not the other way around.
19669 2011-05-15  Chong Yidong  <cyd@stupidchicken.com>
19671         * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
19672         hunk-end tags (Bug#8672).
19674         * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
19675         vc-annotate-show-diff-revision-at-line (Bug#8671).
19677 2011-05-14  Glenn Morris  <rgm@gnu.org>
19679         * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
19680         in the middle of an existing one with multiple authors.  (Bug#8645)
19681         (change-log-font-lock-keywords): Also handle multiple author lines
19682         with leading tabs.  (Bug#8644)
19684         * calendar/appt.el (appt-check): Rename some local variables.
19685         Some simplification/reordering.
19687         * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
19688         (feedmail-sendmail-f-doesnt-sell-me-out)
19689         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19690         (feedmail-debug-sit-for, feedmail-queue-express-hook)
19691         (feedmail-queue-runner-message-sender): Set :version.
19692         (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
19693         (bbdb-dwim-net-address, vm-mail): Declare.
19694         (feedmail-binmail-gnulinuxish-template):
19695         Rename from feedmail-binmail-linuxish-template.
19696         (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
19697         Use insert-buffer-substring.
19699 2011-05-14  Bill Carpenter  <bill@carpenter.org>
19701         * mail/feedmail.el (feedmail-patch-level): Increase.
19702         (feedmail-debug): New custom group.
19703         (feedmail-confirm-outgoing-timeout)
19704         (feedmail-sendmail-f-doesnt-sell-me-out)
19705         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19706         (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
19707         (feedmail-sender-line, feedmail-from-line)
19708         (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
19709         (feedmail-spray-this-address)
19710         (feedmail-spray-address-fiddle-plex-list)
19711         (feedmail-queue-use-send-time-for-date)
19712         (feedmail-queue-use-send-time-for-message-id)
19713         (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
19714         (feedmail-buffer-eating-function):
19715         Doc fixes.
19716         (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
19717         (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
19718         (feedmail-message-action-scroll-down): New functions.
19719         (feedmail-queue-directory, feedmail-queue-draft-directory):
19720         Use expand-file-name.
19721         (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
19722         Remove C-v help entry.
19723         (feedmail-queue-buffer-file-name): New variable.
19724         (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
19725         (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
19726         (feedmail-message-action-send-strong, feedmail-message-action-edit)
19727         (feedmail-message-action-draft, feedmail-message-action-draft-strong)
19728         (feedmail-message-action-queue, feedmail-message-action-queue-strong)
19729         (feedmail-message-action-toggle-spray)
19730         (feedmail-run-the-queue-no-prompts)
19731         (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
19732         (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
19733         (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
19734         (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
19735         (feedmail-envelope-deducer, feedmail-fiddle-from)
19736         (feedmail-fiddle-sender, feedmail-default-date-generator)
19737         (feedmail-fiddle-date, feedmail-fiddle-message-id)
19738         (feedmail-fiddle-spray-address)
19739         (feedmail-fiddle-list-of-spray-fiddle-plexes)
19740         (feedmail-fiddle-list-of-fiddle-plexes)
19741         (feedmail-fill-to-cc-function, feedmail-fill-this-one)
19742         (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
19743         (feedmail-queue-runner-message-sender, feedmail-binmail-template):
19744         Change default.  Doc fix.
19745         (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
19746         (feedmail-binmail-linuxish-template): New constant.
19747         (feedmail-buffer-to-sendmail): Doc fix.  Add debug call.
19748         Respect feedmail-sendmail-f-doesnt-sell-me-out.
19749         (feedmail-send-it): Add debug call.
19750         Use feedmail-queue-buffer-file-name, and
19751         feedmail-send-it-immediately-wrapper.
19752         (feedmail-message-action-send): Add debug call.
19753         Use feedmail-send-it-immediately-wrapper.
19754         (feedmail-queue-express-to-queue): Add debug call.
19755         Run feedmail-queue-express-hook.
19756         (feedmail-message-action-help): Add debug call.  Use feedmail-p-h-b-n.
19757         (feedmail-message-action-help-blat):
19758         Rename from feedmail-queue-send-edit-prompt-help-first.
19759         (feedmail-run-the-queue): Add debug call.  Set buffer-file-type.
19760         Check line-endings.  Handle errors better.
19761         (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
19762         Doc fix.  Add debug call.
19763         (feedmail-queue-send-edit-prompt): Doc fix.  Add debug call.
19764         Use feedmail-queue-send-edit-prompt-inner.
19765         (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
19766         (feedmail-queue-send-edit-prompt-inner): New function, extracted
19767         from feedmail-queue-send-edit-prompt.
19768         (feedmail-queue-send-edit-prompt-help)
19769         (feedmail-queue-send-edit-prompt-help-later): Remove functions.
19770         (feedmail-tidy-up-slug): Add debug call.
19771         Respect feedmail-queue-slug-suspect-regexp.
19772         (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
19773         (feedmail-dump-message-to-queue): Add debug call.
19774         Expand queue-directory.
19775         (feedmail-dump-message-to-queue): Change message slightly.
19776         Use feedmail-say-chatter.
19777         (feedmail-rfc822-date): Add debug call.  Bind system-time-locale.
19778         (feedmail-send-it-immediately-wrapper): New function.
19779         (feedmail-send-it-immediately): Add debug calls.  Use let not let*.
19780         Insert empty string rather than newline.  Handle full-frame case.
19781         Use catch/throw.  Use feedmail-say-chatter.
19782         (feedmail-fiddle-from): Try mail-host-address.
19783         (feedmail-default-message-id-generator): Doc fix.
19784         Bind system-time-locale.  Handle missing end.
19785         (feedmail-fiddle-x-mailer): Add debug call.
19786         Handle feedmail-x-mailer-line being nil.
19787         (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
19788         Add debug call.  Use buffer-substring-no-properties.
19789         (feedmail-say-debug, feedmail-say-chatter): New functions.
19790         (feedmail-find-eoh): Give an explicit error.
19792 2011-05-13  Ulf Jasper  <ulf.jasper@web.de>
19794         * net/newst-treeview.el (newsticker-treeview-face): Change default
19795         family from helvetica to sans.
19796         (newsticker-treeview-tool-bar-map): Move tool-bar icons to
19797         etc/images/newsticker.
19799         * net/newst-reader.el (newsticker-feed-face): Change default
19800         family from helvetica to sans.
19802         * net/newst-plainview.el (newsticker-new-item-face)
19803         (newsticker-old-item-face, newsticker-immortal-item-face)
19804         (newsticker-obsolete-item-face, newsticker-date-face)
19805         (newsticker-statistics-face): Change default family from
19806         helvetica to sans.
19807         (newsticker--plainview-tool-bar-map): Move tool-bar icons to
19808         etc/images/newsticker.
19810         * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
19811         (newsticker--process-auto-mark-filter-match): Tell user about
19812         auto-marking.
19814 2011-05-13  Didier Verna  <didier@xemacs.org>
19816         Common Lisp indentation improvements on defmethod and lambda-lists.
19817         * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
19818         TODO entries.
19819         (lisp-lambda-list-keyword-parameter-indentation)
19820         (lisp-lambda-list-keyword-parameter-alignment)
19821         (lisp-lambda-list-keyword-alignment): New customizable user options.
19822         (lisp-indent-defun-method): Improve docstring.
19823         (extended-loop-p): Fix comment.
19824         (lisp-indent-lambda-list-keywords-regexp): New variable.
19825         (lisp-indent-lambda-list): New function.
19826         (lisp-indent-259): Use it.
19827         (lisp-indent-defmethod): Support for more than one
19828         method qualifier and properly indent methods lambda-lists.
19829         (defgeneric): Provide a missing common-lisp-indent-function property.
19831 2011-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
19833         * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
19834         bounds for the empty string (bug#8667).
19836 2011-05-13  Glenn Morris  <rgm@gnu.org>
19838         * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
19840         * mail/sendmail.el (sendmail-program): Try executable-find first.
19841         (sendmail-send-it): `sendmail-program' cannot be unbound.
19843         * calendar/appt.el (appt-make-list): Simplify.
19844         (appt-time-msg-list): Doc fix.
19845         (appt-check): Change mode-line message at the time of the appointment.
19847 2011-05-12  Andreas Schwab  <schwab@linux-m68k.org>
19849         * progmodes/ld-script.el (ld-script-keywords)
19850         (ld-script-builtins): Update keywords list.
19852 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19854         * progmodes/grep.el (grep-filter): Don't trip on partial lines.
19856         * shell.el (shell-completion-vars): New function.
19857         (shell-mode):
19858         * simple.el (read-shell-command): Use it.
19859         (blink-matching-open): No need for " [...]" in minibuffer-message.
19861 2011-05-12  Glenn Morris  <rgm@gnu.org>
19863         * calendar/appt.el (appt-now-displayed): Remove pointless variable.
19864         (appt-check): Simplify.
19866 2011-05-12  Eli Zaretskii  <eliz@gnu.org>
19868         * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
19869         literal "/dev/null".
19871 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19873         * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
19874         Fix typo.
19876 2011-05-12  Ralph Schleicher  <rs@ralph-schleicher.de>
19878         * progmodes/which-func.el (which-function):
19879         Use add-log-current-defun instead of add-log-current-defun-function,
19880         which might not be defined (Bug#8260).
19882 2011-05-12  Glenn Morris  <rgm@gnu.org>
19884         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
19885         Let byte-compile-initial-macro-environment always take precedence.
19887 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19889         * net/rcirc.el: Add support for SSL/TLS connections.
19890         (rcirc-server-alist): New field `encryption'.
19891         (rcirc): Check `encryption' settings.
19892         (rcirc-connect): New arg `encryption'.  Use open-network-stream.
19893         Merge make-local-variable into `set'.
19894         (rcirc--connection-open-p): New function.
19895         (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
19896         the process is not a network process (e.g. running gnutls-cli).
19897         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
19898         Make rcirc-(en|de)code-coding-system local here.
19899         (rcirc-mode): Merge make-local-variable into `set'.
19900         (rcirc-parent-buffer): Make permanent buffer-local.
19901         (rcirc-multiline-minor-mode): Don't do it here.
19902         (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
19903         there's no server buffer.
19905 2011-05-11  Glenn Morris  <rgm@gnu.org>
19907         * newcomment.el (comment-kill): Prefix "unused" local.
19909         * term/w32console.el (get-screen-color): Declare.
19911         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
19912         Handle symbol elements of byte-compile-initial-macro-environment.
19914 2011-05-10  Leo Liu  <sdl.web@gmail.com>
19916         * bookmark.el (bookmark-bmenu-mode-map):
19917         Bind bookmark-bmenu-search to `/'.
19919         * mail/footnote.el: Convert to utf-8 encoding.
19920         (footnote-unicode-string, footnote-unicode-regexp): New variable.
19921         (Footnote-unicode): New function.
19922         (footnote-style-alist): Add unicode style to the list.
19923         (footnote-style): Doc fix.
19925 2011-05-10  Jim Meyering  <meyering@redhat.com>
19927         Fix doubled-word typos.
19928         * international/quail.el (quail-insert-kbd-layout): and and -> and
19929         * kermit.el: and and -> and
19930         * net/ldap.el (ldap-search-internal): to to -> to
19931         * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
19932         * progmodes/js.el (js-mode): and and -> and
19933         * textmodes/artist.el (artist-move-to-xy): at at -> at
19934         (artist-draw-region-trim-line-endings): if if -> if
19935         And Safetyc -> Safety.
19936         * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
19938 2011-05-10  Glenn Morris  <rgm@gnu.org>
19939             Stefan Monnier  <monnier@iro.umontreal.ca>
19941         * files.el (hack-one-local-variable-eval-safep):
19942         Consider "eval: (foo-mode)" to be safe.  (Bug#8613)
19944 2011-05-10  Glenn Morris  <rgm@gnu.org>
19946         * calendar/diary-lib.el (diary-list-entries-hook)
19947         (diary-mark-entries-hook, diary-nongregorian-listing-hook)
19948         (diary-nongregorian-marking-hook, diary-list-entries)
19949         (diary-include-other-diary-files, diary-mark-entries)
19950         (diary-mark-included-diary-files): Doc fixes.
19952 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
19954         * misc.el: Require tabulated-list.el during compilation.
19956 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
19958         * progmodes/compile.el (compilation-start):
19959         Run compilation-filter-hook for the async case too.
19960         (compilation-filter-hook): Doc fix.
19962 2011-05-09  Deniz Dogan  <deniz@dogan.se>
19964         * wdired.el: Remove outdated installation comment.  Fix usage
19965         comment.
19967 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
19969         * misc.el: Implement new command `list-dynamic-libraries'.
19970         (list-dynamic-libraries--loaded-only-p): New variable.
19971         (list-dynamic-libraries--refresh): New function.
19972         (list-dynamic-libraries): New command.
19974 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
19976         * progmodes/compile.el (compilation-error-regexp-alist-alist):
19977         Fix the ant regexp to handle end-line and end-column info from jikes.
19978         Re-introduce maven regexp.  Give the ruby-Test::Unit regexp a
19979         higher priority to avoid clobbering by gnu.
19981 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
19983         * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
19984         if the face has existing theme settings (Bug#8454).
19986 2011-05-08  Ralph Schleicher  <rs@ralph-schleicher.de>
19988         * progmodes/perl-mode.el (perl-imenu-generic-expression):
19989         Only match variables declared via `my' or `our' (Bug#8261).
19991         * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
19992         special file names `.' and `..' (Bug#8259).
19994 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
19996         * progmodes/grep.el (grep-mode-font-lock-keywords):
19997         Remove buffer-changing entries.
19998         (grep-filter): New function.
19999         (grep-mode): Add it to compilation-filter-hook.
20001         * progmodes/compile.el (compilation-filter-hook)
20002         (compilation-filter-start): New defvars.
20003         (compilation-filter): Call compilation-filter-hook prior to
20004         updating the process mark.
20006 2011-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20008         * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
20010 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
20012         * mail/sendmail.el (send-mail-function): On MS-Windows, default to
20013         mailclient-send-it even if window-system is nil.  (Bug#8595)
20015         * term/w32console.el (terminal-init-w32console):
20016         Call get-screen-color and use its output to set the frame
20017         background-mode.  (Bug#8597)
20019 2011-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
20021         Make bytecomp.el understand that defmethod defines funs (bug#8631).
20022         * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
20023         New functions.
20024         (defgeneric, eieio--defmethod): Use them.
20025         (eieio-defgeneric): Remove.
20026         (defmethod): Call defgeneric in a way visible to the byte-compiler.
20028 2011-05-07  Glenn Morris  <rgm@gnu.org>
20030         * calendar/timeclock.el (timeclock-log-data): Remove unused local.
20031         Use let rather than let*.
20032         (timeclock-find-discrep): Remove unused local.
20034         * calendar/diary-lib.el (diary-comment-start): Doc fix.
20036         * calendar/appt.el (appt-time-msg-list): Doc fix.
20038 2011-05-06  Noah Friedman  <friedman@splode.com>
20040         * apropos.el (apropos-print-doc): Only use
20041         emacs-lisp-docstring-fill-column when it is bound to an integer,
20042         per that variable's documentation.
20044 2011-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
20046         * lpr.el (print-region-1): Echo lpr-program's output, so error messages
20047         and warnings are not silently discarded (e.g. use -d instead of -P).
20049 2011-05-06  Glenn Morris  <rgm@gnu.org>
20051         * calendar/appt.el (appt-message-warning-time): Doc fix.
20052         (appt-warning-time-regexp): New option.
20053         (appt-make-list): Respect appt-message-warning-time.
20055         * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
20056         New options.
20057         (diary-add-to-list): Strip comments from the displayed string.
20058         (diary-mode): Set comment-start and comment-end.
20060         * vc/diff-mode.el (smerge-refine-subst): Declare.
20061         (diff-refine-hunk): Don't require smerge-mode when compiling.
20063 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
20065         * simple.el (list-processes): Return nil as the docstring says.
20067 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
20069         * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
20070         to "".
20071         (ange-ftp-write-region, ange-ftp-insert-file-contents)
20072         (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
20073         determining of binary transfer.  (Bug#7383)
20075 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
20077         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
20078         Fix port computation bug.  (Bug#8618)
20080 2011-05-05  Glenn Morris  <rgm@gnu.org>
20082         * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
20084         * simple.el (shell-dynamic-complete-functions)
20085         (comint-dynamic-complete-functions): Declare.
20087         * net/network-stream.el (gnutls-negotiate):
20088         * simple.el (tabulated-list-print): Fix declarations.
20090         * progmodes/gud.el (syntax-symbol, syntax-point):
20091         Remove unnecessary and incorrect declarations.
20093         * emacs-lisp/check-declare.el (check-declare-scan):
20094         Handle byte-compile-initial-macro-environment in bytecomp.el.
20096 2011-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20098         Fix earlier half-done eieio-defmethod change (bug#8338).
20099         * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
20100         Streamline and change calling convention.
20101         (defmethod): Adjust accordingly and simplify.
20102         (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
20103         new eieio--defmethod.
20104         (slot-boundp): Minor CSE simplification.
20106 2011-05-05  Milan Zamazal  <pdm@zamazal.org>
20108         * progmodes/glasses.el (glasses-separate-capital-groups): New option.
20109         (glasses-make-readable): Use glasses-separate-capital-groups.
20111 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
20113         * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
20114         (warning-series): Doc fix.
20115         (display-warning): Don't try to create the buffer if we just found it.
20117 2011-05-04  Chong Yidong  <cyd@stupidchicken.com>
20119         * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
20120         (autoload-find-generated-file): New function.
20121         (generate-file-autoloads): Bind generated-autoload-file to
20122         buffer-file-name.
20123         (update-file-autoloads, update-directory-autoloads):
20124         Use autoload-find-generated-file.  If called interactively, prompt for
20125         output file (Bug#7989).
20126         (batch-update-autoloads): Doc fix.
20128 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
20130         * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
20132 2011-05-04  Glenn Morris  <rgm@gnu.org>
20134         * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
20135         function, so it follows changes in calendar-date-style.
20136         (diary-fancy-date-matcher): New function.
20137         (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
20138         (diary-fancy-font-lock-fontify-region-function):
20139         Use diary-fancy-date-pattern as a function.
20141         * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
20142         non-numbers for `year' etc pseudo-variables.  (Bug#8583)
20144 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
20146         * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
20147         instead of positional arguments.  Allow :keylist and :crlfiles
20148         arguments.
20149         (open-gnutls-stream): Call it.
20151         * net/network-stream.el (network-stream-open-starttls): Adjust to
20152         call `gnutls-negotiate' with :process and :hostname arguments.
20154 2011-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
20156         * minibuffer.el (completion--message): New function.
20157         (completion--do-completion, minibuffer-complete)
20158         (minibuffer-force-complete, minibuffer-complete-word): Use it.
20159         (completion--do-completion): Don't ignore completion-auto-help when in
20160         icomplete-mode.
20162         * whitespace.el (whitespace-trailing-regexp): Don't rely on the
20163         internal encoding (e.g. tibetan zero is not whitespace).
20164         (global-whitespace-mode): Prefer save-current-buffer.
20165         (whitespace-trailing-regexp): Remove useless save-match-data.
20166         (whitespace-empty-at-bob-regexp): Minor simplification.
20168 2011-05-03  Chong Yidong  <cyd@stupidchicken.com>
20170         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
20172 2011-05-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
20174         * textmodes/ispell.el (ispell-add-per-file-word-list):
20175         Use `concat' to create string for insertion.
20177 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20179         * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
20180         Avoid open-line which runs post-self-insert-hook.
20181         (bibtex-fill-entry): Remove unused `end' var.
20183 2011-05-03  Dirk Ullrich  <dirk.ullrich@googlemail.com>  (tiny change)
20185         * textmodes/ispell.el (ispell-add-per-file-word-list):
20186         Protect against `nil' value of `comment-start' (Bug#8579).
20188 2011-05-03  Leo Liu  <sdl.web@gmail.com>
20190         * isearch.el (isearch-yank-pop): New command.
20191         (isearch-mode-map): Bind it to `M-y'.
20192         (isearch-forward): Mention it.
20194 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20196         * simple.el (minibuffer-complete-shell-command): Remove.
20197         (minibuffer-local-shell-command-map): Use completion-at-point.
20198         (read-shell-command): Setup completion vars here instead.
20199         (read-expression-map): Bind TAB to symbol completion.
20201         * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
20202         error directly rather via storing it into `results'.
20204 2011-05-02  Leo Liu  <sdl.web@gmail.com>
20206         * vc/diff.el: Fix description.
20208 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20210         * server.el (server-eval-at): New function.
20212 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20214         * net/network-stream.el (open-network-stream): Take a :nowait
20215         parameter and pass it on to `make-network-process'.
20216         (network-stream-open-plain): Ditto.
20218 2011-04-30  Andreas Schwab  <schwab@linux-m68k.org>
20220         * faces.el (face-spec-set-match-display): Don't match toolkit
20221         options on terminal frames.
20223 2011-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
20225         * progmodes/pascal.el: Use lexical binding.
20226         (pascal-mode-map): Remove author preferences.
20228         * pcomplete.el (pcomplete-std-complete): Don't abuse
20229         completion-at-point.
20231 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
20233         * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
20234         removing code that has been dead since 1991 or so.
20236         * startup.el (command-line): When warning about "_emacs", use a
20237         delayed warning to allow the user to filter it out.
20239 2011-04-28  Deniz Dogan  <deniz@dogan.se>
20241         * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
20242         user has not joined.
20244 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
20246         * pcomplete.el (pcomplete-completions-at-point): Return nil if there
20247         aren't any completions at point.
20249 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
20251         * subr.el (display-delayed-warnings): New function.
20252         (delayed-warnings-hook): New variable.
20254 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
20256         * minibuffer.el (completion-at-point, completion-help-at-point):
20257         Don't presume that a given completion-at-point-function will always
20258         use the same calling convention.
20260         * pcomplete.el (pcomplete-completions-at-point):
20261         Obey pcomplete-ignore-case.  Don't call pcomplete-norm-func unless
20262         pcomplete-seen is non-nil.
20263         (pcomplete-comint-setup): Also recognize the new comint/shell
20264         completion functions.
20265         (pcomplete-do-complete): Don't call pcomplete-norm-func unless
20266         pcomplete-seen is non-nil.
20268 2011-04-27  Niels Giesen  <niels.giesen@gmail.com>
20270         * calendar/icalendar.el (diary-lib): Add require statement.
20271         (icalendar--create-uid): Read out a uid from a text-property on
20272         the first character in the entry.  This allows for code to add its
20273         own uid to the entry.
20274         (icalendar--convert-float-to-ical): Add export of
20275         `diary-float'-entries save for those with the optional DAY
20276         argument.
20278 2011-04-27  Daniel Colascione  <dan.colascione@gmail.com>
20280         * subr.el (shell-quote-argument): Use alternate escaping strategy
20281         when we spot a variable reference in a string.
20283 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
20285         * cus-start.el (all): Define customization for debug-on-event.
20287 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
20289         * subr.el (shell-quote-argument): Escape correctly under Windows.
20291 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
20293         * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
20295 2011-04-25  Michael Albinus  <michael.albinus@gmx.de>
20297         * net/tramp.el (tramp-process-actions): Add POS argument.
20298         Delete region between POS and (pos).
20300         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
20301         Use `nil' position in `tramp-process-actions' call.
20302         (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
20304         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
20305         position in `tramp-process-actions' call.
20307         * net/trampver.el: Update release number.
20309 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
20311         * custom.el (defcustom): Obey lexical-binding.
20313         Fix octave-inf completion problems reported by Alexander Klimov.
20314         * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
20315         Inherit from octave-mode-syntax-table.
20316         (inferior-octave-mode): Set info-lookup-mode.
20317         (inferior-octave-completion-at-point): New function.
20318         (inferior-octave-complete): Use it and completion-in-region.
20319         (inferior-octave-dynamic-complete-functions): Use it as well, and use
20320         comint-filename-completion.
20321         * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
20322         symbol elements which shouldn't be word elements.
20323         (octave-font-lock-keywords, octave-beginning-of-defun)
20324         (octave-function-header-regexp): Adjust regexps accordingly.
20325         (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
20327 2011-04-25  Juanma Barranquero  <lekktu@gmail.com>
20329         * net/gnutls.el (gnutls-errorp): Declare before first use.
20331 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
20333         * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
20334         verify-error, and verify-hostname-error parameters.  Check whether
20335         default trustfile exists before going to use it.  Add missing
20336         argument to gnutls-message-maybe call.  Return value.
20337         Reported by Claudio Bley <claudio.bley@gmail.com>.
20338         (open-gnutls-stream): Add usage example.
20340         * net/network-stream.el (network-stream-open-starttls): Give host
20341         parameter to `gnutls-negotiate'.
20342         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
20343         * subr.el (shell-quote-argument): Escape correctly under Windows.
20345 2011-04-24  Daniel Colascione  <dan.colascione@gmail.com>
20347         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
20348         Use correct match group (bug#8438).
20350 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
20352         * emacs-lisp/package.el (package-built-in-p): Fix typo.
20353         (package-menu--generate): New arg specifying packages to show.
20354         (package-menu-refresh, package-menu-execute, list-packages):
20355         Callers changed.
20356         (package-show-package-list): New function, replacing deleted
20357         package--list-packages (renamed because it is non-internal).
20359         * finder.el (finder-list-matches): Use package-show-package-list
20360         instead of deleted package--list-packages.
20362         * vc/vc-annotate.el (vc-annotate-goto-line): New command.
20363         Based on a previous implementation by Juanma Barranquero (Bug#8366).
20364         (vc-annotate-mode-map): Bind it to RET.
20366 2011-04-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
20368         * progmodes/etags.el (next-file): Don't use set-buffer to change
20369         buffers (Bug#8478).
20371 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
20373         * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
20375         * apropos.el (apropos-label-face): Avoid variable-pitch face.
20376         (apropos-accumulator): Doc fix.
20377         (apropos-function, apropos-macro, apropos-command)
20378         (apropos-variable, apropos-face, apropos-group, apropos-widget)
20379         (apropos-plist): Add face property.
20380         (apropos-symbols-internal): Fix indentation.
20381         (apropos-print): Simplify help, and recognize apropos-multi-type.
20382         (apropos-print-doc): Use button-type-get to extract the button's
20383         face property.  Fill docstring (Bug#8352).
20385 2011-04-23  Juanma Barranquero  <lekktu@gmail.com>
20387         * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
20389         * play/mpuz.el (mpuz-silent): Doc fix.
20390         (mpuz-mode-map): Use mapc.
20391         (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
20392         (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
20393         Fix typos in docstrings.
20395         * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
20396         (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
20398         * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
20400 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
20402         * minibuffer.el (completion--do-completion): Avoid the "Next char
20403         not unique" prompt if icomplete-mode is enabled (Bug#5849).
20405         * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
20406         mouse-2 into unread-command-events, it is interpreted correctly.
20408         * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
20409         (image-toggle-display): Doc fix.
20411 2011-04-23  Stephen Berman  <stephen.berman@gmx.net>
20413         * textmodes/page.el (what-page): Use line-number-at-pos to
20414         calculate line number (Bug#6825).
20416 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
20418         * eshell/esh-mode.el (find-tag-interactive): Declare function.
20419         (eshell-find-tag): Remove `with-no-warnings', unneeded now.
20420         Pass argument NO-DEFAULT to `find-tag-interactive'.
20422 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
20424         Lexical-binding cleanup.
20426         * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
20427         (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
20428         * progmodes/ada-prj.el (ada-prj-initialize-values)
20429         (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
20430         (ada-prj-show-value):
20431         * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
20432         * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
20433         (antlr-invalidate-context-cache, antlr-options-menu-filter)
20434         (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
20435         * progmodes/bug-reference.el (bug-reference-push-button):
20436         * progmodes/fortran.el (fortran-line-length):
20437         * progmodes/glasses.el (glasses-change):
20438         * progmodes/octave-mod.el (octave-fill-paragraph):
20439         * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
20440         (python-pdbtrack-grub-for-buffer, python-sentinel):
20441         * progmodes/sql.el (sql-save-connection):
20442         * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
20443         * progmodes/xscheme.el (xscheme-enter-debugger-mode):
20444         Mark unused parameters.
20446         * progmodes/compile.el (compilation--flush-directory-cache)
20447         (compilation--flush-parse, compile-internal): Mark unused parameters.
20448         (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
20449         (compilation-next-error-function): Remove unused variable `timestamp'.
20451         * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
20452         (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
20454         * progmodes/dcl-mode.el (dcl-end-of-command):
20455         Remove unused variable `start'.
20456         (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
20457         (dcl-option-value-basic, dcl-option-value-offset)
20458         (dcl-option-value-margin-offset, dcl-option-value-comment-line):
20459         Mark unused parameters.
20460         (dcl-save-local-variable): Remove unused variable `val'.
20461         (mode): Declare.
20463         * progmodes/delphi.el (delphi-save-state, delphi-after-change):
20464         Mark unused parameters.
20465         (delphi-ignore-changes): Move before first use.
20466         (delphi-charset-token-at): Remove unused variable `start'.
20467         (delphi-else-start): Remove unused variable `if-count'.
20468         (delphi-comment-block-start, delphi-comment-block-end):
20469         Remove unused variable `kind'.
20470         (delphi-indent-line): Remove unused variable `new-point'.
20472         * progmodes/ebrowse.el (ebrowse-files-list)
20473         (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
20474         Mark unused parameters.  Don't quote `lambda'.
20475         (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
20476         Don't quote `lambda'.
20477         (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
20478         (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
20479         (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
20480         (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
20481         Use `ignore-errors'.
20482         (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
20483         (ebrowse-view/find-file-and-search-pattern)
20484         (ebrowse-view/find-member-declaration/definition):
20485         Rename parameter TAGS-FILE-NAME to TAGS-FILE.
20486         (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
20487         Rename parameter PREFIX-ARG to PREFIX.
20488         (ebrowse-tags-read-name): Remove unused variables `start' and
20489         `member-info'.
20490         (ebrowse-display-member-buffer): Rename variable `tags-file-name'
20491         to `tags-file'.
20493         * progmodes/etags.el (local-find-tag-hook): Declare.
20494         (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
20495         Mark unused parameters.
20497         * progmodes/executable.el (compilation-error-regexp-alist): Declare.
20498         (executable-interpret): Mark unused parameter.
20500         * progmodes/flymake.el (flymake-process-sentinel)
20501         (flymake-after-change-function)
20502         (flymake-create-temp-with-folder-structure)
20503         (flymake-get-include-dirs-dot): Mark unused parameters.
20504         (flymake-safe-delete-directory): Remove unused variable `err'.
20506         * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
20507         (speedbar-timer-fn, speedbar-line-text)
20508         (speedbar-change-expand-button-char, speedbar-delete-subblock)
20509         (speedbar-center-buffer-smartly): Declare functions.
20510         (gdb-find-watch-expression): Remove unused variable `array'.
20511         (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
20512         (gdb-starting): Mark unused parameters.
20513         (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
20514         (gdb-table-string): Remove unused variable `res'.
20515         (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
20516         (gdb-disassembly-handler-custom): Remove unused variable `pos'.
20517         (gdb-display-buffer): Remove unused variable `cur-size'.
20519         * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
20520         allow lexical-binding compilation.
20521         (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
20522         (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
20523         (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
20524         Mark unused parameters.
20525         (gud-gdb-marker-filter): Remove unused variable `match'.
20526         (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
20527         lambda expressions and funcall them, instead of using `fset'.
20529         * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
20530         HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
20532         * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
20533         variable `header-beg'; use `let'.
20535         * progmodes/icon.el (indent-icon-exp): Remove unused variables
20536         `restart', `last-sexp' and `at-do'.
20538         * progmodes/js.el (js--debug): Mark unused parameter.
20539         (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
20540         (js--splice-into-items): Remove unused variable `item'.
20541         (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
20543         * progmodes/make-mode.el (makefile-make-font-lock-keywords):
20544         Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
20545         (makefile-complete): Remove unused variable `try'.
20546         (makefile-fill-paragraph, makefile-match-function-end):
20547         Mark unused parameters.
20549         * progmodes/octave-inf.el (inferior-octave-complete):
20550         Remove unused variable `proc'.
20551         (inferior-octave-output-digest): Mark unused parameter.
20553         * progmodes/perl-mode.el (perl-calculate-indent):
20554         Remove unused variable `err'.
20556         * progmodes/prolog.el (prolog-mode-keybindings-inferior)
20557         (prolog-indent-line): Mark unused parameters.
20558         (prolog-indent-line): Remove unused variable `beg'.
20560         * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
20561         (reporter-dont-compact-list): Declare.
20563         * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
20564         Remove unused variable `char'.
20565         (sh-debug): Mark unused parameter.
20566         (sh-get-indent-info): Remove unused variable `start'.
20567         (sh-calculate-indent): Remove unused variable `var'.
20569         * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
20570         (simula-electric-keyword): Remove unused variable `null'.
20571         (simula-search-backward, simula-search-forward): Remove unused
20572         variables `begin' and `end'.
20574         * progmodes/vera-mode.el (vera-guess-basic-syntax):
20575         Remove unused variable `pos'.
20576         (vera-electric-tab, vera-comment-uncomment-region):
20577         Mark unused parameters.
20578         (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
20580 2011-04-22  Chong Yidong  <cyd@stupidchicken.com>
20582         * emacs-lisp/package.el (package--builtins, package-alist)
20583         (package-load-descriptor, package-built-in-p, package-activate)
20584         (define-package, package-installed-p)
20585         (package-compute-transaction, package-buffer-info)
20586         (package--push): Doc fix.  Distinguish more clearly between
20587         version strings and version lists.
20589 2011-04-21  Juanma Barranquero  <lekktu@gmail.com>
20591         Lexical-binding cleanup.
20593         * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
20594         (5x5-make-mutate-best):
20595         * play/fortune.el (fortune-in-buffer):
20596         * play/gomoku.el (gomoku-init-display):
20597         * play/solitaire.el (solitaire, solitaire-do-check):
20598         * play/tetris.el (tetris-default-update-speed-function):
20599         Mark unused parameters.
20601         * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
20602         (bubbles--shift): Remove unused variable `char-org'.
20603         (bubbles--set-faces): Remove unused variable `fg-col'.  Simplify.
20604         (bubbles--show-images): Remove unused variable `char'.
20606         * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
20607         (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
20608         (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
20609         (decipher-analyze-buffer): Use ?\s.
20610         (decipher-make-checkpoint): Remove unused variable `mapping'.
20612         * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
20614         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
20615         Remove unused variable `result'; use `let'.
20617         * play/gametree.el (gametree-current-layout, gametree-apply-layout):
20618         Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
20619         (gametree-children-shown-p, gametree-compute-reduced-score):
20620         Use `ignore-errors'.
20622         * play/handwrite.el (ps-lpr-switches): Declare.
20623         (handwrite): Remove unused variables `pmin' and `lastp'.
20625         * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
20627         * play/landmark.el (landmark-init-display)
20628         (landmark-update-naught-weights): Mark unused parameters.
20629         (landmark-y): Remove unused variable `noise'.  Simplify.
20630         (landmark-human-plays): Remove unused variable `score'.
20632         * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
20633         (mpuz-try-proposal): Remove unused variable `game'.
20635         * play/zone.el (life-patterns): Declare.
20637 2011-04-20  Juanma Barranquero  <lekktu@gmail.com>
20639         * vc/vc.el (ediff-vc-internal): Declare function.
20641 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20643         * shell.el: Use lexical-binding and std completion UI.
20644         (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
20645         (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
20646         comint-preoutput-filter-functions rather than on
20647         comint-output-filter-functions.
20648         (shell-command-completion, shell--command-completion-data)
20649         (shell-filename-completion, shell-environment-variable-completion)
20650         (shell-c-a-p-replace-by-expanded-directory): New functions.
20651         (shell-dynamic-complete-functions, shell-dynamic-complete-command)
20652         (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
20653         (shell-dynamic-complete-environment-variable): Use them.
20654         (shell-dynamic-complete-as-environment-variable)
20655         (shell-dynamic-complete-as-command): Remove.
20656         (shell-match-partial-variable): Match past point.
20657         * comint.el: Clean up use of completion-at-point-functions.
20658         (comint-completion-at-point): New function.
20659         (comint-mode): Use it completion-at-point-functions.
20660         (comint-dynamic-complete): Make it obsolete.
20661         (comint-replace-by-expanded-history-before-point): Add dry-run arg.
20662         (comint-c-a-p-replace-by-expanded-history): New function.
20663         (comint-dynamic-complete-functions)
20664         (comint-replace-by-expanded-history): Use it.
20665         * minibuffer.el (completion-table-with-terminator): Allow dynamic
20666         termination strings.  Try harder to avoid second try-completion.
20667         (completion-in-region-mode-map): Disable bindings that don't work yet.
20669         * comint.el: Use lexical-binding.  Require CL.
20670         (comint-dynamic-complete-functions): Use comint-filename-completion.
20671         (comint-completion-addsuffix): Tweak custom type.
20672         (comint-filename-completion, comint--common-suffix)
20673         (comint--common-quoted-suffix, comint--table-subvert)
20674         (comint--complete-file-name-data): New functions.
20675         (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
20676         (comint-dynamic-list-filename-completions): Use them.
20677         (comint-dynamic-simple-complete): Make obsolete.
20679         * minibuffer.el (completion-in-region-mode):
20680         Keep completion-in-region-mode--predicate global.
20681         (completion-in-region--postch):
20682         Assume completion-in-region-mode--predicate is not null.
20684         * progmodes/flymake.el (flymake-start-syntax-check-process):
20685         Obey `dir'.  Simplify.
20687         * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
20688         we're in VC after all.
20690 2011-04-20  Christoph Scholtes  <cschol2112@googlemail.com>
20692         * vc/vc.el (vc-diff-build-argument-list-internal)
20693         (vc-version-ediff, vc-ediff): New commands.
20694         (vc-version-diff): Use vc-diff-build-argument-list-internal.
20696 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20698         * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
20699         add sanity check.
20701         * obsolete/erc-hecomplete.el: Make obsolete.
20702         * obsolete/: Standardize obsolescence info in the header.
20704 2011-04-20  Glenn Morris  <rgm@gnu.org>
20706         * calendar/solar.el (solar-horizontal-coordinates):
20707         Use the longitude argument rather than `calendar-longitude'.
20708         (solar-date-next-longitude): Remove unused locals.
20710 2011-04-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
20712         * whitespace.el: New version 13.2.1.
20714 2011-04-20  felix  <EmacsWiki>  (tiny change)
20716         * whitespace.el (global-whitespace-mode): Keep highlight when
20717         switching between major modes on a file.
20719 2011-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
20721         * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
20722         (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
20723         multi-line comments as well.
20725 2011-04-19  Juanma Barranquero  <lekktu@gmail.com>
20727         Lexical-binding cleanup.
20729         * arc-mode.el (archive-mode-revert):
20730         * cmuscheme.el (scheme-interactively-start-process):
20731         * custom.el (custom-initialize-delay):
20732         * dnd.el (dnd-open-local-file, dnd-open-remote-url):
20733         * dos-w32.el (direct-print-region-helper, direct-print-region-function):
20734         * emacs-lock.el (emacs-lock-clear-sentinel):
20735         * ezimage.el (defezimage):
20736         * follow.el (follow-avoid-tail-recenter):
20737         * fringe.el (set-fringe-mode-1):
20738         * generic-x.el (bat-generic-mode-compile):
20739         * help-mode.el (help-info-variable, help-do-xref)
20740         (help-mode-revert-buffer):
20741         * help.el (view-emacs-todo):
20742         * iswitchb.el (iswitchb-completion-help):
20743         * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
20744         * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
20745         (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
20746         * locate.el (locate-update):
20747         * longlines.el (longlines-encode-region)
20748         (longlines-after-change-function):
20749         * outline.el (outline-isearch-open-invisible):
20750         * ps-def.el (declare-function, charset-dimension, char-width)
20751         (encode-char):
20752         * ps-mule.el (ps-mule-plot-string):
20753         * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
20754         (recentf-edit-list-select, recentf-edit-list-validate)
20755         (recentf-open-files-action):
20756         * rect.el (delete-whitespace-rectangle-line)
20757         (rectangle-number-line-callback):
20758         * register.el (window-configuration-to-register)
20759         (frame-configuration-to-register):
20760         * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
20761         * select.el (xselect-convert-to-string, xselect-convert-to-length)
20762         (xselect-convert-to-targets, xselect-convert-to-delete)
20763         (xselect-convert-to-filename, xselect-convert-to-charpos)
20764         (xselect-convert-to-lineno, xselect-convert-to-colno)
20765         (xselect-convert-to-os, xselect-convert-to-host)
20766         (xselect-convert-to-user, xselect-convert-to-class)
20767         (xselect-convert-to-name, xselect-convert-to-integer)
20768         (xselect-convert-to-atom, xselect-convert-to-identity):
20769         * subr.el (declare, ignore, process-kill-without-query)
20770         (text-clone-maintain):
20771         * terminal.el (te-get-char, te-tic-sentinel):
20772         * tool-bar.el (tool-bar-make-keymap):
20773         * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
20774         * type-break.el (type-break-mode, type-break-noninteractive-query):
20775         * view.el (View-back-to-mark):
20776         * wid-browse.el (widget-browse-action, widget-browse-widget)
20777         (widget-browse-widgets, widget-browse-sexp):
20778         * widget.el (define-widget-keywords):
20779         * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
20780         Mark unused parameters.
20782         * align.el (align-adjust-col-for-rule): Mark unused parameter.
20783         (align-areas): Remove unused variable `look'.
20784         (align-region): Remove unused variables `real-end' and `pos-list'.
20786         * apropos.el (apropos-score-doc): Remove unused variable `i'.
20788         * bindings.el (mode-line-modified, mode-line-remote):
20789         Mark unused parameters.
20790         (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
20792         * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
20793         (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
20795         * comint.el (comint-history-isearch-pop-state)
20796         (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
20797         (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
20798         (comint-substitute-in-file-name): Doc fix.
20800         * completion.el (cmpl-statistics-block): Mark unused parameter.
20801         (add-completions-from-tags-table, add-completions-from-lisp-buffer)
20802         (save-completions-to-file, load-completions-from-file):
20803         Remove unused local variable `e'.
20805         * composite.el (compose-chars): Remove unused variable `len'.
20806         (lgstring-insert-glyph): Remove unused variable `g'.
20807         (compose-glyph-string): Remove unused variables `ascent',
20808         `descent', `lbearing' and `rbearing'.
20809         (compose-glyph-string-relative): Remove unused variables
20810         `lbearing', `rbearing' and `wadjust'.
20811         (compose-gstring-for-graphic): Remove unused variables `header',
20812         `wadjust', `xoff' and `yoff'.  Use `let', not `let*'.
20813         (compose-gstring-for-terminal): Remove unused variables `header'
20814         and `nchars'.  Use `let', not `let*'.
20816         * cus-edit.el (Custom-set, Custom-save, custom-reset)
20817         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
20818         (Custom-buffer-done, custom-buffer-create-internal)
20819         (custom-browse-visibility-action, custom-browse-group-tag-action)
20820         (custom-browse-variable-tag-action, custom-browse-face-tag-action)
20821         (widget-magic-mouse-down-action, custom-toggle-parent)
20822         (custom-add-parent-links, custom-toggle-hide-variable)
20823         (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
20824         (custom-toggle-hide-face, face, hook, custom-group-link-action)
20825         (custom-face-menu-create, custom-variable-menu-create, get)
20826         (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
20827         (custom-reset-standard-save-and-update): Remove unused variable `value'.
20828         (customize-apropos): Remove unused variable `tests'.
20829         (custom-group-value-create): Remove unused variable `hidden-p'.
20830         (sort-fold-case): Declare.
20832         * cus-theme.el (custom-reset-standard-faces-list)
20833         (custom-reset-standard-variables-list): Declare.
20834         (customize-create-theme, custom-theme-revert, custom-theme-write)
20835         (custom-theme-choose-mode, customize-themes, custom-theme-save):
20836         Mark unused parameters.
20838         * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
20840         * delim-col.el (delimit-columns-max): Move defvar before first use.
20842         * descr-text.el (describe-char-categories): Don't quote `lambda'.
20843         (describe-char): Don't quote `lambda'.  Mark unused parameter.
20845         * desktop.el (desktop-save-buffer-p): Mark unused parameter.
20846         (auto-insert): Declare.
20847         (desktop-restore-file-buffer): Rename desktop-* parameters;
20848         mark unused ones.
20849         (desktop-create-buffer): Rename desktop-* parameters and bind them.
20850         (desktop-buffer): Rename desktop-* parameters.
20852         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
20853         (dframe-reposition-frame-xemacs, dframe-help-echo)
20854         (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
20855         Mark unused parameters.
20857         * dired-aux.el (backup-extract-version-start, overwrite-query)
20858         (overwrite-backup-query, rename-regexp-query)
20859         (rename-non-directory-query): Declare.
20860         (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
20861         (dired-add-entry): Remove unused variable `orig-file-name'.
20862         (dired-copy-file-recursive): Remove unused variable `dirfailed'.
20863         Use parameter PRESERVE-TIME instead of accessing dynamic variable
20864         `dired-copy-preserve-time' directly.
20865         (dired-do-create-files-regexp): Remove unused variable `fn-count'.
20866         (dired-insert-subdir-newpos): Rename unused variable `pos'.
20868         * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
20869         (dired-virtual-revert, dired-make-relative-symlink):
20870         Mark unused parameters.
20871         (manual-program): Declare.
20872         (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
20873         (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
20874         wrapped in `with-no-warnings' to avoid replacing one warning by another.
20876         * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
20878         * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
20880         * echistory.el (electric-history-in-progress, Helper-return-blurb):
20881         Declare.
20883         * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
20885         * electric.el (Electric-command-loop): Rename parameter
20886         INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
20888         * expand.el (expand-in-literal): Remove unused variable `here'.
20890         * facemenu.el (facemenu-add-new-color):
20891         Remove unused variable `docstring'.
20893         * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
20894         (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
20895         (face-attr-construct): Mark unused parameter.  Doc fix.
20896         (read-color): Remove unused variable `hex-string'.
20898         * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
20899         (locate-dominating-file): Remove unused vars `prev-file' and `user'.
20900         (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
20901         (display-buffer-other-frame): Remove unused variable `old-window'.
20902         (kill-buffer-hook): Declare.
20903         (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
20904         Mark unused parameters.
20905         (after-find-file): Pass 1 to `auto-save-mode', not t.
20907         * files-x.el (auto-insert): Declare.
20908         (modify-file-local-variable-prop-line): Remove unused variable `val'.
20910         * find-lisp.el (find-lisp-find-dired-internal): Remove unused
20911         variable `buf'.  Mark unused parameter.
20912         (find-lisp-insert-directory): Mark unused parameter.
20914         * format.el (format-decode-run-method): Mark unused parameter; doc fix.
20915         (format-encode-region): Remove unused variables `cur-buf' and `result'.
20916         (format-common-tail): Remove, unused.
20917         (format-deannotate-region): Remove unused variable `loc'.
20918         (format-annotate-region): Remove unused variable `p'.
20919         (format-annotate-single-property-change): Remove unused variables
20920         `default' and `tail'.
20922         * forms.el (read-file-filter): Declare.
20923         (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
20925         * frame.el (frame-creation-function-alist): Mark unused parameter.
20926         (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
20928         * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
20929         Remove unused parameters.
20930         (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
20931         (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
20933         * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
20934         (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
20935         (hfy-prepare-tag-map): Mark unused parameters.
20936         (htmlfontify-buffer): Use `called-interactively-p'.
20938         * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
20939         (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
20940         (ibuffer-do-occur): Mark unused parameters.
20941         (ibuffer-forward-next-marked): Remove unused variable `curmark'.
20942         (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
20944         * ibuffer.el: Don't quote `lambda'.
20945         (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
20946         (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
20947         Mark unused parameters.
20949         * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
20950         (ido-completing-read): Mark unused parameters.
20951         (ido-copy-current-word): Mark unused parameters;
20952         remove unused variable `name'.
20953         (ido-sort-merged-list): Remove unused parameter `dirs'.
20955         * ielm.el (ielm-input-sender): Mark unused parameter.
20956         (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
20957         (ielm-output, ielm-wbuf, ielm-pmark): Declare.
20958         (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
20959         `ielm-string' as a dynamic variable accessible from the IELM prompt.
20960         Bind `ielm-string' to INPUT-STRING.  Remove unused variable `err'.
20962         * image-dired.el (image-dired-display-thumbs): Remove unused
20963         variables `curr-file' and `count'.
20964         (image-dired-remove-tag): Remove unused variable `start'.
20965         (image-dired-tag-files, image-dired-create-thumbs): Remove unused
20966         variable `curr-file'
20967         (image-dired-rotate-original): Remove unused variable `temp-file'.
20968         (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
20969         Remove unused variable `file'.
20970         (image-dired-gallery-generate): Remove unused variable `curr'.
20971         (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
20973         * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
20975         * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
20977         * informat.el (texinfo-command-start, texinfo-command-end): Declare.
20979         * isearch.el (minibuffer-history-symbol): Declare.
20980         (isearch-edit-string): Remove unused variable `err'.
20981         (isearch-message-prefix, isearch-message-suffix):
20982         Mark unused parameters.
20984         * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
20986         * macros.el (insert-kbd-macro): Remove unused variable `mods'.
20988         * makesum.el (double-column): Remove unused variable `cnt'.
20990         * misearch.el (multi-isearch-pop-state): Mark unused parameter.
20991         (ido-ignore-item-temp-list): Declare.
20993         * mouse-drag.el (mouse-drag-throw): Remove unused variables
20994         `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
20995         `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
20996         (mouse-drag-drag): Remove unused variables `mouse-delta' and
20997         `mouse-col-delta'.
20999         * mouse-sel.el (mouse-extend-internal):
21000         Remove unused variable `orig-window-frame'.
21002         * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
21003         (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
21004         Move declarations before first use.
21005         (pcomplete-opt): Mark unused parameters; doc fix.
21007         * proced.el (proced-revert): Mark unused parameter.
21008         (proced-send-signal): Remove unused variable `err'.
21010         * ps-print.el (ps-print-preprint-region, ps-print-preprint):
21011         Rename parameter PREFIX-ARG to ARG.
21012         (ps-basic-plot-string, ps-basic-plot-whitespace):
21013         Mark unused parameters.
21015         * replace.el (replace-count): Define.
21016         (occur-revert-function): Mark unused parameters.
21017         (ido-ignore-item-temp-list, isearch-error, isearch-forward)
21018         (isearch-case-fold-search, isearch-string): Declare.
21019         (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
21020         bind `case-fold-search'.  Remove unused variables `beg' and `end',
21021         and simplify.
21022         (replace-eval-replacement): Rename parameter REPLACE-COUNT to
21023         COUNT and bind `replace-count'.
21024         (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
21025         to COUNT.
21027         * savehist.el (print-readably, print-string-length): Declare.
21029         * shadowfile.el (shadow-expand-cluster-in-file-name):
21030         Remove unused variable `cluster'.
21031         (shadow-copy-file): Remove unused variable `i'.
21032         (shadow-noquery, shadow-clusters, shadow-site-cluster)
21033         (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
21034         (shadow-define-literal-group, shadow-define-regexp-group)
21035         (shadow-make-group, shadow-shadows-of): Clean up docstrings.
21037         * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
21038         (shell): Use `called-interactively-p'.
21039         (shell-directory-tracker): Remove unused variable `chdir-failure'.
21041         * simple.el (compilation-context-lines, comint-file-name-quote-list)
21042         (comint-file-name-chars, comint-delimiter-argument-list): Declare.
21043         (delete-backward-char): Remove unused variable `ocol'.
21044         (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
21045         (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
21046         (event-apply-hyper-modifier, event-apply-shift-modifier)
21047         (event-apply-control-modifier, event-apply-meta-modifier):
21048         Mark unused parameters.
21049         (undo-make-selective-list): Remove duplicate variable `undo-elt'.
21050         (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
21052         * speedbar.el (speedbar-ignored-directory-expressions)
21053         (speedbar-supported-extension-expressions, speedbar-directory-buttons)
21054         (speedbar-find-file, speedbar-dir-follow)
21055         (speedbar-directory-buttons-follow, speedbar-tag-find)
21056         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
21057         (speedbar-buffers-line-directory, speedbar-buffer-click):
21058         Mark unused parameters.
21059         (speedbar-tag-file): Remove unused variable `mode'.
21060         (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
21062         * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
21064         * talk.el (talk): Remove unused variable `display'.
21066         * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
21067         (tar-write-region-annotate): Mark unused parameter.
21069         * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
21070         (minutes, seconds, time-zone, day, year, monthname, month, dayname):
21071         Declare them, wrapped in `with-no-warnings' to avoid replacing one
21072         warning by another.
21074         * time-stamp.el (time-stamp-string-preprocess):
21075         Remove unused variable `require-padding'.
21077         * tree-widget.el (widget-glyph-enable): Declare.
21078         (tree-widget-action): Mark unused parameter.
21080         * w32-fns.el (x-get-selection): Mark unused parameter.
21081         (autoload-make-program, generated-autoload-file): Declare.
21083         * wdired.el (wdired-revert): Mark unused parameters.
21084         (wdired-xcase-word): Remove unused variable `err'.
21086         * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
21087         (whitespace-help-scroll): Remove unused variable `data-help'.
21089         * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
21090         (widget-image-insert, widget-after-change, default)
21091         (widget-default-format-handler, widget-default-notify)
21092         (widget-default-prompt-value, widget-info-link-action)
21093         (widget-url-link-action, widget-function-link-action)
21094         (widget-variable-link-action, widget-file-link-action)
21095         (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
21096         (widget-field-prompt-internal, widget-field-action, widget-field-match)
21097         (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
21098         (widget-insert-button-action, widget-delete-button-action, visibility)
21099         (widget-documentation-link-action, widget-documentation-string-action)
21100         (widget-const-prompt-value, widget-regexp-match, symbol)
21101         (widget-coding-system-prompt-value)
21102         (widget-key-sequence-value-to-external, sexp)
21103         (widget-sexp-value-to-internal, character, vector, cons)
21104         (widget-choice-prompt-value, widget-boolean-prompt-value)
21105         (widget-color--choose-action): Mark unused parameters.
21106         (widget-item-match-inline, widget-choice-match-inline)
21107         (widget-checklist-match, widget-checklist-match-inline)
21108         (widget-group-match): Rename parameter VALUES to VALS.
21109         (widget-field-value-set): Remove unused variable `size'.
21110         (widget-color-action): Remove unused variables `value' and `start'.
21112         * windmove.el (windmove-wrap-loc-for-movement): Remove unused
21113         variable `dir'.  Doc fix.
21114         (windmove-find-other-window): Don't pass it.
21116         * window.el (count-windows): Mark unused parameter.
21117         (bw-adjust-window): Remove unused variable `err'.
21119         * woman.el (woman-file-name): Remove unused variable `default'.
21120         (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
21121         WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
21122         (global-font-lock-mode): Declare.
21123         (woman-decode-region): Mark unused parameter.
21124         (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
21126         * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
21127         (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
21128         (x-dnd-handle-moz-url): Remove unused variable `title'.
21129         (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
21131         * xml.el (xml-parse-tag, xml-parse-attlist):
21132         Remove unused variable `pos'.
21134 2011-04-19  Glenn Morris  <rgm@gnu.org>
21136         * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
21137         (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
21138         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
21139         (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
21140         * calendar/cal-html.el (cal-html-insert-minical):
21141         * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
21142         (calendar-mark-date-pattern):
21143         Prefix "unused" locals.
21145         * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
21146         optional argument `style'.
21148         * calendar/appt.el (appt-make-list):
21149         * calendar/cal-china.el (calendar-chinese-date-string):
21150         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
21151         (diary-hebrew-yahrzeit):
21152         * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
21153         * calendar/calendar.el (calendar-generate-window):
21154         * calendar/time-date.el (time-to-days):
21155         Remove unused local variables.
21157 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
21159         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
21160         glyphless-char-display table.
21161         (tabulated-list-glyphless-char-display): New var.
21163 2011-04-18  Sam Steingold  <sds@gnu.org>
21165         * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
21166         to acknowledgments.
21168 2011-04-17  Glenn Morris  <rgm@gnu.org>
21170         * calendar/diary-lib.el (diary-sexp-entry):
21171         * calendar/holidays.el (holiday-sexp):
21172         Set debug-on-error rather than the removed stack-trace-on-error.
21174 2011-04-16  Glenn Morris  <rgm@gnu.org>
21176         * progmodes/f90.el: Use lexical-binding.
21177         (f90-get-correct-indent): Remove unnecessary local variable `cont'.
21179 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21181         * mail/sendmail.el (mail-mode-map): Use completion-at-point.
21182         (mail-mode): Setup mailalias completion here instead.
21183         * mail/mailalias.el: Use lexical-binding.
21184         (pattern, mailalias-done): Declare dynamic.
21185         (mail-completion-at-point-function): New function, from mail-complete.
21186         (mail-complete): Use it.
21187         (mail-completion-expand): New function.
21188         (mail-get-names): Use it.
21189         (mail-directory, mail-directory-process, mail-directory-stream):
21190         Don't use `pattern' for lexically bound arg.
21192         * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
21194         * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
21195         (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
21196         (hfy-etags-cmd-alist): Don't eval-and-compile any more.
21198         * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
21199         (byte-save-window-excursion, byte-temp-output-buffer-setup)
21200         (byte-interactive-p): Define them again, for use when inlining
21201         old code.
21203 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
21205         * loadup.el: Use `string-to-number', not `string-to-int'.
21207 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21209         * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
21210         gud-gdb-complete-command.
21211         (gud-gdb-completions): New function, from gud-gdb-complete-command.
21212         (gud-gdb-completion-at-point): New function.
21213         (gud-gdb-completions): Remove.
21215 2011-04-14  Michael Albinus  <michael.albinus@gmx.de>
21217         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
21218         when the scripts fail.  Use `tramp-do-file-attributes-with-ls' then.
21219         (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
21220         whether `executable-find' is bound.
21222         * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
21224 2011-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
21226         * minibuffer.el (completion-in-region-mode-predicate)
21227         (completion-in-region-mode--predicate): New vars.
21228         (completion-in-region, completion-in-region--postch)
21229         (completion-in-region-mode): Use them.
21230         (completion--capf-wrapper): Also return the hook function.
21231         (completion-at-point, completion-help-at-point):
21232         Adjust and provide a predicate.
21234         Preserve arg names for advice of subr and lexical functions (bug#8457).
21235         * help-fns.el (help-function-arglist): Consolidate the subr and
21236         new-byte-code cases.  Add argument `preserve-names' to extract names
21237         from the docstring when needed.
21238         * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
21239         (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
21240         (ad-arglist): Use help-function-arglist's new arg.
21241         (ad-definition-type): Use cond.
21243 2011-04-13  Juanma Barranquero  <lekktu@gmail.com>
21245         * autorevert.el (auto-revert-handler):
21246         Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
21247         which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
21248         Don't quote lambda.
21250         * image-mode.el (image-transform-set-scale):
21251         Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
21253 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21255         * net/network-stream.el (network-stream-open-starttls): Only do
21256         opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
21257         Upgrades via gnutls-cli are too slow to be done opportunistically.
21259 2011-04-12  Juanma Barranquero  <lekktu@gmail.com>
21261         * dframe.el (dframe-current-frame): Remove spurious quote.
21263 2011-04-12  Glenn Morris  <rgm@gnu.org>
21265         * calendar/cal-tex.el (cal-tex-end-document):
21266         Try to automatically use latin1 input if needed.
21268         * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
21269         Don't try to cons a mark onto an empty element.
21271 2011-04-11  Leo Liu  <sdl.web@gmail.com>
21273         * ido.el (ido-buffer-internal): Allow method 'kill for virtual
21274         buffers.
21275         (ido-kill-buffer-at-head): Support killing virtual buffers.
21277 2011-04-10  Chong Yidong  <cyd@stupidchicken.com>
21279         * minibuffer.el (completion-show-inline-help): New var.
21280         (completion--do-completion, minibuffer-complete)
21281         (minibuffer-force-complete, minibuffer-complete-word):
21282         Inhibit minibuffer messages if completion-show-inline-help is nil.
21284         * icomplete.el (icomplete-mode): Bind completion-show-inline-help
21285         to avoid interference from inline help (Bug#5849).
21287 2011-04-10  Leo Liu  <sdl.web@gmail.com>
21289         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
21290         Fix typo.
21292 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
21294         * image-mode.el (image-toggle-display-image): Signal an error if
21295         not in Image mode.
21296         (image-transform-mode, image-transform-resize)
21297         (image-transform-set-rotation): Doc fix.
21298         (image-transform-set-resize): Delete.
21299         (image-transform-set-scale, image-transform-fit-to-height)
21300         (image-transform-fit-to-width): Handle image-toggle-display-image
21301         and image-transform-resize directly.
21303 2011-04-08  Sho Nakatani  <lay.sakura@gmail.com>
21305         * doc-view.el (doc-view-fit-width-to-window)
21306         (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
21307         New functions for fitting the shown image to the Emacs window size.
21308         (doc-view-mode-map): Add bindings for the new functions.
21310 2011-04-08  Juanma Barranquero  <lekktu@gmail.com>
21312         * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
21313         Fix typo in docstring.
21315 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
21317         * files.el (file-size-human-readable): Produce one digit after
21318         decimal, like "ls -lh" does.
21320         * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
21321         the file size representation.
21323         * simple.el (list-processes): If async subprocesses are not
21324         available, error out with a clear error message.
21326 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
21328         * help.el (help-form-show): New function, to be called from C.
21329         Put help-form output in a buffer named differently than *Help*.
21331 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
21333         * files.el (file-size-human-readable): New function.
21335         * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
21336         computing the representation inline.  Don't require `cl'.
21338 2011-04-08  Glenn Morris  <rgm@gnu.org>
21340         * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
21342         * net/browse-url.el (browse-url-firefox):
21343         Test system-type, not system-configuration.
21345         * vc/log-edit.el (log-edit-empty-buffer-p): New function.
21346         (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
21347         Use log-edit-empty-buffer-p.  (Bug#7598)
21349         * net/rlogin.el (rlogin-process-connection-type): Simplify.
21350         (rlogin-mode-map): Initialize in the defvar.
21351         (rlogin): Use ignore-errors.
21353         * replace.el (occur-mode-map): Some fixes for menu items.
21355 2011-04-07  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
21357         * play/morse.el (denato-region): Handle varying case.  (Bug#8386)
21359 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
21361         * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
21362         issuing unused warnings.
21364         * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
21365         macro directly.
21367         * simple.el: Lisp reimplement of list-processes.  Based on an
21368         earlier reimplementation by Leo Liu, but using tabulated-list.el.
21369         (process-menu-mode): New major mode.
21370         (list-processes--refresh, list-processes):
21371         (process-menu-visit-buffer): New functions.
21373         * files.el (save-buffers-kill-emacs): Don't assume any return
21374         value of list-processes, which is undocumented anyway.
21376 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
21378         * emacs-lisp/tabulated-list.el: New file.
21380         * emacs-lisp/package.el: Use Tabulated List mode.
21381         (package-menu-mode-map): Inherit from tabulated-list-mode-map.
21382         (package-menu-mode): Derive from tabulated-list-mode.  Set up the
21383         table format using Tabulated List mode variables.
21384         (package--push): New macro, replacing package-list-maybe-add.
21385         (package-menu--generate): Use package--push.  Renamed from
21386         package--generate-package-list.
21387         (package-menu-refresh, list-packages): Use it.
21388         (package-menu--print-info): Rename from package-print-package.
21389         Return insertion data instead of inserting it directly.
21390         (package-menu-describe-package, package-menu-execute):
21391         Use tabulated-list-get-id.
21392         (package-menu-mark-delete, package-menu-mark-install)
21393         (package-menu-mark-unmark, package-menu-backup-unmark)
21394         (package-menu-mark-obsolete-for-deletion):
21395         Use tabulated-list-put-tag.
21396         (package--list-packages, package-menu-revert)
21397         (package-menu-get-package, package-menu-get-version)
21398         (package-menu-sort-by-column): Functions deleted.
21399         (package-menu-package-list, package-menu-sort-key): Vars deleted.
21400         (package-menu--status-predicate, package-menu--version-predicate)
21401         (package-menu--name-predicate)
21402         (package-menu--description-predicate): Handle arguments in the
21403         Tabulated List format.
21404         (package-list-packages-no-fetch): Call list-packages.
21406 2011-04-06  Juanma Barranquero  <lekktu@gmail.com>
21408         * files.el (after-find-file-from-revert-buffer): Remove variable.
21409         (after-find-file): Don't bind it.
21410         (revert-buffer-in-progress-p): New variable.
21411         (revert-buffer): Bind it.
21412         Pass nil for `after-find-file-from-revert-buffer'.
21414         * saveplace.el (save-place-find-file-hook): Use new variable
21415         `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
21417 2011-04-06  Glenn Morris  <rgm@gnu.org>
21419         * Makefile.in (AUTOGEN_VCS): New variable.
21420         (autoloads): Use $AUTOGEN_VCS.
21422         * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
21423         * calendar/calendar.el (calendar-mode-map):
21424         Check for toolkit scroll bars.  (Bug#8305)
21426 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
21428         * minibuffer.el (completion-in-region--postch)
21429         (completion-in-region-mode): Remove unnecessary messages.
21431 2011-04-05  Juanma Barranquero  <lekktu@gmail.com>
21433         * font-lock.el (font-lock-refresh-defaults):
21434         Don't bind `hi-lock--inhibit-font-lock-hook', removed in
21435         2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
21437         * info.el (Info-directory-list, Info-read-node-name-2)
21438         (Info-split-parameter-string): Doc fixes.
21439         (Info-virtual-nodes): Reflow docstring.
21440         (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
21441         (Info-apropos-toc-nodes, info-finder, Info-get-token)
21442         (Info-find-emacs-command-nodes, Info-speedbar-key-map):
21443         Fix typos in docstrings.
21444         (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
21445         (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
21446         (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
21447         (Info-restore-desktop-buffer): Mark unused parameters.
21448         (Info-directory-find-file, Info-directory-find-node)
21449         (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
21450         (Info-virtual-index-find-node, Info-apropos-find-file)
21451         (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
21452         Mark unused parameters; fix typos in docstrings.
21453         (Info-virtual-index): Remove unused local variable `nodename'.
21455 2011-04-05  Deniz Dogan  <deniz@dogan.se>
21457         * net/rcirc.el: Update my e-mail address.
21458         (rcirc-mode-map): Remove M-o binding.
21460 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
21462         * startup.el (command-line): Save the cursor's theme-face
21463         directly, instead of using face-override-spec.
21465         * custom.el (load-theme): Minor optimization in assigning faces.
21467 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
21469         * help-fns.el (describe-variable): Complete all variables having
21470         documentation, including keywords.
21471         http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
21473 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
21475         Convert to lexical-binding.
21477         * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
21478         (bs--get-marked-string, bs--get-modified-string)
21479         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
21480         (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
21481         (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
21483         * ehelp.el (electric-help-execute-extended)
21484         (electric-help-ctrl-x-prefix):
21485         * hexl.el (hexl-revert-buffer-function):
21486         * linum.el (linum-after-change, linum-after-scroll):
21487         * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
21489         * help-fns.el (help-describe-category-set): Remove unused ERR variable.
21491 2011-04-04  Daiki Ueno  <ueno@unixuser.org>
21493         * epa-dired.el:
21494         * epa-mail.el:
21495         * epa-hook.el:
21496         * epa-file.el:
21497         * epa.el:
21498         * epg.el: Use lexical binding.
21500 2011-04-03  Chong Yidong  <cyd@stupidchicken.com>
21502         * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
21504         * textmodes/flyspell.el (flyspell-word): Recognize default
21505         dictionary case for flyspell-mark-duplications-exceptions.
21506         Use regexp matching for languages.
21507         (flyspell-mark-duplications-exceptions): Add "that" and "had" for
21508         default dictionary (Bug#7926).
21510 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
21512         * emacs-lisp/package.el (package--with-work-buffer):
21513         Recognize https URLs.
21515         * net/network-stream.el: Move from gnus/proto-stream.el.
21516         Change prefix to network-stream throughout.
21517         (open-protocol-stream): Merge into open-network-stream, leaving
21518         open-protocol-stream as an alias.  Handle nil BUFFER args.
21520         * subr.el (open-network-stream): Move to net/network-stream.el.
21522 2011-04-02  Glenn Morris  <rgm@gnu.org>
21524         * find-dired.el (find-exec-terminator): New option.
21525         (find-ls-option): Test for -ls support.
21526         (find-ls-subdir-switches): Test for -b in find-ls-option.
21527         (find-dired, find-grep-dired): Doc fixes.
21528         (find-dired): Use find-exec-terminator.
21530         * find-dired.el (find-ls-option, find-ls-subdir-switches)
21531         (find-grep-options): Do not autoload these defcustoms, remove purecopy.
21532         (find-name-arg): Remove purecopy.
21534         * progmodes/grep.el (grep-find-use-xargs): Doc fix.
21535         (grep-compute-defaults): Check for `-exec COMMAND +' support.
21536         Set grep-find-use-xargs, grep-find-command, and grep-find-template
21537         accordingly.  Don't add the null-device if not needed.
21539         * files.el (save-some-buffers): Doc fix.
21541 2011-04-02  Eli Zaretskii  <eliz@gnu.org>
21543         * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
21545 2011-04-01  Juanma Barranquero  <lekktu@gmail.com>
21547         * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
21548         Use `dolist' rather than `mapcar'.
21550 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21552         Add lexical binding.
21554         * subr.el (apply-partially): Use new closures rather than CL.
21555         (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
21556         (dolist, dotimes): Use slightly different expansion for lexical code.
21557         (functionp): Move to C.
21558         (letrec): New macro.
21559         (with-wrapper-hook): Use it and apply-partially instead of CL.
21560         (eval-after-load): Preserve lexical-binding.
21561         (save-window-excursion, with-output-to-temp-buffer): Turn them
21562         into macros.
21564         * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
21566         * help-fns.el (help-split-fundoc): Return nil if there's nothing else
21567         than the arglist.
21568         (help-add-fundoc-usage): Don't add `Not documented'.
21569         (help-function-arglist): Handle closures, subroutines, and new
21570         byte-code-functions.
21571         (help-make-usage): Remove leading underscores.
21572         (describe-function-1): Handle closures.
21573         (describe-variable): Use special-variable-p for completion.
21575         * files.el (lexical-binding): Declare safe.
21577         * emacs-lisp/pcase.el: Don't use destructuring-bind.
21578         (pcase--memoize): Rename from pcase-memoize.  Change weakness.
21579         (pcase): Add `let' pattern.
21580         Change memoization so it actually works.
21581         (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
21582         (pcase--u1) <guard, pred>: Fix possible shadowing problem.
21583         <let>: New case.
21585         * emacs-lisp/macroexp.el: Use lexical binding.
21586         (macroexpand-all-1): Check obsolete macros.  Expand compiler-macros.
21587         Don't convert ' to #' without checking that it's indeed quoting
21588         a lambda.
21590         * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
21591         Use eval-sexp-add-defvars.
21592         (eval-sexp-add-defvars): New fun.
21594         * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
21596         * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
21597         Don't autoload.
21598         (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
21599         than the internal `byte-compile-lambda'.
21600         (defmethod): Don't hide code under quotes.
21601         (eieio-defmethod): New `code' argument.
21603         * emacs-lisp/eieio-comp.el: Remove.
21605         * emacs-lisp/edebug.el (edebug-eval-defun)
21606         (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
21607         (edebug-toggle): Avoid `eval'.
21609         * emacs-lisp/disass.el (disassemble-internal): Handle new
21610         `closure' objects.
21611         (disassemble-1): Handle new byte codes.
21613         * emacs-lisp/cl.el (pushnew): Silence warning.
21615         * emacs-lisp/cl-macs.el (cl-byte-compile-block)
21616         (cl-byte-compile-throw): Remove.
21617         (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
21619         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
21620         closures.
21622         * emacs-lisp/cconv.el: New file.
21624         * emacs-lisp/bytecomp.el: Use lexical binding instead of
21625         a "bytecomp-" prefix.  Macroexpand everything as a separate phase.
21626         (byte-compile-initial-macro-environment):
21627         Handle declare-function here.
21628         (byte-compile--lexical-environment): New var.
21629         (byte-stack-ref, byte-stack-set, byte-discardN)
21630         (byte-discardN-preserve-tos): New lap codes.
21631         (byte-interactive-p): Don't use any more.
21632         (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
21633         New macros.
21634         (byte-compile-lapcode): Use them and handle new lap codes.
21635         (byte-compile-obsolete): Remove.
21636         (byte-compile-arglist-signature): Handle new byte-code arg"lists".
21637         (byte-compile-arglist-warn): Check late def of inlinable funs.
21638         (byte-compile-cl-warn): Don't silence warnings for compiler-macros
21639         since they should have been expanded by now.
21640         (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
21641         (byte-compile-from-buffer): Remove unused second arg.
21642         (byte-compile-preprocess): New function.
21643         (byte-compile-toplevel-file-form): New function to distinguish
21644         file-form calls from outside from file-form calls from hunk-handlers.
21645         (byte-compile-file-form): Simplify.
21646         (byte-compile-file-form-defsubst): Remove.
21647         (byte-compile-file-form-defmumble): Simplify now that
21648         byte-compile-lambda always returns a byte-code-function.
21649         (byte-compile): Preprocess.
21650         (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
21651         Remove, not used any more.
21652         (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
21653         (byte-compile-make-args-desc): New funs.
21654         (byte-compile-lambda): Handle lexical functions.  Always return
21655         a byte-code-function.
21656         (byte-compile-reserved-constants): New var, to make up room for
21657         closed-over variables.
21658         (byte-compile-constants-vector): Obey it.
21659         (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
21660         (byte-compile-macroexpand-declare-function): New function.
21661         (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
21662         byte-code-functions.
21663         (byte-compile-form): Check obsolescence here.
21664         (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
21665         (byte-compile-variable-ref): Remove.
21666         (byte-compile-dynamic-variable-op): New fun.
21667         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
21668         (byte-compile-variable-set): New funs.
21669         (byte-compile-discard): Add 2 args.
21670         (byte-compile-stack-ref, byte-compile-stack-set)
21671         (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
21672         (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
21673         macroexpand-all instead.
21674         (byte-compile-quote-form): Remove.
21675         (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
21676         (byte-compile-bind, byte-compile-unbind): New funs.
21677         (byte-compile-let): Handle let* and lexical binding.
21678         (byte-compile-let*): Remove.
21679         (byte-compile-catch, byte-compile-unwind-protect)
21680         (byte-compile-track-mouse, byte-compile-condition-case):
21681         Handle a new :fun-body form, used for lexical scoping.
21682         (byte-compile-save-window-excursion)
21683         (byte-compile-with-output-to-temp-buffer): Remove.
21684         (byte-compile-defun): Simplify.
21685         (byte-compile-stack-adjustment): New fun.
21686         (byte-compile-out): Use it.
21687         (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
21689         * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
21690         handler any more.
21692         * emacs-lisp/byte-opt.el: Use lexical binding.
21693         (byte-inline-lapcode): Remove (to bytecomp).
21694         (byte-compile-inline-expand): Pay attention to inlining to/from
21695         lexically bound code.
21696         (byte-compile-unfold-lambda): Don't handle byte-code-functions
21697         any more.
21698         (byte-optimize-form-code-walker): Don't handle save-window-excursion
21699         any more and don't call compiler-macros.
21700         (byte-compile-splice-in-already-compiled-code): Remove.
21701         (byte-code): Don't inline any more.
21702         (disassemble-offset): Receive `bytes' as argument rather than via
21703         dynamic scoping.
21704         (byte-compile-tag-number): Declare before first use.
21705         (byte-decompile-bytecode-1): Handle new byte-codes, don't change
21706         `return' even if make-spliceable.
21707         (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
21708         obsolete interactive-p.
21709         (byte-optimize-lapcode): Optimize new lap-codes.
21710         Don't trip up on new form of `byte-constant' lap code.
21712         * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
21714         * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
21716         * custom.el (custom-initialize-default, custom-declare-variable):
21717         Use `defvar'.
21719         * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
21720         New variables.
21721         (compile-onefile, .el.elc, compile-calc, recompile): Use them.
21722         (COMPILE_FIRST): Add macroexp and cconv.
21723         * makefile.w32-in: Mirror changes in Makefile.in.
21725         * vc/cvs-status.el:
21726         * vc/diff-mode.el:
21727         * vc/log-edit.el:
21728         * vc/log-view.el:
21729         * vc/smerge-mode.el:
21730         * textmodes/bibtex-style.el:
21731         * textmodes/css-mode.el:
21732         * startup.el:
21733         * uniquify.el:
21734         * minibuffer.el:
21735         * newcomment.el:
21736         * reveal.el:
21737         * server.el:
21738         * mpc.el:
21739         * emacs-lisp/smie.el:
21740         * doc-view.el:
21741         * dired.el:
21742         * abbrev.el: Use lexical binding.
21744 2011-04-01  Eli Zaretskii  <eliz@gnu.org>
21746         * info.el (info-display-manual): New function.
21748 2011-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
21750         * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
21752 2011-03-31  Tassilo Horn  <tassilo@member.fsf.org>
21754         * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
21755         an entry for that server in rcirc-authinfo.  (Bug#8385)
21757 2011-03-31  Glenn Morris  <rgm@gnu.org>
21759         * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
21761         * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
21763 2011-03-30  Christoph Scholtes  <cschol2112@googlemail.com>
21765         * progmodes/python.el (python-default-interpreter)
21766         (python-python-command-args, python-jython-command-args)
21767         (python-which-shell, python-which-args, python-which-bufname)
21768         (python-file-queue, python-comint-output-filter-function)
21769         (python-toggle-shells, python-shell): Remove obsolete defcustoms,
21770         variables and functions.
21772 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21774         * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
21775         (completion-in-region-mode): New minor mode.
21776         (completion-in-region): Use it.
21777         (completion-in-region--data, completion-in-region-mode-map): New vars.
21778         (completion-in-region--postch): New function.
21779         (completion--capf-misbehave-funs, completion--capf-safe-funs):
21780         New vars.
21781         (completion--capf-wrapper): New function.
21782         (completion-at-point): Use it to track well-behavedness of
21783         hook functions.
21784         (completion-help-at-point): New command.
21786 2011-03-30  Jason Merrill  <jason@redhat.com>  (tiny change)
21788         * vc/add-log.el (add-change-log-entry): Don't use whitespace
21789         syntax class to search for whitespace on a single line
21790         (Message-ID: <4D938140.4030905@redhat.com>).
21792 2011-03-30  Leo Liu  <sdl.web@gmail.com>
21794         * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
21795         New commands.
21796         (edit-abbrevs-map): Bind them here.
21797         (write-abbrev-file): New optinal arg VERBOSE.  (Bug#5937)
21799 2011-03-29  Ken Manheimer  <ken.manheimer@gmail.com>
21801         * allout.el (allout-hide-by-annotation, allout-flag-region):
21802         Reduce possibility of overlay leakage by making them volatile.
21804         * allout-widgets.el (allout-widgets-tally): Define as nil so the
21805         hash is not shared between buffers.  Mode initialization is
21806         responsible for giving it a useful starting value.
21807         (allout-item-span): Reduce possibility of overlay leakage by
21808         making them volatile.
21809         (allout-widgets-count-buttons-in-region): Add diagnostic function
21810         for tracking down button overlay leaks.
21812 2011-03-29  Leo Liu  <sdl.web@gmail.com>
21814         * ido.el (ido-read-internal): Use the default history var
21815         minibuffer-history if no HISTORY is specified.
21817 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
21819         * net/imap.el (imap-shell-open, imap-process-connection-type):
21820         Use imap-process-connection-type for 'shell' streams as well as
21821         Kerberos, SSL, other subprocesses.
21823 2011-03-28  Leo Liu  <sdl.web@gmail.com>
21825         * abbrev.el (abbrev-table-empty-p): New function.
21826         (prepare-abbrev-list-buffer): Place empty abbrev tables after
21827         nonempty ones.  (Bug#5937)
21829 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
21831         * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
21833 2011-03-27  Leo Liu  <sdl.web@gmail.com>
21835         * ansi-color.el (ansi-color-names-vector): Allow cons cell value
21836         for foreground and background colors.
21837         (ansi-color-make-color-map): Adapt.
21839 2011-03-25  Leo Liu  <sdl.web@gmail.com>
21841         * midnight.el (midnight-time-float): Remove.  Note it calculates
21842         the microsecond component incorrectly and seconds-to-time does the
21843         same job.
21844         Remove redundant (require 'timer).
21846         * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
21847         (ido-completions): Remove unused arguments.  (Bug#8329)
21849 2011-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
21851         * minibuffer.el (completion--flush-all-sorted-completions):
21852         Remove itself from hook.
21853         (completion-at-point): Let the functions perform the completion
21854         immediately and return nil or t.
21855         * comint.el (comint-dynamic-complete-functions): Now identical to
21856         completion-at-point-functions.
21857         (comint-dynamic-list-input-ring): Remove unused var `index'.
21858         (comint--match-partial-filename, comint--unquote&expand-filename):
21859         New funs, split from comint-match-partial-filename.
21860         (comint-dynamic-complete): Use completion-at-point.
21861         (comint-dynamic-complete-filename): Use comint--match-partial-filename.
21863 2011-03-24  Drew Adams  <drew.adams@oracle.com>
21865         * thingatpt.el: Support `defun'.
21867 2011-03-23  Leo Liu  <sdl.web@gmail.com>
21869         * abbrevlist.el: Move to obsolete/abbrevlist.el.
21871         * help-mode.el (help-mode-finish): Tweak regexp.
21873 2011-03-23  Glenn Morris  <rgm@gnu.org>
21875         * eshell/esh-opt.el (eshell-eval-using-options):
21876         Do not bind unused local variable `eshell-option-stub'.
21878         * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
21880 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
21882         * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
21883         keymap variable in `with-no-warnings' to avoid a warning when the
21884         keymap has been already `defconst'ed.
21886 2011-03-22  Leo Liu  <sdl.web@gmail.com>
21888         * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
21889         encode all chars in abbrevs; otherwise use emacs-mule or
21890         utf-8-emacs.  (Bug#8308)
21892 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
21894         * simple.el (backward-delete-char-untabify):
21895         Avoid warning about using `delete-backward-char'.
21897         * image.el (image-type-file-name-regexps): Make it variable.
21898         `imagemagick-register-types' modifies it, and the user may want
21899         to add new extensions for known image types.
21900         (imagemagick-register-types): Throw error if not using ImageMagick.
21902 2011-03-22  Leo Liu  <sdl.web@gmail.com>
21904         * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
21905         located before rcirc-prompt-end-marker.
21906         (rcirc-complete): Error if point is not after rcirc prompt.
21907         Handle the case when table is nil.
21908         (rcirc-user-authenticated): Define to fix compiler warning.
21910 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
21912         * custom.el (custom--inhibit-theme-enable): Make it affect only
21913         custom-theme-set-variables and custom-theme-set-faces.
21914         (provide-theme): Ignore custom--inhibit-theme-enable.
21915         (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
21916         (custom-enabling-themes): Delete variable.
21917         (enable-theme): Accept only loaded themes as arguments.
21918         Ignore the special custom-enabled-themes variable.
21919         (custom-enabled-themes): Forbid themes from setting this.
21920         Eliminate use of custom-enabling-themes.
21921         (custom-push-theme): Quote "changed" custom var entry.
21923 2011-03-21  Leo Liu  <sdl.web@gmail.com>
21925         * ido.el (ido-read-internal): Add ido-selected to history instead
21926         of user input.
21928 2011-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21930         * subr.el (deferred-action-list, deferred-action-function):
21931         Mark obsolete.
21933 2011-03-21  Leo Liu  <sdl.web@gmail.com>
21935         * vc/log-view.el: Remove (require 'wid-edit), not needed after the
21936         change on 2011-02-13 (bug#8309).
21938         * minibuffer.el (read-file-name-function): Change default value.
21939         (read-file-name--defaults): Rename from read-file-name-defaults.
21940         (read-file-name-default): Rename from read-file-name.
21941         (read-file-name): Call read-file-name-function.
21943 2011-03-21  Glenn Morris  <rgm@gnu.org>
21945         * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
21946         Doc fixes.
21948 2011-03-21  Chong Yidong  <cyd@stupidchicken.com>
21950         * cus-theme.el: Add missing provide statement.
21951         (customize-create-theme): Extract theme value correctly.
21952         (custom-theme-visit-theme): Autoload.
21953         (customize-create-theme): Prompt before inserting default faces.
21955 2011-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
21957         * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
21958         units and musical notes.
21960 2011-03-20  Leo Liu  <sdl.web@gmail.com>
21962         * ido.el (ido-read-internal): Use completing-read-default.
21963         (ido-completing-read): Fix compatibility with completing-read.
21965 2011-03-20  Christian Ohler  <ohler@gnu.org>
21967         * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
21968         (ert-delete-all-tests): Use `called-interactively-p' rather than
21969         `interactive-p'.
21970         (ert--make-xrefs-region): Respect END.
21972 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
21974         * dired-aux.el (dired-create-directory): Signal an error if the
21975         directory already exists (Bug#8246).
21977         * facemenu.el (list-colors-display): Call list-faces-display
21978         inside with-help-window.
21979         (list-colors-print): Use display property to align the final
21980         column, instead of checking window-width.
21982 2011-03-19  Eli Zaretskii  <eliz@gnu.org>
21984         * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
21985         windows-nt systems.
21986         (emerge-protect-metachars): Quote correctly for ms-dos and
21987         windows-nt systems.
21989 2011-03-19  Ralph Schleicher  <rs@ralph-schleicher.de>
21991         * info.el (info-initialize): Replace all uses of `:' with
21992         path-separator for compatibility with non-Unix systems.
21993         Cache quoting of path-separator.  (Bug#8258)
21995 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
21997         * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
21998         (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
21999         (mouse-avoidance-mode): Fix typos in docstrings.
22001 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
22003         * startup.el (package-subdirectory-regexp): Move from package.el.
22004         Omit \\` and \\', and let callers add them.
22006         * emacs-lisp/package.el (package-strip-version)
22007         (package-load-all-descriptors): Add \\` and \\' to
22008         package-subdirectory-regexp before using it.
22009         (package-untar-buffer): New arg DIR; ensure that file untars only
22010         into this expected directory.  Remove superfluous delete-region.
22011         (package-unpack): Caller changed.
22012         (package-tar-file-info): Use package-subdirectory-regexp.
22014 2011-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
22016         * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
22017         diff-mode-shared-map (bug#8284).
22018         (diff-mode-shared-map): Re-introduce some bindings that were problematic.
22020 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22022         * calendar/time-date.el (format-seconds): Use assoc instead of
22023         assoc-string, since assoc-string doesn't exist in XEmacs.
22025 2011-03-17  Juanma Barranquero  <lekktu@gmail.com>
22027         * custom.el (custom-known-themes): Reflow docstring.
22028         (custom-theme-load-path): Fix typo in docstring.
22029         (load-theme): Fix typo in error message.
22030         (custom-available-themes, custom-variable-theme-value):
22031         Use `let', not `let*'.
22033 2011-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
22035         * calc/README: Mention inclusion of musical notes.
22037         * calc/calc-units.el (calc-lu-quant): Rename from
22038         `calc-logunits-quantity'.
22039         (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
22040         (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
22041         (calc-db): Rename from `calc-dblevel'.
22042         (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
22043         (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
22044         (calc-np): Rename from `calc-nplevel'.
22045         (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
22046         (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
22047         (calc-lu-plus): Rename from `calc-logunits-add'.
22048         (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
22049         (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
22050         (calc-lu-minus): Rename from `calc-logunits-sub'.
22051         (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
22052         (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
22053         (calc-lu-times): Rename from `calc-logunits-mul'.
22054         (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
22055         (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
22056         (calc-lu-divide): Rename from `calc-logunits-div'.
22057         (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
22058         (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
22060         * calc/calc-ext.el (calc-init-extensions): Update the names of the
22061         functions being autoloaded.
22063         * calc/calc.el (calc-lu-power-reference): Rename from
22064         `calc-logunits-power-reference'.
22065         (calc-lu-field-reference): Rename from
22066         `calc-logunits-field-reference'.
22068         * calc/calc-help.el (calc-l-prefix-help):
22069         Mention musical note functions.
22071 2011-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
22073         * minibuffer.el (completion-all-sorted-completions):
22074         Use :completion-cycle-penalty text property if present.
22076 2011-03-16  Ken Manheimer  <ken.manheimer@gmail.com>
22078         * allout.el (allout-yank-processing): Adjust for new rebulleting
22079         regime so bullet being yanked is used without prompting the user
22080         for a choice.
22082 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
22084         * startup.el (command-line): Warn the user that _emacs is deprecated.
22086 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
22088         * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
22089         (delphi-verbose, delphi-comment-face, delphi-string-face)
22090         (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
22091         (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
22092         (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
22093         (delphi-new-comment-line, delphi-font-lock-defaults)
22094         (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
22095         Fix typos in docstrings.
22097 2011-03-15  Ken Manheimer  <ken.manheimer@gmail.com>
22099         * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
22100         Invert the roles of character and string values for INSTEAD, so a
22101         string is used for the more common case of a defaulting prompt.
22103 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22105         * progmodes/ruby-mode.el (ruby-backward-sexp):
22106         * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
22107         * play/gamegrid.el (gamegrid-make-face):
22108         * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
22109         (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
22110         * notifications.el (notifications-notify):
22111         * net/xesam.el (xesam-search-engines):
22112         * net/quickurl.el (quickurl-list-insert):
22113         * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
22115 2011-03-15  Chong Yidong  <cyd@stupidchicken.com>
22117         * startup.el (command-line): Update package subdirectory regexp.
22119 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22121         * allout.el (allout-abbreviate-flattened-numbering)
22122         (allout-mode-deactivate-hook): Fix up obsolescence "date".
22124         * subr.el (read-char-choice): Only show the cursor after the prompt,
22125         not after the answer.
22127 2011-03-15  Kevin Ryde  <user42@zip.com.au>
22129         * help-fns.el (variable-at-point): Skip leading quotes, if any
22130         (bug#8253).
22132 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22134         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
22135         warning message.
22137 2011-03-14  Michael Albinus  <michael.albinus@gmx.de>
22139         * shell.el (shell): When called interactively, offer to change the
22140         shell file name on remote hosts.
22142 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
22144         * net/ldap.el (ldap-search-internal): Add `auth-source-search'
22145         integration for LDAP parameters.  The host, base, user or binddn,
22146         and secret tokens can be specified in a netrc file, for instance.
22147         This is optional because an `auth-source' parameter must be
22148         specified in the search attributes.
22150 2011-03-13  Juanma Barranquero  <lekktu@gmail.com>
22152         * help.el (describe-mode): Link to the mode's definition (bug#8185).
22154 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22156         * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
22157         into declaration.  Remove redundant and harmful binding.
22159 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
22161         * files.el (file-ownership-preserved-p): Pass `integer' as an
22162         explicit 2nd argument to `file-attributes'.  If the file's owner
22163         is the Administrators group on Windows, and the current user is
22164         Administrator, consider that a match.
22166         * server.el (server-ensure-safe-dir): Consider server directory
22167         safe on MS-Windows if its owner is the Administrators group while
22168         the current Emacs user is Administrator.  Use `=' to compare
22169         numerical UIDs, since they could be integers or floats.
22171 2011-03-12  Juanma Barranquero  <lekktu@gmail.com>
22173         * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
22175 2011-03-12  Michael Albinus  <michael.albinus@gmx.de>
22177         Sync with Tramp 2.2.1.
22179         * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
22181         * net/trampver.el: Update release number.
22183 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22185         * progmodes/compile.el (compilation--previous-directory): Fix up
22186         various nil/dead-marker mismatches (bug#8014).
22187         (compilation-directory-properties, compilation-error-properties):
22188         Don't call it at a position past the one we're about to change.
22190         * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
22191         Disable obsolescence warnings in the file that declares it.
22193 2011-03-11  Ken Manheimer  <ken.manheimer@gmail.com>
22195         * allout-widgets.el (allout-widgets-tally):
22196         Initialize allout-widgets-tally as a hash table rather than nil to
22197         prevent mode-line redisplay warnings.  Also, clarify the module
22198         description and fix a comment typo.
22200 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
22202         * help-fns.el (describe-variable): Don't complete keywords.
22203         Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
22205 2011-03-10  Chong Yidong  <cyd@stupidchicken.com>
22207         * emacs-lisp/package.el (package-version-join): Impose a standard
22208         string representation for pre/alpha/beta version lists.
22209         (package-unpack-single): Standardize the directory name by passing
22210         it through package-version-join.
22211         (package-strip-rcs-id): Accept any version string that does not
22212         signal an error in version-to-list.
22214 2011-03-10  Michael Albinus  <michael.albinus@gmx.de>
22216         * simple.el (delete-trailing-whitespace): Return nil for the
22217         benefit of `write-file-functions'.
22219 2011-03-10  Glenn Morris  <rgm@gnu.org>
22221         * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
22223         * vc/vc-git.el (vc-git-program): New option.
22224         (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
22225         (vc-git--call): Use it.
22227         * eshell/esh-util.el (eshell-condition-case): Doc fix.
22229         * cus-edit.el (Custom-newline): If no button at point, look
22230         for a subgroup button at start-of-line.  (Bug#2298)
22232         * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
22234 2011-03-10  Julien Danjou  <julien@danjou.info>
22236         * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
22237         `cursor-type' is nil.
22239 2011-03-09  Jay Belanger  <jay.p.belanger@gmail.com>
22241         * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
22243 2011-03-09  Ken Manheimer  <ken.manheimer@gmail.com>
22245         * allout.el: Change so yank of distinctive-bullet items
22246         preserves the existing header prefix, rebulleting it if necessary,
22247         rather than replacing it.  This is necessary for proper operation
22248         of cooperative addons like allout-widgets.
22249         (allout-make-topic-prefix, allout-rebullet-heading):
22250         Change SOLICIT arg to INSTEAD, and interpret additionally a string
22251         value as alternate bullet to be used, instead of prompting the user
22252         for a bullet character.
22254 2011-03-09  Michael Albinus  <michael.albinus@gmx.de>
22256         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22257         Do not use `tramp-file-name-port', because this returns also
22258         `tramp-default-port'.
22260 2011-03-09  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
22262         * net/rcirc.el (rcirc-handler-001): Remove useless
22263         with-rcirc-process-buffer.
22264         (rcirc-check-auth-status): Swap arguments to string-match.
22266 2011-03-09  Glenn Morris  <rgm@gnu.org>
22268         * shell.el (shell-mode):
22269         Set comint-input-ring-size from HISTSIZE.  (Bug#7889)
22271         * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
22272         Check for GDBHISTFILE, HISTSIZE, etc.  (Bug#7889)
22274 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
22276         * emacs-lisp/package.el (package-refresh-contents)
22277         (package-menu-execute): Use condition-case-no-debug.
22279 2011-03-08  Michael Albinus  <michael.albinus@gmx.de>
22281         * simple.el (shell-command-to-string): Use `process-file'.
22283         * emacs-lisp/package.el (package-tar-file-info): Handle also
22284         remote files.
22286         * emacs-lisp/package-x.el (package-upload-buffer-internal):
22287         Use `equal' for upload base check.
22289 2011-03-08  Arni Magnusson  <arnima@hafro.is>  (tiny change)
22291         * textmodes/texinfo.el (texinfo-environments):
22292         Add deftypecv, deftypeivar, deftypemethod, deftypeop, html.  (Bug#2783)
22294 2011-03-08  Glenn Morris  <rgm@gnu.org>
22296         * cus-start.el (cursor-in-non-selected-windows):
22297         Fix :set quoting oddness.  (Bug#8192)
22299         * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
22300         in some setf expressions.  (Bug#2159)
22302 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
22304         * custom.el (custom-available-themes): Return themes in
22305         alphabetical order.
22307 See ChangeLog.15 for earlier changes.
22309 ;; Local Variables:
22310 ;; coding: utf-8
22311 ;; End:
22313   Copyright (C) 2011-2012  Free Software Foundation, Inc.
22315   This file is part of GNU Emacs.
22317   GNU Emacs is free software: you can redistribute it and/or modify
22318   it under the terms of the GNU General Public License as published by
22319   the Free Software Foundation, either version 3 of the License, or
22320   (at your option) any later version.
22322   GNU Emacs is distributed in the hope that it will be useful,
22323   but WITHOUT ANY WARRANTY; without even the implied warranty of
22324   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22325   GNU General Public License for more details.
22327   You should have received a copy of the GNU General Public License
22328   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.