auto upstream
[emacs.git] / lisp / ChangeLog
blob9ff1ca01c4ab6e2b591d6a94806c02bc11ce5871
1 2013-01-02  Andreas Schwab  <schwab@linux-m68k.org>
3         * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
4         defun.  Don't check for DECL if DOCSTRING isn't a string.
5         (defun): Likewise.
7 2013-01-02  Glenn Morris  <rgm@gnu.org>
9         * eshell/em-cmpl.el (eshell-pcomplete):
10         More thoroughly imitate pcomplete.  (Bug#13293)
12         * files.el (parse-colon-path): Doc fix.  (Bug#12351)
13         Return nil for empty path elements.  (Bug#13296)
15 2013-01-02  Fabián Ezequiel Gallina  <fgallina@cuca>
17         * progmodes/python.el (python-nav-end-of-statement): Rewrite in
18         order to improve efficiency (Based on Daniel Colascione's
19         <dancol@dancol.org> patch).  (Bug#13182)
21 2013-01-02  Glenn Morris  <rgm@gnu.org>
23         * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
25 2013-01-02  Fabián Ezequiel Gallina  <fgallina@cuca>
27         * progmodes/python.el: Support other commands triggering
28         python-indent-line so indentation cycling continues to work.
29         (python-indent-trigger-commands): New defcustom.
30         (python-indent-line): Use it.
32         * progmodes/python.el (python-shell-send-region): Add blank lines
33         for non sent code so backtraces remain correct.
35 2013-01-02  Andreas Schwab  <schwab@linux-m68k.org>
37         * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
38         neither DOCSTRING nor DECL was given.  (Bug#13316)
40 2013-01-02  Michael Albinus  <michael.albinus@gmx.de>
42         * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
43         `error' call.
44         (tramp-do-copy-or-rename-file): Ignore errors when calling
45         `set-file-extended-attributes'.
47         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add
48         handler for `file-acl'.
49         (tramp-smb-handle-file-acl): New defun.
51 2013-01-02  Jay Belanger  <jay.p.belanger@gmail.com>
53         * calc/README: Mention ISO 8601 week-numbering dates.
55 2013-01-01  Martin Rudalics  <rudalics@gmx.at>
57         * view.el (view-mode-enable): New argument run-view-mode-hook.
58         Run view-mode-hook only when it's non-nil (Bug#13315).
59         (view-mode-enter): Call view-mode-enable with run-view-mode-hook
60         argument t.
62 2012-12-31  Jürgen Hötzel  <juergen@archlinux.org>
64         * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
65         (No device connected, invalid device name). (Bug #13299)
67 2012-12-31  Martin Rudalics  <rudalics@gmx.at>
69         * window.el (window-resizable--p): Rename to window-resizable-p.
70         (window-resize-no-error): New function.
72         * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
73         broken in fix from 2012-12-28.
75 2012-12-31  Stefan Monnier  <monnier@iro.umontreal.ca>
77         * subr.el (special-form-p): Don't signal errors on undef aliases.
79 2012-12-31  Jay Belanger  <jay.p.belanger@gmail.com>
81         * calc/calc-forms.el (math-parse-date): Try using
82         `math-parse-iso-date' when it looks like it might be needed.
83         Allow times of 24:00.
84         (math-parse-date-validate, math-parse-iso-date-validate):  Allow times
85         of 24:00.
87 2012-12-30  Glenn Morris  <rgm@gnu.org>
89         * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
90         Remove unnecessary/buggy autoloads (missing interactive).  (Bug#13294)
91         (rmail-summary-displayed, rmail-summary): Declare.
92         (mairix-rmail-display): Just require rmail.
94 2012-12-30  Chong Yidong  <cyd@gnu.org>
96         * emacs-lisp/package.el (package-untar-buffer): Improve integrity
97         check for the tarball contents.
99 2012-12-30  Matt Fidler  <matt.fidler@alcon.com>  (tiny change)
101         * emacs-lisp/package.el (package-untar-buffer): Handle problematic
102         tarfile content listings (Bug#13136).
104 2012-12-30  Mark Lillibridge  <mark.lillibridge@hp.com>
106         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
107         Insert the undecoded text of the message being forwarded.  (Bug#9521)
109 2012-12-30  Michael Albinus  <michael.albinus@gmx.de>
111         * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
112         integers, if they are real numbers.  (Bug#13282)
114         * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
115         Return `t' on success.
117         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
118         Add handler for `set-file-selinux-context'.
120 2012-12-29  Michael Albinus  <michael.albinus@gmx.de>
122         * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
123         (tramp-sh-handle-set-file-acl): Return `t' on success.
125 2012-12-29  Eli Zaretskii  <eliz@gnu.org>
127         * files.el (backup-buffer-copy, basic-save-buffer-2):
128         If set-file-extended-attributes fails, fall back on set-file-modes
129         instead of signaling an error.  (Bug#13298)
130         (basic-save-buffer): Likewise.
132 2012-12-29  Fabián Ezequiel Gallina  <fgallina@cuca>
134         * progmodes/python.el: Support other commands triggering
135         python-indent-line so indentation cycling continues to work.
136         (python-indent-trigger-commands): New defcustom.
137         (python-indent-line): Use it.
139 2012-12-29  Fabián Ezequiel Gallina  <fgallina@cuca>
141         * progmodes/python.el (python-shell-send-region): Add blank lines
142         for non sent code so backtraces remain correct.
144 2012-12-29  Fabián Ezequiel Gallina  <fgallina@cuca>
146         * progmodes/python.el: Remove cl dependency.
147         (python-syntax-count-quotes): Replace incf call.
148         (python-fill-string): Replace setf call.
150 2012-12-29  Damien Cassou  <damien.cassou@gmail.com>
152         * info.el (info-other-window): New arg, for consistency with info.
154 2012-12-28  Martin Rudalics  <rudalics@gmx.at>
156         * mail/rmail.el (rmail-maybe-display-summary):
157         Rewrite (Bug#13066).
159 2012-12-28  Andreas Schwab  <schwab@linux-m68k.org>
161         * epg.el (epg--start): Modify process-environment locally.
163 2012-12-28  Daiki Ueno  <ueno@gnu.org>
165         * epg.el: Support pinentry-curses.
166         Suggested by Werner Koch in
167         <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
168         (epg-agent-file, epg-agent-mtime): New variable.
169         (epg--start): Record the modified time of gpg-agent socket file,
170         to restore Emacs frame after pinentry-curses termination.
171         (epg-wait-for-completion): Restore Emacs frame here.
173 2012-12-27  Juri Linkov  <juri@jurta.org>
175         * info.el (Info-file-completions): New variable.
176         (Info-read-node-name-1): Complete node names in the Info file
177         when a file name is given.  Call `Info-build-node-completions'
178         with a file name.
179         (Info-build-node-completions): Add new arg `file'.  When it is
180         non-nil, visit it in a temporary buffer and cache its completions in
181         `Info-current-file-completions'.  Move most of the function body to
182         `Info-build-node-completions-1'.
183         (Info-build-node-completions-1): New function with the body from
184         `Info-build-node-completions'.  (Bug#12456)
186 2012-12-27  Juri Linkov  <juri@jurta.org>
188         * frame.el (frame-maximization-style): Remove user option.
189         (cycle-frame-maximized): Remove function.
190         (toggle-frame-maximized): Rewrite and bind to M-<f10>.
191         (toggle-frame-fullscreen): New command bound to <f11> instead of
192         `toggle-frame-maximized'.
193         http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
195 2012-12-27  Michael Albinus  <michael.albinus@gmx.de>
197         * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
199         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
200         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
201         * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
202         for `file-accessible-directory-p'.  (Bug#13275)
204 2012-12-27  Sam Steingold  <sds@gnu.org>
206         * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
207         continuations, see <http://stackoverflow.com/questions/3582436>.
209 2012-12-27  Dmitry Gutov  <dgutov@yandex.ru>
211         * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
212         "module" and "def" to have indentation before them.
213         Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
215         * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
217 2012-12-27  Alan Mackenzie  <acm@muc.de>
219         Speed up fontification where there's large brace blocks.
220         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
221         to a call of c-beginning-of-decl-1.
223 2012-12-27  Vitalie Spinu  <spinuvit@gmail.com>  (tiny change)
225         * comint.el (comint-adjust-window-point): New function.
226         (comint-postoutput-scroll-to-bottom):
227         Call comint-adjust-window-point (Bug#13248).
229 2012-12-26  Dmitry Gutov  <dgutov@yandex.ru>
231         * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
232         Rakefile regexp.
233         (auto-mode-alist): Associate .gemspec files with ruby-mode
234         (https://bugs.ruby-lang.org/issues/5453).
236 2012-12-26  Jürgen Hötzel  <juergen@archlinux.org>
238         * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
239         Suppress coloring, if possible (required for BusyBox based systems like
240         CynagenMod).
241         (tramp-adb-handle-file-attributes)
242         (tramp-adb-handle-insert-directory)
243         (tramp-adb-handle-file-name-all-completions): Use it.
244         (tramp-adb-get-toolbox): New defun.  Check for remote shell
245         implementation (BusyBox or Toolbox).
247 2012-12-24  Constantin Kulikov <zxnotdead@gmail.com>  (tiny change)
249         * startup.el (initial-buffer-choice): Allow function as value
250         (Bug#13251).
251         (command-line-1): Handle case where initial-buffer-choice
252         specifies a function.
253         * server.el (server-execute): Handle case where
254         initial-buffer-choice specifies a function.
256 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
258         * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
259         its own function.
260         (smtpmail-try-auth-methods): Forget the user name/password if the
261         login is unsuccessful (bug#12424).
263 2012-12-22  Michael Albinus  <michael.albinus@gmx.de>
265         * notifications.el (notifications-notify): Protect body with
266         `with-demoted-errors'.
268         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
269         Check properties of remote device.  Restart connection, if there is a
270         change.
272 2012-12-21  Chong Yidong  <cyd@gnu.org>
274         * sort.el (sort-subr): Doc fix (Bug#13056).
276 2012-12-21  Bastien Guerry  <bzg@gnu.org>
278         * progmodes/etags.el (tags-search): Fix typo.  Bug #13232.
280 2012-12-21  Michael Albinus  <michael.albinus@gmx.de>
282         * simple.el (process-file): Overwrite stderr file, if exists.
284 2012-12-21  Daiki Ueno  <ueno@gnu.org>
286         * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
287         (epg-error): Set `error-message' property.
289 2012-12-21  Chong Yidong  <cyd@gnu.org>
291         * international/mule-cmds.el (read-char-by-name): Signal an error
292         if the user does not supply a valid character (Bug#13177).
294         * simple.el (transpose-subr-1): Preserve marker positions by
295         changing the insertion sequence (Bug#13122).
297 2012-12-21  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
299         * simple.el (kill-region): Deactivate mark even for empty regions
300         (Bug#13169).
302 2012-12-21  Chong Yidong  <cyd@gnu.org>
304         * help-fns.el (describe-variable): Make sure we get the right
305         buffer name (Bug#13105).  Suggested by Kelly Dean.
307 2012-12-20  Michael R. Mauger  <mmaug@yahoo.com>
309         * comint.el (comint-redirect-previous-input-string): New variable.
310         (comint-redirect-setup, comint-redirect-cleanup)
311         (comint-redirect-preoutput-filter): Use it.  Fixes redirection bug.
312         (comint-redirect-preoutput-filter): Fix verbose message.
314 2012-12-20  Michael Albinus  <michael.albinus@gmx.de>
316         * progmodes/grep.el (rgrep): Escape command line.  Sometimes, it
317         is too long for Tramp.  See discussion in
318         <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
320         * progmodes/compile.el (compilation-start): Remove line escape
321         template.
323 2012-12-20  Dmitry Antipov  <dmantipov@yandex.ru>
325         * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
326         Adjust comment.
328 2012-12-19  Jonas Bernoulli  <jonas@bernoul.li>
330         * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
331         following non-comment text (bug#13207).
332         (lm-header-multiline): Continuation lines need to be indented more than
333         the first line.
334         (lm-homepage): New function.
335         (lm-with-file): Don't be confused if narrowing is in effect.
337         * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
338         very beginning of a hunk (e.g. killing the first line).
340 2012-12-19  Michael Albinus  <michael.albinus@gmx.de>
342         * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
343         and text properties from returned ACL string.
344         (tramp-sh-handle-set-file-acl): Do not use additional parentheses
345         for "setfacl" command.
347 2012-12-18  Michael Albinus  <michael.albinus@gmx.de>
349         * net/tramp.el (tramp-error-with-buffer): Give a hint to use
350         `tramp-cleanup-this-connection', when the process has died.
351         (Bug#13151)
353 2012-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
355         * icomplete.el (icomplete-completions): Also use … to truncate prefix.
357 2012-12-17  Kevin Ryde  <user42@zip.com.au>
359         * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
361 2012-12-17  Michael Albinus  <michael.albinus@gmx.de>
363         Add support for preserving ACL entries of files.
365         * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
366         `set-file-acl' handlers.
368         * net/tramp-adb.el (tramp-adb-handle-copy-file):
369         Handle PRESERVE-EXTENDED-ATTRIBUTES.
371         * net/tramp-compat.el (tramp-compat-copy-file):
372         Handle PRESERVE-EXTENDED-ATTRIBUTES.
374         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
375         Add `file-acl' and `set-file-acl' handlers.
376         (tramp-gvfs-handle-copy-file):
377         Handle PRESERVE-EXTENDED-ATTRIBUTES.
378         (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
379         New defuns.
381         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
382         Add `file-acl' and `set-file-acl' handlers.
383         (tramp-remote-acl-p, tramp-sh-handle-file-acl)
384         (tramp-sh-handle-set-file-acl): New defuns.
385         (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
386         Handle PRESERVE-EXTENDED-ATTRIBUTES.
388         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
389         Add `file-acl' and `set-file-acl' handlers.
390         (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
392 2012-12-17  Kelly Dean  <kellydeanch@yahoo.com> (tiny change)
394         * help-macro.el (make-help-screen): Instead of switch-to-buffer
395         use pop-to-buffer with NORECORD argument t.  As buffer name, use
396         *Metahelp* with a leading space (Bug#13190).
398 2012-12-16  Romain Francoise  <romain@orebokech.com>
400         * files.el (file-extended-attributes)
401         (set-file-extended-attributes): New functions.
402         (backup-buffer): Use them to handle both SELinux context and ACL
403         entries.
404         (backup-buffer-copy): Work with an alist of extended attributes,
405         rather than an SELinux context.
406         (basic-save-buffer-2): Ditto.
408 2012-12-16  Timo Myyrä  <timo.myyra@gmail.com>
410         * battery.el (battery-bsd-apm): New function.
412 2012-12-16  Jay Belanger  <jay.p.belanger@gmail.com>
414         * calc/calc.el (calc-standard-date-formats): Adjust one of the
415         standard date formats.
417 2012-12-15  Juri Linkov  <juri@jurta.org>
419         * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
420         `isearch-insert-char-by-name'.
421         (with-isearch-suspended): New defmacro with body mostly from
422         `isearch-edit-string' except the part that sets
423         `isearch-new-string' and `isearch-new-message'.
424         (isearch-edit-string): Use new macro `with-isearch-suspended' with
425         body that sets `isearch-new-string' and `isearch-new-message'.
426         (isearch-insert-char-by-name): New command.
427         * international/mule-cmds.el (read-char-by-name): Let-bind
428         `enable-recursive-minibuffers' to t.
429         http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
431 2012-12-15  Juri Linkov  <juri@jurta.org>
433         * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
434         (Bug#13175)
436 2012-12-15  Christopher Schmidt  <christopher@ch.ristopher.com>
438         * dired-x.el (dired-guess-shell-command): Put colon at the end of
439         the prompt.  (Bug#13045)
441 2012-12-14  Glenn Morris  <rgm@gnu.org>
443         * emacs-lisp/macroexp.el (macroexp--warn-and-return):
444         Try to include filename in non-bytecomp warning.  (Bug#13132)
446 2012-12-14  Paul Eggert  <eggert@cs.ucla.edu>
448         Fix permissions bugs with setgid directories etc. (Bug#13125)
449         * files.el (backup-buffer): Don't rely on 9th output of
450         file-attributes, as it's now a placeholder.  Instead, use the new
451         optional arg of file-ownership-preserved-p.
452         (file-ownership-preserved-p): New optional arg GROUP.
453         Fix mishandling of setuid directories that would cause this
454         function to return t when it should have returned nil.
455         Document what happens if the file does not exist, and when
456         it's not known whether the ownership will be preserved.
457         * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
458         Likewise.
459         (tramp-get-local-gid): Use group-gid for integer, as that's
460         faster and more reliable.
462 2012-12-14  Julien Danjou  <julien@danjou.info>
464         * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
465         Update keywords list, data type and PL/pgSQL.
467 2012-12-14  Dave Abrahams  <dave@boostpro.com>
469         * vc/ediff-util.el (ediff-buffer-type): New function.
470         (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
471         rather than taking it as as argument.
472         (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
474 2012-12-14  Ryan Crum  <ryan.crum@eleostech.com>
476         * json.el: Add pretty-print option (bug#12634).
477         (json-encoding-separator, json-encoding-default-indentation)
478         (json--encoding-current-indentation, json-encoding-pretty-print)
479         (json-encoding-lisp-style-closings): New vars.
480         (json--with-indentation): New macro.
481         (json-encode-hash-table, json-encode-alist, json-encode-plist)
482         (json-encode-array): Use it to obey json-encoding-pretty-print.
483         (json-pretty-print-buffer, json-pretty-print): New commands.
485 2012-12-14  Dmitry Gutov  <dgutov@yandex.ru>
487         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
488         Extract `ruby-syntax-propertize-expansions'.
489         (ruby-syntax-propertize-expansions): Only change syntax on
490         certain string delimiters, to punctuation.  This way the common
491         functions like forward-word and thing-at-point still work.
492         (ruby-match-expression-expansion): Improve readability.
493         (ruby-block-contains-point): New function.
494         (ruby-add-log-current-method): Handle several edge cases.
496 2012-12-13  Juanma Barranquero  <lekktu@gmail.com>
498         * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
499         unload-feature finishes even when aborting an ongoing edebug session.
500         Also, do not worry about edebug-mode, unload-feature takes care of it.
502 2012-12-13  Andreas Schwab  <schwab@suse.de>
504         * net/tls.el (tls-program): Update customize type.
506 2012-12-13  Juanma Barranquero  <lekktu@gmail.com>
508         * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
509         (edebug-setup-hook, cl-read-load-hooks): Use it.
510         (edebug-unload-function): New function.  (Bug#13163)
512 2012-12-13  Michael Albinus  <michael.albinus@gmx.de>
514         * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
515         Otherwise, there could be errors in autoloading.  (Bug#13151)
517 2012-12-13  Jürgen Hötzel  <juergen@archlinux.org>
519         * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
520         sequences.
522 2012-12-13  Alan Mackenzie  <acm@muc.de>
524         Make CC Mode not hang when _some_ lines end in CRLF.  Bug #11841.
525         * progmodes/cc-engine.el (c-backward-comments): Add code to work
526         around `forward-comment' not recognizing ^M as whitespace.
528 2012-12-13  Fabián Ezequiel Gallina  <fgallina@cuca>
530         * progmodes/python.el (python-skeleton-class)
531         (python-skeleton-def): Do not add space after defun name.
533 2012-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
535         * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
536         (cl--symbol-function): Remove (now that funbound is like nil).
538 2012-12-12  Glenn Morris  <rgm@gnu.org>
540         * button.el (button--area-button-p): Fix typo.
542 2012-12-12  Sam Steingold  <sds@gnu.org>
544         * frame.el (frame-maximization-style): New user option.
545         (toggle-frame-maximized): Toggle frame maximization according to
546         `frame-maximization-style', bound to <f11>.
547         (cycle-frame-maximized): Cycle between all maximization styles and
548         non-maximized frame, bound to shift-<f11>.
550 2012-12-12  David Cadé  <codename68@gmail.com>
552         * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
554 2012-12-12  Jonas Bernoulli  <jonas@bernoul.li>
556         * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
557         (eieio-override-prin1): Don't quote kewords and booleans.
558         (object-write) <eieio-default-superclass>: Don't put closing parens
559         on new line, avoid needless empty lines, align values that are objects
560         with the slot keyword (instead of beginning on the same line).
561         (eieio-list-prin1): Align value with slot keyword; increase
562         eieio-print-depth before printing members of the list.
564 2012-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
566         * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
567         a display text-property.
568         (report-emacs-bug-hook): Don't bother deleting it any more.
570         * hilit-chg.el (highlight-save-buffer-state): Delete.
571         Use with-silent-modifications instead.
572         (hilit-chg-set-face-on-change): Only fixup the text that's modified.
574         * button.el: Handle buttons in display text-properties.
575         (button--area-button-p, button--area-button-string):
576         Use (STRING . STRING-POS) representation instead of just STRING.
578 2012-12-11  Eli Zaretskii  <eliz@gnu.org>
580         * makefile.w32-in (compile4-SH): Fix a typo that caused term
581         subdirectory be skipped.
583 2012-12-11  Glenn Morris  <rgm@gnu.org>
585         * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
587         * progmodes/f90.el (f90-line-continued, f90-indent-region):
588         Treat preprocessor lines embedded in continuations like comments.
589         (f90-indent-line): Special-case preprocessor lines.  (Bug#13138)
591 2012-12-11  Jay Belanger  <jay.p.belanger@gmail.com>
593         * calc/calc.el (calc-standard-date-formats):  Add more date
594         formats.
595         * calc/calc-forms.el (math-parse-iso-date): New function.
596         (math-parse-date): Use `math-parse-iso-date' when appropriate.
597         (math-parse-iso-date-validate): Add extra error checking.
598         (calc-date-notation): Add ability to access new date formats.
600 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
602         * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
603         font-lock as well as when there's no text-property.
605 2012-12-10  Jambunathan K  <kjambunathan@gmail.com>
607         * hi-lock.el: Refine the choice of default face.
608         (hi-lock-keyword->face): New function.  Use it wherever we used
609         cadadadr instead.
610         (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
611         (hi-lock--last-face): Remove var.
612         (hi-lock--unused-faces): New var to replace it.
613         (hi-lock-read-face-name): Use/maintain it.
614         (hi-lock-unface-buffer): Maintain it.  Fix error for the C-u case.
615         (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
616         if it has another face.
618 2012-12-10  Eli Zaretskii  <eliz@gnu.org>
620         * subr.el (w32notify-handle-event): New function.
621         (inotify-handle-event): Doc fix.
623 2012-12-10  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
625         * subr.el (inotify-event-p, inotify-handle-event): New functions.
627 2012-12-10  Dani Moncayo <dmoncayo@gmail.com>
629         * simple.el (just-one-space): Doc fix.
631 2012-12-10  Eli Zaretskii  <eliz@gnu.org>
633         * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
635 2012-12-10  Le Wang  <l26wang@gmail.com>
637         * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
638         narrowed buffer (bug#12361).
640 2012-12-10  Juanma Barranquero  <lekktu@gmail.com>
642         * vc/vc-hooks.el (vc-state): Doc fix.
644 2012-12-10  Glenn Morris  <rgm@gnu.org>
646         * mail/rmail.el (rmail-maybe-display-summary):
647         Preserve buffer, in case select-window changes it.  (Bug#13066)
649 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
651         * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
652         cl-load-hook where they belong.
654 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
656         * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
658 2012-12-09  Eli Zaretskii  <eliz@gnu.org>
660         Parallelize byte compilation on MS-Windows.
661         * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
662         (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
663         (WINS_BASIC): Define as concatenation of the above.
664         (compile): Subdivide into 4 separate and independent jobs that can
665         be run in parallel.
666         (compile0-CMD, compile0-SH): New targets for compiling
667         COMPILE_FIRST files, which are prerequisites for the rest of the
668         byte-compilation.
669         (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
670         New targets for parallel compilation with cmd.exe.
671         (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
672         compiling under a Unixy shell.
674 2012-12-09  Chong Yidong  <cyd@gnu.org>
676         * simple.el (set-mark-default-inactive): Delete this
677         accidentally-introduced option.
678         (set-mark-command, exchange-point-and-mark): Remove calls.
680 2012-12-09  Glenn Morris  <rgm@gnu.org>
682         * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
683         Respect a defcustom's :set function, if appropriate.  (Bug#109)
684         (eval-defun): Doc fix.
686 2012-12-08  Juri Linkov  <juri@jurta.org>
688         * info.el (Info-copy-current-node-name, Info-breadcrumbs)
689         (Info-fontify-node, Info-bookmark-make-record): Remove the
690         file extension from Info-current-file (Bug#13016).
692 2012-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
694         * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
695         point, still provide some default.
696         (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
697         names, since we don't use it right now.  Actually return the list.
698         (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
700 2012-12-07  Chong Yidong  <cyd@gnu.org>
702         * novice.el (disabled-command-function): Remove a spurious help
703         xref (Bug#13043).  Suggested by Kelly Dean.
705         * subr.el (text-clone-maintain): Fix clone overlay deletion when a
706         syntax is specified (Bug#13025).
708         * info.el (Info-set-mode-line): Remove the file extension from
709         Info-current-file if there is one (Bug#13016).
711 2012-12-07  Glenn Morris  <rgm@gnu.org>
713         * mail/rmail.el (rmail-mime-decoded): New permanent local.
714         (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
715         * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
716         and rmail-mime-decoded.  (Bug#9841)
718         * mail/unrmail.el (unrmail-mbox-format): New option.  (Bug#6574)
719         (batch-unrmail, unrmail): Doc fixes.
720         (unrmail): Respect unrmail-mbox-format.
721         * mail/rmail.el (rmail-mbox-format): New option.
722         (rmail-show-message-1): Respect rmail-mbox-format.
724 2012-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
726         * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
728 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
730         Further cleanup of the "cl-" namespace.  Fit CL in 80 columns.
731         * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
732         (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
733         (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
734         (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
735         (cl-progv): Don't rely on dynamic scoping to find the body.
736         * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
737         (cl--proclaims-deferred): Rename from the "cl-" prefix.
738         (cl-declaim): Use backquotes.
739         * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
740         Use "cl--" prefix for the object's tag.
742         * ses.el: Use advice-add/remove.
743         (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
744         (copy-region-as-kill, yank): Use advice-add.
745         (ses-unload-function): Use advice-remove.
747 2012-12-06  Jonas Bernoulli  <jonas@bernoul.li>
749         * button.el: Make them work in header-lines (bug#12817).
750         (button-map): Add bindings for header-line and mode-line use.
751         (button-get, button-put, button-label): `button' may now be a string.
752         (button-activate): Don't make it a defsubst.
753         (button--area-button-p, button--area-button-string): New functions.
754         (make-text-button): Fix the return value when `beg' was a string.
755         (push-button): Handle the mode-line case.
757 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
759         * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
760         (sql-signum): Remove.  Use `cl-signum' instead.
761         (sql-read-passwd): Remove; use read-passwd instread.
762         (sql-get-login-ext): Use read-string.
763         (sql-get-login): Use dolist and pcase.
764         (sql--completion-table): Rename from sql-try-completion.
765         Use complete-with-action.
766         (sql-mode): Don't change abbrev-all-caps globally.
767         (sql-connect): Don't rely on dynamic scoping for `new-name'.
768         (sql-postgres-completion-object): Initialize vars in their `let'.
769         (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
770         (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
771         (sql-comint-interbase): Use a single append, without setq.
772         (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
774         * hi-lock.el: Rework the default face and the serialize regexp code.
775         (hi-lock--auto-select-face-defaults): Remove.
776         (hi-lock-string-serialize-serial): Remove.
777         (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
778         make weak.
779         (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
780         equal string.
781         (hi-lock-set-pattern): Adjust accordingly.
782         (hi-lock--regexps-at-point): Simplify accordingly.
783         (hi-lock--auto-select-face-defaults): Remove.
784         (hi-lock--last-face): New var to replace it.
785         (hi-lock-read-face-name): Rewrite (bug#11095).
786         (hi-lock-unface-buffer): Arrange for the face to be the next default.
788 2012-12-06  Michael Albinus  <michael.albinus@gmx.de>
790         * net/tramp.el (tramp-replace-environment-variables):
791         Hide compiler warning.
792         (tramp-file-name-for-operation): Remove `executable-find',
793         `start-process', `call-process' and `call-process-region'.
795         * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
797         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
798         compatibility.
800         * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
802 2012-12-06  Chong Yidong  <cyd@gnu.org>
804         * ffap.el (ffap-replace-file-component): Fix typo.
806 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
808         * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
809         fix open-paren-like token test (bug#12785).
811 2012-12-06  Glenn Morris  <rgm@gnu.org>
813         * mail/rmailsum.el (rmail-new-summary): Tweak for
814         rmail-maybe-display-summary changing buffer.  (Bug#13066)
816 2012-12-06  Juri Linkov  <juri@jurta.org>
818         * info.el (Info-fontify-node): Don't hide the last newline.
819         (Bug#12272)
821 2012-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
823         * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
824         so as to enable message-read-from-minibuffer to expand mail aliases.
826 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
828         * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
829         the `intangible' property.
830         Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
832 2012-12-05  Deniz Dogan  <deniz@dogan.se>
834         * net/rcirc.el (rcirc-urls): Update documentation.
835         (rcirc-condition-filter): New function.
836         (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
837         and exclude consecutive duplicate URLs (Bug#6082).
839 2012-12-05  Michael Albinus  <michael.albinus@gmx.de>
841         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
842         Check return code of copy command.
844         * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
845         Use group `tramp'.  Add version.
847 2012-12-05  Chong Yidong  <cyd@gnu.org>
849         * ffap.el (ffap-url-regexp): Don't require matching at front of
850         string (Bug#4952).
851         (ffap-url-p): If only a substring matches, return that.
852         (ffap-url-at-point): Use the return value of ffap-url-p.
853         (ffap-read-file-or-url, ffap-read-file-or-url-internal)
854         (find-file-at-point, dired-at-point, dired-at-point-prompter)
855         (ffap-guess-file-name-at-point): Likewise.
856         (ffap-replace-file-component): Fix typo.
858         * info.el (info-display-manual): Add existing Info buffers, whose
859         files may not be in Info-directory-list, to the completion.
860         (info--manual-names): New helper function.
862 2012-12-05  Glenn Morris  <rgm@gnu.org>
864         * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
865         New functions, for detecting and resolving conflicts.  (Bug#10709)
867 2012-12-04  Jambunathan K  <kjambunathan@gmail.com>
869         * hi-lock.el (hi-lock-auto-select-face): New user variable.
870         (hi-lock-auto-select-face-defaults): New buffer local variable.
871         (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
872         (hi-lock-unface-buffer): Prompt user with useful defaults.
873         With prefix arg, unhighlight all hi-lock patterns in buffer.
875 2012-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
877         * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
879 2012-12-04  Michael Albinus  <michael.albinus@gmx.de>
881         * Makefile.in (TRAMP_SRC):
882         * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
884 2012-12-04  Juergen Hoetzel  <juergen@archlinux.org>
886         * net/tramp-adb.el: New package.
888 2012-12-04  Chong Yidong  <cyd@gnu.org>
890         * terminal.el: Move to obsolete/.
892         * longlines.el: Move to obsolete/.
894         * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
895         Remove code referring to longlines mode.
897 2012-12-03  Juri Linkov  <juri@jurta.org>
899         * sort.el (delete-duplicate-lines): New command.  (Bug#13032)
901 2012-12-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
903         * textmodes/ispell.el (ispell-init-process)
904         (ispell-start-process, ispell-internal-change-dictionary):
905         Make sure personal dictionary name is expanded after initial
906         `default-directory' value. Use expanded strings for
907         keep/restart checks and for value (Bug#13019).
909 2012-12-03  Jay Belanger  <jay.p.belanger@gmail.com>
911         * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
913 2012-12-03  Leo Liu  <sdl.web@gmail.com>
915         * files.el (dir-locals-read-from-file): Check file non-empty
916         before reading.  (Bug#13038)
918 2012-12-03  Glenn Morris  <rgm@gnu.org>
920         * jka-cmpr-hook.el (jka-compr-get-compression-info):
921         Remove any version extension before checking filename.  (Bug#13006)
922         (jka-compr-compression-info-list): Belated :version bump.
924 2012-12-03  Chong Yidong  <cyd@gnu.org>
926         * simple.el (transient-mark-mode): Doc fix (Bug#11523).
928         * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
929         (buffer-menu): Doc fix (Bug#12294).
931 2012-12-03  Roland Winkler  <winkler@gnu.org>
933         * calendar/diary-lib.el (diary-header-line-format): Use keybinding
934         of diary-show-all-entries in the diary buffer (Bug#12994).
936 2012-12-03  Michael Albinus  <michael.albinus@gmx.de>
938         * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
939         "<STDIN>".  This is binary safe.
941 2012-12-03  Jay Belanger  <jay.p.belanger@gmail.com>
943         * calc/calc-forms.el (math-absolute-from-iso-dt)
944         (math-date-to-iso-dt, math-parse-iso-date-validate)
945         (math-iso-dt-to-date): New functions.
946         (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
947         (math-fd-isoweekday): New variables.
948         (calc-date-notation, math-parse-standard-date, math-format-date)
949         (math-format-date-part): Add support for more formatting codes.
951 2012-12-02  Dmitry Gutov  <dgutov@yandex.ru>
953         * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
954         current buffer's file name when called interactively (Bug#12488).
956 2012-12-02  Juri Linkov  <juri@jurta.org>
958         * info.el (info-display-manual): Don't clobber an existing Info
959         buffer (Bug#10770).  Add completion (Bug#10771).
961 2012-12-01  Yuya Nishihara  <yuya@tcha.org>  (tiny change)
963         * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
964         before using it for comparison (Bug#5297).
966 2012-12-01  Jari Aalto  <jari.aalto@cante.net>
968         * textmodes/css-mode.el (css-current-defun-name): New function.
969         (css-mode): Use it.
971         * textmodes/sgml-mode.el (html-current-defun-name): New function.
972         (html-mode): Use it.
974 2012-12-01  Chong Yidong  <cyd@gnu.org>
976         Modularize add-log-current-defun (Bug#2224).
977         Suggested by Jari Aalto.
979         * vc/add-log.el (add-log-current-defun-function): Doc fix.
980         (add-log-current-defun): Move mode-specific code to other files.
981         (add-log-lisp-like-modes, add-log-c-like-modes)
982         (add-log-tex-like-modes): Variables deleted.
984         * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
985         (lisp-mode-variables): Use it.
987         * progmodes/cc-mode.el (c-common-init):
988         * progmodes/cperl-mode.el (cperl-mode): Set a value for
989         add-log-current-defun-function.
991         * progmodes/m4-mode.el (m4-current-defun-name): New function.
992         (m4-mode): Use it.
994         * progmodes/perl-mode.el (perl-current-defun-name): New.
995         (perl-mode): Use it.
997         * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
998         Use lisp-current-defun-name.
1000         * textmodes/tex-mode.el (tex-current-defun-name): New.
1001         (tex-common-initialization): Use it.
1003         * textmodes/texinfo.el (texinfo-current-defun-name): New.
1004         (texinfo-mode): Use it.
1006 2012-12-01  Chong Yidong  <cyd@gnu.org>
1008         * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
1009         * progmodes/autoconf.el (autoconf-mode):
1010         * progmodes/js.el (js-mode):
1011         * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
1012         (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
1013         * progmodes/perl-mode.el (perl-mode):
1014         * progmodes/sh-script.el (sh-mode, sh-set-shell):
1015         * textmodes/css-mode.el (css-mode):
1016         * textmodes/sgml-mode.el (html-mode, sgml-mode)
1017         (sgml-tags-invisible, sgml-guess-indent):
1018         * textmodes/tex-mode.el (tex-common-initialization)
1019         (latex-complete-bibtex-keys, tex-shell, tex-main-file)
1020         (doctex-mode, plain-tex-mode, latex-mode):
1021         * textmodes/texinfo.el (texinfo-mode): Use setq-local.
1023 2012-12-01  Kirk Kelsey  <kirk.kelsey@0x4b.net>
1025         * vc/vc-hg.el (vc-hg-next-revision):
1026         Ensure use of default "tip" output format.  (Bug#6968)
1028 2012-12-01  Kim F. Storm  <storm@cua.dk>
1030         * startup.el (fancy-startup-tail): Add a clickable link
1031         (Bug#2176).
1033 2012-12-01  Chong Yidong  <cyd@gnu.org>
1035         * startup.el (fancy-startup-tail): Improve the message about
1036         auto-save files (Bug#2176).
1038         * files.el (recover-session): Improve the descriptive message, and
1039         use substitute-command-keys.
1041 2012-12-01  Glenn Morris  <rgm@gnu.org>
1043         * ido.el (ido-file-internal):
1044         Handle other-window, other-frame for dired.  (Bug#13036)
1046 2012-11-30  Glenn Morris  <rgm@gnu.org>
1048         * icomplete.el (icomplete-separator): Fix :version.
1050 2012-11-30  Chong Yidong  <cyd@gnu.org>
1052         * shell.el (shell): For C-u M-x shell, use an inactive shell
1053         buffer as the default (Bug#1975).
1054         (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
1055         (shell-mode): Use them to reapply ansi colorization if Shell mode
1056         is re-enabled.
1058 2012-11-30  Yuriy Vostrikov  <delamonpansie@gmail.com>  (tiny change)
1060         * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
1062 2012-11-30  Samuel Bronson  <naesten@gmail.com>
1064         * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
1065         flag to xargs, for compatibility with BSD xargs (Bug#11703).
1067 2012-11-30  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
1069         * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
1070         by move-to-column (Bug#3234).
1072 2012-11-30  Chong Yidong  <cyd@gnu.org>
1074         * longlines.el (longlines-wrap-line, longlines-encode-region):
1075         Preserve text properties (Bug#1425).
1077 2012-11-30  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
1079         * vc/vc.el (vc-register): Allow registering a file which is
1080         already registered with a different backend (Bug#10589).
1082 2012-11-29  Jambunathan K  <kjambunathan@gmail.com>
1083             Stefan Monnier  <monnier@iro.umontreal.ca>
1085         * icomplete.el: Change separator; add ido-style commands.
1086         (icomplete-show-key-bindings): Remove custom var.
1087         (icomplete-get-keys): Remove function.
1088         (icomplete-forward-completions, icomplete-backward-completions):
1089         New commands.
1090         (icomplete-minibuffer-map): New var.
1091         (icomplete-minibuffer-setup): Use it.
1092         (icomplete-exhibit): Don't delay if the list of completions is known.
1093         (icomplete-separator): New custom.
1094         (icomplete-completions): Use it.
1095         * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
1096         (minibuffer-force-complete-and-exit): New command.
1097         (minibuffer--complete-and-exit): New function extracted from
1098         minibuffer-complete-and-exit.
1099         (minibuffer-complete-and-exit): Use it.
1101         * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
1102         error message when the file doesn't exist (bug#12974).
1104 2012-11-29  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
1106         * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
1108 2012-11-29  Glenn Morris  <rgm@gnu.org>
1110         * files.el (hack-dir-local-variables): Warn if try to set
1111         coding via dir-locals, since it doesn't work.  (Bug#7169)
1113         Add desktop support for restoring vc-dir buffers.  (Bug#10606)
1114         * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
1115         Set buffer-local value of desktop-save-buffer.
1116         (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
1117         New functions.
1118         (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
1119         * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
1121         * files.el (inhibit-local-variables-ignore-case): New.  (Bug#10610)
1122         (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
1123         Doc fix.
1124         (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
1125         Doc fixes.
1127 2012-11-28  Jay Belanger  <jay.p.belanger@gmail.com>
1129         * calc/calc-forms.el (calc-date-notation): Fix regexp
1130         used to find time codes.  Fix symbol for seconds.
1132 2012-11-27  Glenn Morris  <rgm@gnu.org>
1134         * emacs-lisp/derived.el (derived-mode-make-docstring):
1135         Don't mention "abbrev" or "syntax" if nil.  (Bug#11277)
1137 2012-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1139         * textmodes/table.el (table-insert): Don't use `symbol-name' on
1140         lexically scoped variables (bug#13005).
1142 2012-11-27  Glenn Morris  <rgm@gnu.org>
1144         * vc/vc-hooks.el (vc-mistrust-permissions):
1145         Default to t, to avoid data-loss.  (Bug#11490)
1147 2012-11-27  Fabián Ezequiel Gallina  <fgallina@cuca>
1149         * progmodes/python.el (python-indent-guess-indent-offset):
1150         If indentation is guessed make python-indent-offset buffer-local.
1152         Fix Imenu regression.
1153         * progmodes/python.el (python-nav-beginning-of-defun):
1154         Fix forward movement when statement(s) separates point from defun.
1155         (python-imenu-prev-index-position): New function.
1157 2012-11-27  Eli Zaretskii  <eliz@gnu.org>
1159         * subr.el (buffer-file-type): Declare with defvar-local.  Doc fix.
1161         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
1162         Don't set buffer-file-type.  Return nil.  (Bug#12989)
1164 2012-11-27  Glenn Morris  <rgm@gnu.org>
1166         * hippie-exp.el (hippie-expand-try-functions-list):
1167         Re-autoload it.  (Bug#12982)
1169 2012-11-27  Eli Zaretskii  <eliz@gnu.org>
1171         * descr-text.el (describe-char-padded-string):
1172         Call internal-char-font only on GUI frames.  (Bug#11964)
1174 2012-11-27  Andreas Schwab  <schwab@linux-m68k.org>
1176         * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
1177         and obsoletion message.
1179 2012-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1181         * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
1182         the constructs to keep outside of the `cl-block' (bug#12977).
1184 2012-11-27  Chong Yidong  <cyd@gnu.org>
1186         * mouse.el (mouse-drag-line): Even if the line is not draggable,
1187         keep reading until we get the up-event anyway, in order to process
1188         the up-event for mouse-1-click-follows-link (Bug#12971).
1190 2012-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1192         * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
1193         base function is not yet defined (bug#12965).
1194         (ad-activate-advised-definition): Use ad-compile-function.
1195         (ad-activate): Use cond.
1197 2012-11-25  Leo Liu  <sdl.web@gmail.com>
1199         * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
1200         (Bug#12979)
1202 2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
1204         * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
1205         reftex-section-info-function in order to be compatible with
1206         Texinfo integration.
1208         * textmodes/reftex.el (reftex-section-pre-regexp)
1209         (reftex-section-post-regexp, reftex-section-info-function):
1210         New variable.
1211         (reftex-compile-variables): Use variables reftex-section-pre-regexp,
1212         reftex-section-post-regexp, and reftex-section-info-function in order
1213         to be compatible with Texinfo integration.
1215         * textmodes/reftex-toc.el (reftex-toc-promote-action):
1216         use reftex-section-pre-regexp variable in order to be compatible with
1217         Texinfo integration.
1219 2012-11-25  Chong Yidong  <cyd@gnu.org>
1221         * faces.el: Make face-spec-set more analogous to setq.
1222         (face-spec-set): Change the third arg to specify whether this
1223         function is being called via defface, customize, or a third party.
1224         Set the appropriate symbol properties.  Clear the override spec if
1225         setting via Custom.  Initialize face if necessary.  (Bug#4988)
1226         (face-spec-recalc): Allow theme faces to completely replace the
1227         defface spec, in the same way as custom faces (Bug#8454).
1229         * cus-face.el (custom-declare-face): Move face initialization to
1230         face-spec-set.
1231         (custom-theme-set-faces): Don't initialize the face name here, as
1232         that is now done in face-spec-set.
1234         * cus-edit.el (custom-face-set, custom-face-mark-to-save)
1235         (custom-face-reset-saved, custom-face-mark-to-reset-standard):
1236         Simplify by using the new arg to face-spec-set.
1238         * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
1239         reset face-override-spec too, and use custom-declare-face.
1241 2012-11-24  Jan Djärv  <jan.h.d@swipnet.se>
1243         * term/ns-win.el (ns-initialize-window-system): Move creation of
1244         fontsets here (Bug#11964).
1246 2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
1248         * ses.el (ses-rename-cell): Correct bug on mode-line update after
1249         cell renaming.
1251 2012-11-24  Chong Yidong  <cyd@gnu.org>
1253         * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
1254         obsolete.
1256         * custom.el (custom-theme-set-variables): Use a topological sort
1257         for ordering by custom dependencies (Bug#12952).
1258         (custom--sort-vars, custom--sort-vars-1): New functions.
1260 2012-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1262         * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
1263         lexical-binding (bug#12938).
1265 2012-11-24  Wolfgang Jenkner  <wjenkner@inode.at>
1267         * image-mode.el (image-transform-check-size): Use assertions only
1268         for images of type imagemagick.
1270         Otherwise no error, image-transform-fit-to-{width,height} is
1271         silently ignored, as before.  Doc fix.
1273 2012-11-24  Chong Yidong  <cyd@gnu.org>
1275         * faces.el (color-defined-p): Doc fix (Bug#12853).
1277 2012-11-24  Juri Linkov  <juri@jurta.org>
1279         * dired.el (dired-mark): Add optional arg `interactive'.
1280         Check for `use-region-p' if `interactive' is non-nil.
1281         (dired-unmark, dired-flag-file-deletion): Add optional arg
1282         `interactive'.  Call `dired-mark' with the arg `interactive'.
1283         (Bug#10624)
1285         * wdired.el: Revert 2012-10-17 change partly and replace it with
1286         Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
1287         (wdired-finish-edit): Add marks for new file names to
1288         `wdired-old-marks'.  Restore marks using `dired-mark-remembered'
1289         after `revert-buffer'.
1290         (wdired-do-renames): Remove calls to `dired-remove-file',
1291         `dired-add-file', `dired-add-entry'.  (Bug#11795)
1293 2012-11-24  Alan Mackenzie  <acm@muc.de>
1295         * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
1297         Fix bugs in the state cache.  Enhance a debugging mechanism.
1298         * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
1299         "brace at column zero" strategy for C++.
1300         (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
1301         (c-parse-state-point): New variable.
1302         (c-record-parse-state-state): Record old parse state with
1303         `copy-tree'.  Record previous value of point.
1304         (c-debug-parse-state-double-cons): New debugging function.
1305         (c-debug-parse-state): Call the above new function.
1306         (c-toggle-parse-state-debug): Output a confirmatory message.
1308         * progmodes/cc-mode.el (c-before-change, c-after-change):
1309         Call c-invalidate-state-cache from `c-before-change' instead of
1310         `c-after-change'.
1312 2012-11-23  Chong Yidong  <cyd@gnu.org>
1314         * find-cmd.el (find-constituents): Add executable, ipath,
1315         readable, samefile, writable, daystart, regextype (Bug#12856).
1317 2012-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1319         * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
1321 2012-11-22  Paul Eggert  <eggert@cs.ucla.edu>
1323         * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
1324         definition.  This fixes a bootstrap failure.
1325         (calc-gregorian-switch): In menu, put dates before regions.
1326         This is easier to follow, lines up better in the menu, and lets us
1327         coalesce regions that switch at the same time.  Give country
1328         names, not "Vatican", as that's better for non-expert users.
1329         Use names that are stable between the date of switch and now, e.g.,
1330         Bohemia and Moravia (which existed then and now) and not
1331         Czechoslovakia (which didn't exist then and doesn't exist now).
1332         What is now the U.S. mostly did not switch at the same time as
1333         Britain, so omit the U.S.  Correct spelling of "Britain".
1334         Catholic Switzerland was too much of a mess, so omit it.
1336 2012-11-22  Jay Belanger  <jay.p.belanger@gmail.com>
1338         * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
1339         after the variable is changed.
1341 2012-11-21  Daniel Colascione  <dancol@dancol.org>
1343         * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
1344         in SQL declarations for font-lock.
1345         (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
1347 2012-11-21  Glenn Morris  <rgm@gnu.org>
1349         * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
1350         (face-italic-p): Add optional argument "inherit".
1352         * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
1353         Remove -p suffix from names, for consistency with other set-face-*.
1354         (set-face-inverse-video): Fix interactive spec.
1355         * play/gamegrid.el (gamegrid-make-mono-tty-face):
1356         * textmodes/table.el (table--update-cell-face):
1357         Use set-face-inverse-video rather than now obsolete alias.
1359 2012-11-21  Eli Zaretskii  <eliz@gnu.org>
1361         * simple.el (line-move): Don't call line-move-partial if
1362         scroll-conservatively is in effect.  (Bug#12927)
1364 2012-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1366         * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
1367         Fallback on completion-at-point rather than
1368         pcomplete-expand-and-complete, and only if pcomplete actually failed.
1369         (eshell-cmpl-initialize): Setup completion-at-point.
1371         * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
1373         * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
1375 2012-11-21  Michael Albinus  <michael.albinus@gmx.de>
1377         * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
1378         are remote, check out-of-band property for both.
1380 2012-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1382         * window.el (switch-to-buffer): Re-add the warning that was lost in the
1383         code rewrite.
1385 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
1387         More minor time fixes.
1388         * calendar/time-date.el: Commentary fix.
1389         * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
1390         too much other code depends on (0 0) time stamps.
1391         * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
1392         Add a couple of FIXME comments.
1394         Minor cleanup for times as lists of four integers.
1395         * files.el (dir-locals-directory-cache):
1396         * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
1397         Doc fixes.
1398         * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
1399         * ps-bdf.el (bdf-file-newer-than-time):
1400         Process four-integers time stamps, not two.  Doc fixes.
1402 2012-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1404         * uniquify.el (uniquify-managed): Use defvar-local.
1405         (rename-buffer, create-file-buffer): Advise with advice-add.
1406         (uniquify-unload-function): Unadvise accordingly.
1408         * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
1409         (trace-buffer): Don't purecopy.
1410         (trace-entry-message, trace-exit-message): Add `context' arg.
1411         (trace--timer): New var.
1412         (trace-make-advice): Adjust for use in nadvice.
1413         Add `context' argument.  Delay `display-buffer' via a timer.
1414         (trace-function-internal): Use advice-add.
1415         (trace--read-args): New function.
1416         (trace-function-foreground, trace-function-background): Use it.
1417         (trace-function): Rename to trace-function-foreground and redefine as
1418         an alias to that new name.
1419         (untrace-function, untrace-all): Adjust to the use of nadvice.
1421         * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
1423         * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
1425         * subr.el (called-interactively-p-functions): New var.
1426         (internal--called-interactively-p--get-frame): New macro.
1427         (called-interactively-p, interactive-p): Rewrite in Lisp.
1428         * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
1429         (called-interactively-p-functions): Use it.
1430         * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
1431         (called-interactively-p-functions): Use it.
1432         * allout.el (allout-called-interactively-p): Don't assume
1433         called-interactively-p is a subr.
1435 2012-11-20  Glenn Morris  <rgm@gnu.org>
1437         * profiler.el (profiler-report-mode-map): Add a menu.
1438         No need to bind `q' because we derive from special-mode.
1439         (profiler-report-find-entry): Handle calls from the menu-bar.
1441 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1443         * emacs-lisp/byte-run.el (defun-declarations-alist):
1444         Allow a compiler-macro to be a lambda expression.
1446         * progmodes/python.el: Use cl-lib.  Move var declarations outside of
1447         eval-when-compile.
1448         (python-syntax-context): Add compiler-macro.
1449         (python-font-lock-keywords): Simplify with De Morgan.
1451         * vc/diff-mode.el (diff-hunk): Don't make useless timers.
1453         * files.el (load-file): Require match in minibuffer selection, as was
1454         the case in Emacs-20 before we changed the spec to allow .elc files
1455         (bug#12935).
1457         * json.el: Don't require cl since we don't use it.
1458         * color.el: Don't require cl.
1459         (color-complement): `caddr' -> `nth 2'.
1461         * calendar/time-date.el (time-to-seconds): De-obsolete.
1463 2012-11-19  Jay Belanger  <jay.p.belanger@gmail.com>
1465         * calc/calc-forms.el (math-leap-year-p):  Fix formula for negative
1466         year numbers.
1467         (math-date-to-julian-dt): Adjust the initial approximation for the
1468         year to deal with the new definition of the DATE.
1470 2012-11-19  Daniel Colascione  <dancol@dancol.org>
1472         * term/w32-win.el (cygwin-convert-path-from-windows):
1473         Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
1475 2012-11-18  Chong Yidong  <cyd@gnu.org>
1477         * filecache.el (file-cache--read-list): New function.
1478         (file-cache-add-directory-list, file-cache-add-file-list)
1479         (file-cache-delete-file-list, file-cache-delete-directory-list):
1480         Use it to read a list of files or directories (Bug#12846).
1481         (file-cache-add-file, file-cache-add-directory)
1482         (file-cache-delete-file-list, file-cache-delete-file-regexp)
1483         (file-cache-delete-directory): Print an message.
1485 2012-11-18  Jay Belanger  <jay.p.belanger@gmail.com>
1487         * calc/calc-forms.el (math-date-to-dt): Use integer date when
1488         calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
1490 2012-11-18  Glenn Morris  <rgm@gnu.org>
1492         * image.el (insert-image, insert-sliced-image): Doc fix.
1494 2012-11-18  Chong Yidong  <cyd@gnu.org>
1496         * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
1497         (Bug#12810).
1499 2012-11-18  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
1501         * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
1502         response when the target file is in a subdirectory (Bug#12757).
1504 2012-11-18  Chong Yidong  <cyd@gnu.org>
1506         * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
1508 2012-11-18  Glenn Morris  <rgm@gnu.org>
1510         * emacs-lisp/cl-lib.el (face-underline-p):
1511         Use set-face-underline rather than the alias set-face-underline-p.
1513         * window.el (with-temp-buffer-window): Doc fix.
1514         * subr.el (with-output-to-temp-buffer):
1515         Add doc xref to with-temp-buffer-window.
1517 2012-11-18  Juanma Barranquero  <lekktu@gmail.com>
1519         * woman.el (woman-non-underline-faces): Use `set-face-underline'.
1520         * calc/calc.el (math-format-date-cache): Declare.
1522 2012-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1524         Calc by default uses the Gregorian calendar for all dates (Bug#12633).
1525         It also uses January 1, 1 AD as its day number 1.
1526         * calc/calc-forms.el (math-julian-date-beginning)
1527         (math-julian-date-beginning-int): Implement this.
1529 2012-11-17  Juanma Barranquero  <lekktu@gmail.com>
1531         * descr-text.el (quail-find-key):
1532         * dired.el (desktop-file-name):
1533         * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
1534         * generic-x.el (comint-mode, comint-exec):
1535         * image-dired.el (widget-forward):
1536         * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
1537         (speedbar-change-expand-button-char)
1538         (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
1539         (speedbar-make-specialized-keymap, speedbar-make-tag-line):
1540         * printing.el (easy-menu-add-item, easy-menu-remove-item)
1541         (widget-field-action, widget-value-set):
1542         * speedbar.el (imenu--make-index-alist):
1543         * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
1544         (ring-length, ring-insert):
1545         * vcursor.el (compare-windows-skip-whitespace):
1546         * woman.el (dired-get-filename):
1547         Declare functions.
1549         * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
1551 2012-11-17  Jay Belanger  <jay.p.belanger@gmail.com>
1553         * calc/calc.el (calc-gregorian-switch): New variable.
1555         * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
1556         (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
1557         (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
1558         (math-leap-year-p): Add option to distinguish between Julian
1559         and Gregorian calendars.
1560         (math-day-number): Use `math-day-in-year' to do the computations.
1561         (math-absolute-from-dt): Rename from `math-absolute-from-date'.
1562         Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
1563         to do the computations.
1564         (math-date-to-dt): Use `math-date-to-julian-dt' and
1565         `math-date-to-gregorian-dt' to do the computations.
1566         (calcFunc-weekday, math-format-date-part): Use the new version of
1567         the DATE to determine the weekday.
1568         (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
1569         when necessary.
1571 2012-11-17  Eli Zaretskii  <eliz@gnu.org>
1573         * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
1574         Cygwin; otherwise use 'file:'.  (Bug#12914)
1575         (cygwin-convert-path-from-windows): Declare, to avoid
1576         byte-compiler warnings.
1578 2012-11-17  Andreas Politz  <politza@fh-trier.de>
1580         * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
1581         (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
1582         prefix and negative numeric prefix args (Bug#12795).
1584 2012-11-17  Stephen Berman  <stephen.berman@gmx.net>
1586         * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
1587         Don't signal an error with a score that is too low to add to the
1588         list of top scores. (Bug#12779)
1590 2012-11-17  Chong Yidong  <cyd@gnu.org>
1592         * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
1594         * filecache.el (file-cache-add-file): Handle relative file name in
1595         the argument (Bug#12694).
1597 2012-11-16  Jürgen Hötzel  <juergen@archlinux.org>  (tiny change)
1599         * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
1601 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1603         * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
1605         * emacs-lisp/cl-lib.el: Set more meaningful version number.
1607 2012-11-16  Martin Rudalics  <rudalics@gmx.at>
1609         * window.el (enlarge-window, shrink-window): Don't mention return
1610         value in doc-string (Bug#12896).
1611         (window--display-buffer): Don't resize frames - it won't work
1612         with all window managers and defeat pop-up-frame-alist.
1613         (display-buffer-alist): In doc-string explain that CONDITION can
1614         be a function and which arguments are passed to it (Bug#12854).
1615         (display-buffer-assq-regexp): New argument ACTION.  Handle lambda
1616         expressions (Bug#12854).
1617         (display-buffer): Pass ACTION argument to
1618         display-buffer-assq-regexp.
1620 2012-11-16  Glenn Morris  <rgm@gnu.org>
1622         * window.el (fit-frame-to-buffer-bottom-margin)
1623         (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
1625         * faces.el (face-underline-p): Use face-attribute-specified-or.
1627 2012-11-16  Juanma Barranquero  <lekktu@gmail.com>
1629         * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
1631 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1633         * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
1635 2012-11-16  Glenn Morris  <rgm@gnu.org>
1637         * eshell/em-cmpl.el (eshell-pcomplete): New command.  (Bug#12838)
1638         (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
1640         * faces.el (face-underline-p): Doc fix.  Handle :underline being
1641         things other than `t' (a string, a list).
1642         (face-inverse-video-p): Doc fix.
1643         (set-face-underline): Rename it back from set-face-underline-p.
1644         Doc fix.  Allow interactive input of values other than t.
1645         (read-face-attribute): Apply formatting to :underline,
1646         since like :box and :stipple it can take list values.
1648         * term.el (ansi-term): Don't let C-x escape-char binding
1649         clobber the more standard C-c binding.  (Bug#12842)
1651         * subr.el (set-temporary-overlay-map): Doc fix.
1653 2012-11-16  Martin Rudalics  <rudalics@gmx.at>
1655         * window.el (record-window-buffer)
1656         (display-buffer-record-window): When copying the markers to
1657         window-point preserve window-point-insertion-type. (Bug#12588)
1659 2012-11-16  Glenn Morris  <rgm@gnu.org>
1661         * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
1662         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
1663         Use new names for hooks rather than obsolete aliases.
1665 2012-11-15  Daniel Colascione  <dancol@dancol.org>
1667         * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
1668         prefix instead of "file:" so that when FILE-NAME begins with "//",
1669         as it does when the target file is on a network share, url-handler
1670         isn't confused.
1672 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1674         * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
1675         a preactivated advice from an old advice.el; they're not compatible!
1677 2012-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1679         * emacs-lisp/nadvice.el (advice--make-interactive-form):
1680         Fix string-spec case.
1682         * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
1684 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1686         * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
1687         (advice--buffer-local-function-sample): New var.
1688         (advice--set-buffer-local, advice--buffer-local): New functions.
1689         (add-function, remove-function): Use them.
1691 2012-11-15  Drew Adams  <drew.adams@oracle.com>
1693         * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
1695 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1697         * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
1698         potential binding of print-gensym to t, and prettify (back)quotes in
1699         case they appear in args's default values (bug#12884).
1701 2012-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1703         * emacs-lisp/nadvice.el: Add around advice for interactive specs.
1704         (advice-eval-interactive-spec): New function.
1705         (advice--make-interactive-form): Support around advice (bug#12844).
1707 2012-11-14  Dmitry Gutov  <dgutov@yandex.ru>
1709         * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
1710         more strict.  Add docstring.
1711         (ruby-expression-expansion-re): Extract from
1712         `ruby-match-expression-expansion'.
1713         (ruby-syntax-propertize-function): After everything else, search
1714         for expansions in string literals, mark their insides as
1715         whitespace syntax and save match data for font-lock.
1716         (ruby-font-lock-keywords): Use the 2nd group from expression
1717         expansion matches.
1718         (ruby-match-expression-expansion): Use the match data saved to the
1719         text property in ruby-syntax-propertize-function.
1721 2012-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1723         * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
1724         (bug#12879).
1726 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
1728         * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
1729         start/end keyword a bit harder.  Works with different values of N.
1730         Add more comments.
1731         (ruby-end-of-block): Update accordingly.
1733 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1735         * woman.el (woman-file-name): Don't mess with unread-command-events
1736         (bug#12861).
1738         * emacs-lisp/advice.el: Layer on top of nadvice.el.
1739         Remove out of date self-require hack.
1740         (ad-do-advised-functions): Use simple `dolist'.
1741         (ad-advice-name, ad-advice-protected, ad-advice-enabled)
1742         (ad-advice-definition): Redefine as functions.
1743         (ad-advice-classes): Move before first use.
1744         (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
1745         (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
1746         (ad--defalias-fset): Remove functions.
1747         (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
1748         (ad-get-orig-definition): Rewrite.
1749         (ad-make-advised-definition-docstring): Change base docstring.
1750         (ad-real-orig-definition): Rewrite.
1751         (ad-map-arglists): Change name of called function.
1752         (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
1753         (ad-make-advised-definition): Simplify.
1754         (ad-assemble-advised-definition): Tweak for new calling context.
1755         (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
1756         (ad--defalias-fset): Rename from ad-handle-definition.  Make it set the
1757         function and call ad-activate if needed.
1758         (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
1759         (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
1760         (ad-compile-function): Compile ad-Advice-*.
1761         (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
1762         (ad-start-advice, ad-stop-advice): Remove.
1764 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
1766         * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
1767         period before class method names, not after.  Remove handling of
1768         one impossible case.  Add comments.
1770 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1772         * emacs-lisp/advice.el: Remove support for freezing.
1773         (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
1774         (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
1775         Remove support for `freeze'.
1777         * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
1778         override the default.
1779         * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
1780         cl--dotimes/dolist.
1781         * subr.el (dolist, dotimes, declare): Redefine them normally, even when
1782         `cl' is loaded.
1784         * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
1785         from add-advice.
1786         (advice--strip-macro): New function.
1787         (advice--defalias-fset): Use them to handle macros.
1788         (advice-add): Use them.
1789         (advice-member-p): Correctly handle macros.
1791 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
1793         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1794         Never font-lock the beginning of singleton class as heredoc.
1796 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1798         * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
1800 2012-11-13  Wolfgang Jenkner  <wjenkner@inode.at>
1802         * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
1803         39 and 49 (bug#12792).  Also, treat unimplemented parameters as 0,
1804         thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
1806 2012-11-13  Fabián Ezequiel Gallina  <fgallina@cuca>
1808         Fix end-of-defun misbehavior.
1809         * progmodes/python.el (python-nav-beginning-of-defun): Rename from
1810         python-beginning-of-defun-function.  Handle nested defuns
1811         correctly.
1812         (python-nav-end-of-defun): Rename from
1813         python-end-of-defun-function.  Ensure forward movement.
1814         (python-info-current-defun): Reimplement to work as intended
1815         with new fixed python-nav-{end,beginning}-of-defun.  Stop scanning
1816         parent defuns as soon as possible.
1818 2012-11-13  Glenn Morris  <rgm@gnu.org>
1820         * progmodes/flymake.el (flymake-error-bitmap)
1821         (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
1822         (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
1824 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
1826         * progmodes/ruby-mode.el (ruby-move-to-block): When moving
1827         backward, always stop at indentation.  Reverts the change from
1828         2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
1830 2012-11-13  Glenn Morris  <rgm@gnu.org>
1832         * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
1833         Add ibuffer-filter-by-derived-mode.
1835         * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
1836         the same name shadowing each other.
1838         * window.el (with-temp-buffer-window): Doc tweak.
1840         * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
1842         * help.el (temp-buffer-max-height):
1843         * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
1844         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
1846 2012-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1848         * emacs-lisp/nadvice.el: New package.
1849         * subr.el (special-form-p): New function.
1850         * emacs-lisp/elp.el: Use lexical-binding and advice-add.
1851         (elp-all-instrumented-list): Remove var.
1852         (elp-not-profilable): Remove elp-wrapper.
1853         (elp-profilable-p): Use autoloadp and special-form-p.
1854         (elp--advice-name): New const.
1855         (elp-instrument-function): Use advice-add.
1856         (elp--instrumented-p): New predicate.
1857         (elp-restore-function): Use advice-remove.
1858         (elp-restore-all, elp-reset-all): Use mapatoms.
1859         (elp-set-master): Use elp--instrumented-p.
1860         (elp--make-wrapper): Rename from elp-wrapper, return a function
1861         suitable for advice-add.  Use cl-inf.
1862         (elp-results): Use mapatoms+elp--instrumented-p.
1863         * emacs-lisp/debug.el: Use lexical-binding and advice-add.
1864         (debug-function-list): Remove var.
1865         (debug): Rename arg, and then let-bind it explicitly inside.
1866         (debugger-setup-buffer): Rename arg.
1867         (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
1868         (debugger-frame-number): Adjust to new debug-on-entry setup.
1869         (debug--implement-debug-on-entry): Rename from
1870         implement-debug-on-entry, add argument.
1871         (debugger-special-form-p): Remove, use special-form-p instead.
1872         (debug-on-entry): Use advice-add.
1873         (debug--function-list): New function.
1874         (cancel-debug-on-entry): Use it, along with advice-remove.
1875         (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
1876         (debugger-list-functions): Use debug--function-list instead of
1877         debug-function-list.
1878         * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
1879         (ad-special-form-p): Remove, use special-form-p instead.
1880         (ad-set-advice-info): Use add-function and remove-function.
1881         (ad--defalias-fset): Adjust accordingly.
1883 2012-11-10  Glenn Morris  <rgm@gnu.org>
1885         * mail/emacsbug.el (report-emacs-bug-tracker-url)
1886         (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
1887         (report-emacs-bug-create-existing-bugs-buffer)
1888         (report-emacs-bug-parse-query-results)
1889         (report-emacs-bug-query-existing-bugs): Remove.  (Bug#7449)
1891         * term.el (term-default-fg-color, term-default-bg-color):
1892         Make obsolete, rather than just saying "deprecated" in the doc.
1894         * term.el (term): Rename from `term-face'.
1895         (term-current-face, ansi-term-color-vector)
1896         (term-default-fg-color, term-default-bg-color, term-ansi-reset):
1897         Update all users.
1899 2012-11-10  Jan Djärv  <jan.h.d@swipnet.se>
1901         * server.el (server-create-window-system-frame): Handle Nextstep
1902         specially (Bug#12780).
1904 2012-11-10  Glenn Morris  <rgm@gnu.org>
1906         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
1907         Unautoload, and make obsolete.  (Bug#7449)
1909 2012-11-10  Chong Yidong  <cyd@gnu.org>
1911         * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
1912         rename from diff-remove-trailing-whitespace (Bug#12831).
1914 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1916         * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
1917         miscompilation of trace.el.
1919 2012-11-10  Glenn Morris  <rgm@gnu.org>
1921         * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
1923 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1925         * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
1926         (bug#12812).
1928 2012-11-10  Chong Yidong  <cyd@gnu.org>
1930         * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
1931         a defcustom with an appropriate :set function.
1932         (minibuffer-default--in-prompt-regexps): New function.
1934 2012-11-10  Glenn Morris  <rgm@gnu.org>
1936         * emacs-lisp/cl.el (define-setf-expander, defsetf)
1937         (define-modify-macro): Doc fixes.
1939         * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
1940         (gv-define-simple-setter): Update doc of `fix-return'.
1942 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1944         * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
1945         twice when `fix-return' is set (bug#12813).
1947         * emacs-lisp/cl.el (defsetf): Pass the third arg to
1948         gv-define-simple-setter (bug#12812).
1950         * woman.el (woman-decode-region): Disable adaptive-fill when rendering
1951         (bug#12756).
1953 2012-11-10  Glenn Morris  <rgm@gnu.org>
1955         * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
1957         * emacs-lisp/cl-extra.el (cl-prettyexpand):
1958         * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
1959         * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
1960         (cl-the, cl-compiler-macroexpand): Add basic doc strings.
1962         * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
1964 2012-11-10  Leo Liu  <sdl.web@gmail.com>
1966         * ido.el (ido-set-matches-1): Improve flex matching performance by
1967         removing backtracking in the regexp (suggested by Stefan).  (Bug#12796)
1969 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1971         * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
1972         (ad--defalias-fset): New function.
1973         (ad-safe-fset): Remove.
1974         (ad-make-freeze-definition): Use cl-letf*.
1976 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1978         * subr.el (dolist): Don't bind VAR in RESULT.
1980         * emacs-lisp/advice.el: Miscellaneous cleanup.  Use lexical-binding.
1981         (fset, documentation): Don't save real def since we don't advise.
1982         (ad-do-advised-functions): Remove problematic `result-form'.
1983         (ad-safe-fset): `ad-real-fset' => `fset'.
1984         (ad-read-advised-function): Don't assume that ad-do-advised-functions
1985         uses CL's dolist internally.
1986         (ad-arglist): Remove unused arg `name'.
1987         (ad-docstring, ad-make-advised-docstring):
1988         `ad-real-documentation' => `documentation'.
1989         (warning-suppress-types): Declare.
1990         (ad-set-arguments): Simple CSE.
1991         (ad-recover-normality): Sanity check.
1993         * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
1994         (funcall '(lambda ..) ..) into ((lambda ..) ..).
1996 2012-11-09  Vincent Belaïche  <vincentb1@users.sourceforge.net>
1998         * ses.el: symbol to coordinate mapping is made by symbol property
1999         `ses-cell'.  This means that the same mapping is done for all SES
2000         sheets.  That is good enough for cells with standard A1 names, but
2001         not for named cell.  So a hash map is added for the latter.
2002         (defconst ses-localvars): Add local variable ses--named-cell-hashmap
2003         (ses-sym-rowcol): Use hashmap for named cell.
2004         (ses-is-cell-sym-p): New defun.
2005         (ses-decode-cell-symbol): New defun.
2006         (ses-create-cell-variable): Add cell to hashmap when name is not
2007         A1-like.
2008         (ses-rename-cell): Check that cell new name is not already in
2009         spreadsheet with the use of ses-is-cell-sym-p
2010         (ses-rename-cell): Use hash map for named cells, but accept also
2011         renaming back to A1-like.
2013 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2015         * emacs-lisp/advice.el: Use new dynamic docstrings.
2016         (ad-make-advised-definition-docstring, ad-advised-definition-p):
2017         Use dynamic-docstring-function instead of ad-advice-info.
2018         (ad--make-advised-docstring): New function extracted from
2019         ad-make-advised-docstring.
2020         (ad-make-advised-docstring): Use it.
2021         * progmodes/sql.el (sql--make-help-docstring): New function, extracted
2022         from sql-help.
2023         (sql-help): Use it with dynamic-docstring-function.
2025         * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
2027 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2029         * files.el (hack-one-local-variable--obsolete): New function.
2030         (hack-one-local-variable): Use it for obsolete settings.
2032         * subr.el (locate-user-emacs-file): If both old and new name exist, use
2033         the new name.
2035         * progmodes/js.el (js--filling-paragraph): New var.
2036         (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
2037         (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
2038         less sneaky.
2040 2012-11-08  Julien Danjou  <julien@danjou.info>
2042         * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
2043         `auto-mode-alist' (Bug#12835).
2045 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2047         * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
2048         (perl--prettify-symbols-alist): New const.
2049         (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
2050         New functions.
2051         (perl-font-lock-keywords-2): Use them.
2052         (perl-electric-noindent-p): New function.
2053         (perl-mode): Use it to set up electric-indent-mode.
2054         (perl-electric-terminator, perl-indent-command): Mark obsolete.
2055         (perl-mode-map): Remove bindings for them.
2056         (perl-imenu-generic-expression, perl-outline-level):
2057         Match functions&packages in column>0.
2059         * env.el (env--substitute-vars-regexp): New const.
2060         (substitute-env-vars): Use it.  Add `only-defined' arg.
2061         * net/tramp.el (tramp-replace-environment-variables): Use it.
2063         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
2064         Byte-compile *before* eval in eval-and-compile.
2065         (byte-compile-log-warning): Remove redundant inhibit-read-only.
2066         (byte-compile-file-form-autoload): Don't hide actual definition.
2067         (byte-compile-maybe-guarded): Accept `functionp' as well.
2069         * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
2071 2012-11-07  Michael Albinus  <michael.albinus@gmx.de>
2073         * notifications.el (notifications-get-server-information-method):
2074         New defconst.
2075         (notifications-get-capabilities): Fix docstring.
2076         (notifications-get-server-information): New defun.
2078 2012-11-06  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2080         * textmodes/ispell.el (ispell-region): Standard re-indent for better
2081         readability.
2083         * textmodes/ispell.el: Experimental support for support debugging.
2084         (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
2085         buffer for ispell.
2086         (ispell-print-if-debug): New function to print stuff to
2087         `ispell-debug-buffer' if debugging is enabled.
2088         (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
2089         show some debugging info.
2090         (ispell-buffer-with-debug): New function that creates a debugging
2091         buffer and calls `ispell-buffer' with debugging enabled.
2093         * textmodes/ispell.el (ispell-region): Do not prefix sent string by
2094         comment in autoconf mode. (Bug#12768)
2096 2012-11-06  Dmitry Antipov  <dmantipov@yandex.ru>
2098         * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
2099         frame-first-window, frame-root-window, frame-selected-window,
2100         minibuffer-selected-window, minibuffer-window,
2101         window-absolute-pixel-edges, window-at, window-body-height,
2102         window-body-width, window-display-table, window-combination-limit,
2103         window-frame, window-fringes, window-inside-absolute-pixel-edges,
2104         window-inside-edges, window-inside-pixel-edges, window-left-child,
2105         window-left-column, window-margins, window-next-buffers,
2106         window-next-sibling, window-new-normal, window-new-total,
2107         window-normal-size, window-parameter, window-parameters, window-parent,
2108         window-pixel-edges, window-point, window-prev-buffers,
2109         window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
2110         window-start, window-text-height, window-top-child, window-top-line,
2111         window-total-height, window-total-width and window-use-time to the list
2112         of functions without side-effects.
2113         (toplevel): Add window-valid-p to the list of error-free functions
2114         without side-effects.
2116 2012-11-05  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2118         * textmodes/ispell.el (ispell-program-name):
2119         Update spellchecker parameters when customized.
2121 2012-11-04  Glenn Morris  <rgm@gnu.org>
2123         * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn.  (Bug#7850)
2125 2012-11-04  Chong Yidong  <cyd@gnu.org>
2127         * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
2128         same-window-* variables.
2130 2012-11-04  Juri Linkov  <juri@jurta.org>
2132         * isearch.el (isearch-help-for-help, isearch-describe-bindings)
2133         (isearch-describe-key, isearch-describe-mode): Use a display
2134         action instead of binding same-window-* variables (Bug#10040).
2136 2012-11-03  Glenn Morris  <rgm@gnu.org>
2138         * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
2139         Rename handler properties back from cl-- to cl-.  (Bug#12788)
2141         * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
2143 2012-11-03  Eli Zaretskii  <eliz@gnu.org>
2145         * term/pc-win.el: Don't load term/internal from here.
2147         * loadup.el: Load term/internal from here.
2149 2012-11-03  Fabián Ezequiel Gallina  <fgallina@cuca>
2151         * progmodes/python.el (inferior-python-mode): Fix hang in
2152         jit-lock (Bug#12645).
2154 2012-11-03  Martin Rudalics  <rudalics@gmx.at>
2156         * window.el (switch-to-visible-buffer)
2157         (switch-to-buffer-preserve-window-point): Fix doc-strings.
2159 2012-11-03  Glenn Morris  <rgm@gnu.org>
2161         * emacs-lisp/cl-lib.el (cl--random-time):
2162         Rename from cl-random-time.  (Bug#12773)
2163         (cl--gensym-counter, cl--random-state): Update callers.
2164         * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
2166 2012-11-03  Chong Yidong  <cyd@gnu.org>
2168         * cus-start.el: Make cursor-type customizable (Bug#11633).
2170 2012-11-02  Glenn Morris  <rgm@gnu.org>
2172         * filecache.el: No need to load find-lisp when compiling.
2173         (find-lisp-find-files): Autoload it.
2174         (file-cache-add-directory-recursively): Don't require find-lisp.
2176         * image.el (image-type-from-file-name): Trivial simplification.
2178         * emacs-lisp/bytecomp.el (byte-compile-eval):
2179         Decouple "noruntime" and "cl-functions" warnings.
2181 2012-11-01  Stephen Berman  <stephen.berman@gmx.net>
2183         * play/gomoku.el (gomoku-display-statistics): Update mode line
2184         only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
2186 2012-10-31  Martin Rudalics  <rudalics@gmx.at>
2188         * window.el (quit-restore-window): If the window has been
2189         created on an existing frame and ended up as the sole window on
2190         that frame, do not delete it (Bug#12764).
2192 2012-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
2194         * progmodes/sh-script.el (sh--inside-noncommand-expression):
2195         Rename from sh--inside-arithmetic-expression, handle more cases
2196         (bug#11263).
2198         * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
2199         (sh-font-lock-open-heredoc): Use it (bug#12770).
2201 2012-10-30  Glenn Morris  <rgm@gnu.org>
2203         * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie.  Doc fix.
2205         * emacs-lisp/cl.el (letf): Doc fix.  (Bug#12760)
2207 2012-10-29  Chong Yidong  <cyd@gnu.org>
2209         * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
2210         function key is stored in a keyboard macro (Bug#4894).
2212         * thingatpt.el (number-at-point): Apply a thing-at-point property.
2214 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2216         * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
2217         header comments".
2218         (diff-unified->context, diff-context->unified)
2219         (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
2221         * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
2223         * files.el (find-alternate-file): Only ask one question (bug#12487).
2225 2012-10-29  Chong Yidong  <cyd@gnu.org>
2227         * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
2228         Suggested by Dan Nicolaescu (Bug#6326).
2230         * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
2232         * startup.el (fancy-about-screen): Don't message (Bug#12680).
2234         * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
2236         * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
2238         * face-remap.el (face-remap-add-relative): Handle the case where a
2239         face-remapping-alist entry is a cons cell (Bug#12762).
2241 2012-10-29  Kevin Ryde  <user42@zip.com.au>
2243         * woman.el (woman-parse-numeric-value): Handle picas correctly
2244         (Bug#12639).
2246 2012-10-29  Glenn Morris  <rgm@gnu.org>
2248         * emacs-lisp/cl.el (defsetf): Doc fix.
2250 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2252         * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
2253         syntax to the matching opener, if any (bug#12547).
2254         (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
2255         matching open as a "case-(".
2256         (sh-smie-rc-grammar): Add a corresponding rule for it.
2258 2012-10-28  Daniel Hackney  <dan@haxney.org>
2260         * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
2261         "PKGNAME-autoloads.el" in case we created it.
2263 2012-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2265         * minibuffer.el (completion--sifn-requote): Rewrite to handle things
2266         like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
2267         (completion--twq-all): Disable too-strict assertions.
2269         * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
2271 2012-10-27  Eli Zaretskii  <eliz@gnu.org>
2273         * profiler.el (profiler-report-make-entry-part): Fix help-echo
2274         text to match the real keybindings.
2276 2012-10-27  Juri Linkov  <juri@jurta.org>
2278         * wdired.el (wdired-keep-marker-rename): New defcustom.
2279         (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
2280         (Bug#11795)
2282         * dired.el (dired-keep-marker-rename): Add reference to
2283         `wdired-keep-marker-rename' in the docstring.
2284         Add default character value ?R to display initially in
2285         Customization UI instead of ?@.
2287 2012-10-27  Martin Rudalics  <rudalics@gmx.at>
2289         * window.el (display-buffer): In doc-string describe
2290         window-height and window-width alist entries.
2292         * time.el (display-time-world): Restore fit-window-to-buffer
2293         behavior.
2295 2012-10-27  Chong Yidong  <cyd@gnu.org>
2297         * subr.el (insert-buffer-substring-as-yank): Doc fix.
2299 2012-10-26  Jambunathan K  <kjambunathan@gmail.com>
2301         * minibuffer.el (completion-category-overrides): New completion
2302         category `bookmark' (bug#11131).
2304 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2306         * emacs-lisp/advice.el (ad-assemble-advised-definition):
2307         Silence bogus compiler warnings for ad-do-it.
2309         * bookmark.el (bookmark-completing-read): Set the completion category
2310         to `bookmark' (bug#11131).
2312 2012-10-26  Bastien  <bzg@altern.org>
2313             Stefan Monnier  <monnier@iro.umontreal.ca>
2315         * face-remap.el: Use lexical-binding.
2316         (text-scale-adjust): Improve docstring.  Use itself for the temporary
2317         overlay-map bindings, so as to repeat the "Use..." message each time.
2319 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2321         * emacs-lisp/macroexp.el (macroexp--expand-all):
2322         Obey byte-compile-warning-enabled-p (bug#12486).
2324         * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
2325         (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
2327 2012-10-26  Martin Rudalics  <rudalics@gmx.at>
2329         * mouse.el (mouse-drag-line): Move last form into preceding when
2330         clause (Bug#12731).
2332         * help.el (resize-temp-buffer-window): Fix doc-string.
2334 2012-10-25  David Engster  <deng@randomsample.de>
2336         * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
2337         Remove.  This feature is already integrated in imenu.
2339         * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
2340         always loaded.  Require `speedbar' unconditionally.
2342 2012-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2344         * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
2346         * minibuffer.el (minibuffer-force-complete): Fix thinko.
2348         * net/ldap.el (ldap-search-internal): The official ldif format starts
2349         with a "version: 1" header (bug#12724).
2351         * emacs-lisp/package.el (package-installed-p): Warn if not ready
2352         (bug#12721).
2354 2012-10-25  Glenn Morris  <rgm@gnu.org>
2356         * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
2358 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2360         * minibuffer.el (minibuffer-force-complete): Use one more marker
2361         for the temporary-overlay-map command (bug#12619).
2363 2012-10-24  Chong Yidong  <cyd@gnu.org>
2365         * time.el (display-time-world-mode): Derive from special-mode.
2366         (display-time-world): Use display-buffer (Bug#12708).
2367         (display-time-world-mode-map): Variable deleted.
2368         (display-time-world-display): Wrap the final delete-char inside
2369         inhibit-read-only.
2371 2012-10-24  Chong Yidong  <cyd@gnu.org>
2373         * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
2374         Doc fix.
2376         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
2378 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2380         * minibuffer.el (completion--all-sorted-completions-location): New var.
2381         (completion--cache-all-sorted-completions)
2382         (completion--flush-all-sorted-completions): Use it.
2383         (completion-in-region, completion-in-region--postch)
2384         (completion-at-point, completion-help-at-point): Use markers in
2385         completion-in-region--data (bug#12619).
2387 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2389         * progmodes/compile.el (compilation-start): Try to handle common
2390         quoting of `cd' argument (bug#12640).
2392         * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
2393         (bug#12671).
2395 2012-10-23  Glenn Morris  <rgm@gnu.org>
2397         * progmodes/gud.el (gud-menu-map):
2398         Check gdb-active-process is bound.  (Bug#12358)
2400 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2402         * repeat.el (repeat): Set real-this-command (bug#12232).
2404         * htmlfontify.el (hfy-post-html-hook):
2405         * filesets.el (filesets-cache-fill-content-hook):
2406         * arc-mode.el (archive-extract-hook):
2407         * progmodes/cc-mode.el (c-prepare-bug-report-hook):
2408         * net/rcirc.el (rcirc-sentinel-functions)
2409         (rcirc-receive-message-functions, rcirc-activity-functions)
2410         (rcirc-print-functions):
2411         * net/dbus.el (dbus-event-error-functions):
2412         * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
2413         * emacs-lisp/checkdoc.el (checkdoc-style-functions)
2414         (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
2415         * term/sun.el (sun-raw-prefix-hooks):
2416         * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
2418 2012-10-23  Michael Albinus  <michael.albinus@gmx.de>
2420         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2421         Set `tramp-chunksize' to 1.  This improves the performance.
2422         (tramp-smb-wait-for-output): Add timeout to
2423         `tramp-accept-process-output' calls.
2425 2012-10-23  Chong Yidong  <cyd@gnu.org>
2427         * faces.el (font-list-limit): Define as an obsolete variable.
2429         * startup.el (command-line):
2430         * cus-start.el: Don't refer to font-list-limit.
2432         * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
2434 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2436         * subr.el (internal-temp-output-buffer-show): Rename from
2437         temp-output-buffer-show, since previously compiled files expect this name.
2439 2012-10-23  Glenn Morris  <rgm@gnu.org>
2441         * image.el (image-type-from-file-name): If multiple types match,
2442         return the first one that is supported.  (Bug#9045)
2444 2012-10-22  Glenn Morris  <rgm@gnu.org>
2446         * image.el (imagemagick-enabled-types): Doc fix.
2448 2012-10-22  Takafumi Arakaki  <aka.tkf@gmail.com>  (tiny change)
2450         * progmodes/which-func.el (which-func-current): The hash-table may have
2451         an explicit nil (bug#12338).
2453 2012-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2455         * electric.el (electric-pair-delete-selection-self-insert-function):
2456         Rename to electric-pair-will-use-region, return a boolean.
2457         (electric-pair-mode): Adjust accordingly.  Don't require delsel.
2459         * delsel.el (delete-selection-helper): Use a function instead of a hook.
2460         (delete-selection-pre-hook): Use use-region-p.
2461         (delete-selection-self-insert-function): Remove.
2462         (self-insert-command): Obey self-insert-uses-region-functions.
2463         (self-insert-iso): Revert to previous setting, since we don't actually
2464         know what that command does.
2465         (delete-selection-self-insert-hooks): Remove.
2467 2012-10-22  Simon Law  <sfllaw@sfllaw.ca>  (tiny change)
2469         * delsel.el (delete-selection-helper): New function, extracted from
2470         delete-selection-pre-hook.
2471         (delete-selection-pre-hook): Use it.
2472         (delete-selection-self-insert-function): New function.
2473         (delete-selection-self-insert-hooks): New hook.
2474         (self-insert-command, self-insert-iso): Use it.
2475         * electric.el (electric-pair-syntax): New function, extracted from
2476         electric-pair-post-self-insert-function.
2477         (electric-pair-post-self-insert-function): Use it.
2478         (electric-pair-delete-selection-self-insert-function): New function.
2479         (electric-pair-mode): Require delsel and setup
2480         delete-selection-self-insert-hooks (bug#11520).
2482 2012-10-20  Chong Yidong  <cyd@gnu.org>
2484         * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
2485         no changes to show (Bug#12586).
2487         * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
2488         list explicitly (Bug#12571).
2490 2012-10-20  Arne Jørgensen  <arne@arnested.dk>
2492         * progmodes/flymake.el (flymake-create-temp-inplace):
2493         Use file-truename.
2495 2012-10-20  Eli Zaretskii  <eliz@gnu.org>
2497         * loadup.el: Update comment about uncompiled Lisp files.  (Bug#12395)
2499 2012-10-20  Jay Belanger  <jay.p.belanger@gmail.com>
2501         * calc/calc-units.el (math-extract-units): Properly extract powers
2502         of units.
2504 2012-10-20  Daniel Colascione  <dancol@dancol.org>
2506         * frame.el (make-frame): Set x-display-name as we used to in order
2507         to unbreak creating an X11 frame from an Emacs daemon started
2508         without a display.
2510 2012-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2512         * minibuffer.el (minibuffer-force-complete): Make the next completion use
2513         the same completion-field (bug#12221).
2515 2012-10-19  Martin Rudalics  <rudalics@gmx.at>
2517         * emacs-lisp/debug.el (debug): Record height of debugger window
2518         also when debugger will be back (Bug#8789).
2520 2012-10-18  Chong Yidong  <cyd@gnu.org>
2522         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
2523         Convert to defcustom.
2524         (gdb-get-source-file): Don't bind pop-up-windows.
2526         * progmodes/gud.el (gud-display-line): Don't specially re-use
2527         other frames for the gdb-mi case (Bug#12648).
2529 2012-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2531         * emacs-lisp/advice.el: Clean up commentary a bit.
2532         (ad-do-advised-functions, ad-with-originals): Use `declare'.
2533         (byte-code-function-p): Never redefine.
2535         * emacs-lisp/gv.el (cond): Same fix as before for `if'.
2537 2012-10-18  Glenn Morris  <rgm@gnu.org>
2539         * dired.el (dired-sort-toggle): Some ls implementations only allow
2540         a single option string.  (Bug#12666)
2542         * minibuffer.el (completion-cycle-threshold): Doc fix.
2544 2012-10-17  Kenichi Handa  <handa@gnu.org>
2546         * international/mule.el (set-keyboard-coding-system):
2547         Recover input meta mode when the new coding system doesn not use 8-bit.
2548         Supply TERMINAL arg to set-input-meta-mode.
2550 2012-10-17  Michael Heerdegen <michael_heerdegen@web.de>
2552         * wdired.el (wdired-old-marks): New variable.
2553         (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
2554         (wdired-do-renames): Move point with renamed file and don't lose
2555         mark status (Bug#11795).
2557 2012-10-16  Juri Linkov  <juri@jurta.org>
2559         * replace.el (query-replace-help): Mention multi-buffer replacement
2560         keys in the Help message.  (Bug#12655)
2562 2012-10-15  Chong Yidong  <cyd@gnu.org>
2564         * emacs-lisp/byte-run.el (defsubst): Doc fix.
2566 2012-10-14  Eli Zaretskii  <eliz@gnu.org>
2568         * window.el (display-buffer): Doc fix.
2570         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2571         Adjust the msft regexp to the output of Studio 2010, and move msft
2572         before edg-1.  See the discussion on emacs-devel,
2573         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
2574         for the details.
2576 2012-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2578         * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
2579         (oset): Move uses of object-class-fast macro after its definition.
2581         * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
2583 2012-10-13  Chong Yidong  <cyd@gnu.org>
2585         * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
2586         enabled, re-enable it (Bug#11963).
2588 2012-10-13  Martin Rudalics  <rudalics@gmx.at>
2590         * emacs-lisp/debug.el (debug): When debugger-will-be-back is
2591         non-nil, restore window configuration (Bug#12623).
2593 2012-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2595         * help-fns.el (describe-variable, describe-function-1):
2596         * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
2598         * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
2600 2012-10-12  Glenn Morris  <rgm@gnu.org>
2602         * mail/rmailsum.el (rmail-header-summary):
2603         Fix 2010-11-26 test for multiline Subject: field.  (Bug#12625)
2605 2012-10-12  Fabián Ezequiel Gallina  <fgallina@cuca>
2607         * progmodes/python.el (python-mode-map):
2608         Replace subtitute-key-definition with proper command remapping.
2609         (python-nav--up-list): Fix behavior for blocks on the same level.
2611 2012-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2613         * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
2615         * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
2616         changes to the format of load-history.
2618         * international/mule-cmds.el (read-char-by-name): Move let-binding of
2619         completion-ignore-case in case that var is buffer-local (bug#12615).
2621 2012-10-11  Kenichi Handa  <handa@gnu.org>
2623         * international/eucjp-ms.el: Re-generated.
2625 2012-10-10  Kenichi Handa  <handa@gnu.org>
2627         * select.el (xselect--encode-string): If a coding is specified for
2628         selection, and that is compatible with COMPOUND_TEXT, use it.
2630 2012-10-10  Martin Rudalics  <rudalics@gmx.at>
2632         * window.el (switch-to-buffer-preserve-window-point): New option.
2633         (switch-to-buffer):
2634         Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
2636 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2638         * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
2639         Don't document nil as a useful value (bug#12583).
2641 2012-10-09  Michael Albinus  <michael.albinus@gmx.de>
2643         * net/tramp.el (tramp-debug-message):
2644         Remove "tramp-with-progress-reporter" from regexp of ignored functions.
2645         (with-tramp-progress-reporter): Rename from
2646         `tramp-with-progress-reporter'.
2647         (with-tramp-file-property, with-tramp-connection-property):
2648         Move from tramp-cache.el, rename from `with-file-property' and
2649         `with-connection-property', respectively.
2651         * net/tramp-cache.el: Remove `with-file-property' and
2652         `with-connection-property'.
2654         * net/tramp.el:
2655         * net/tramp-gvfs.el:
2656         * net/tramp-sh.el:
2657         * net/tramp-smb.el: Adapt callees.
2659         * net/trampver.el: Update release number.
2661 2012-10-09  Glenn Morris  <rgm@gnu.org>
2663         * w32-fns.el (set-message-beep):
2664         * term/w32-win.el (set-message-beep): Update declarations.
2666 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2668         * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
2669         (mode-line-widen, mode-line-input-method-map)
2670         (mode-line-coding-system-map, mode-line-remote)
2671         (mode-line-unbury-buffer, mode-line-bury-buffer)
2672         (mode-line-next-buffer, mode-line-previous-buffer):
2673         Replace save-selected-window+select-window => with-selected-window.
2675         * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
2676         * progmodes/cc-vars.el (bq-process): Remove, unused.
2678         * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
2680 2012-10-09  Fabián Ezequiel Gallina  <fgallina@cuca>
2682         Implemented `backward-up-list'-like navigation.
2683         * progmodes/python.el (python-nav-up-list)
2684         (python-nav-backward-up-list): New functions.
2685         (python-mode-map): Define substitute key for backward-up-list to
2686         python-nav-backward-up-list.
2688 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
2690         * progmodes/python.el (python-fill-paragraph): Rename from
2691         python-fill-paragraph-function.  Fixed fill-paragraph for
2692         decorators (Bug#12605).
2694 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
2696         * progmodes/python.el (python-shell-output-filter): Handle extra
2697         carriage return in OSX (Bug#12409).
2699 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
2701         Fix shell handling of unbalanced quotes and parens in output.
2702         * progmodes/python.el (python-rx-constituents): Add string-delimiter.
2703         (python-syntax-propertize-function): Use it.
2704         (python-shell-output-syntax-table): New var.
2705         (inferior-python-mode): Prevent unbalanced parens/quotes from
2706         previous output mess with current input context.
2708 2012-10-08  Juanma Barranquero  <lekktu@gmail.com>
2710         * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
2711         Make obsolete aliases of js-mode and js-mode-hook (from js.el).
2713 2012-10-08  Michael Albinus  <michael.albinus@gmx.de>
2715         * ffap.el (ffap-replace-file-component): Support Tramp file name
2716         syntax, not only ange-ftp's one.
2718 2012-10-08  Glenn Morris  <rgm@gnu.org>
2720         * cus-start.el (message-log-max): Set :version.
2722         * calendar/calendar.el (calendar-intermonth-header): Doc fix.
2724 2012-10-08  Martin Rudalics  <rudalics@gmx.at>
2726         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
2727         the minibuffer window (Bug#10851).
2729 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
2731         Enhancements on forward-sexp movement.
2732         * progmodes/python.el (python-nav-beginning-of-statement)
2733         (python-nav-end-of-statement): Return point-marker.
2734         (python-nav-forward-sexp): lisp-like forward-sexp behavior.
2735         (python-info-current-symbol)
2736         (python-info-statement-starts-block-p): Rename from
2737         python-info-beginning-of-block-p.
2738         (python-info-statement-ends-block-p): Rename from
2739         python-info-end-of-block-p.
2740         (python-info-beginning-of-statement-p)
2741         (python-info-end-of-statement-p)
2742         (python-info-beginning-of-block-p, python-info-end-of-block-p):
2743         New functions.
2745 2012-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2747         * comint.el (comint-preinput-scroll-to-bottom): Preserve the
2748         frame-selected-windows.
2750 2012-10-08  Daniel Colascione  <dancol@dancol.org>
2752         * battery.el (battery-status-function): Check for
2753         w32-battery-status itself, not system-time windows-nt.
2755         * frame.el: Require cl-lib.
2756         (display-format-alist): New variable mapping frame types to
2757         functions that initialize them.
2758         (window-system-for-display): New function: interprets
2759         display-format-alist.
2760         (make-frame-on-display): Remove existing display-selection logic
2761         and just forward to make-frame, which will now DTRT.
2762         (make-frame): Restructure to use window-system-for-display to
2763         figure out how to create a frame on a given display.
2764         (display-mouse-p): Look for frame-type w32, not a particular
2765         system-type.
2767         * loadup.el: Load w32 lisp code when we have the w32 feature.
2769         * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
2770         system-type windows-nt.
2772         * server.el (server-create-window-system-frame): Look for window
2773         type.
2774         (server-proces-filter): Only force a window system when windows-nt
2775         _and_ w32.  Explain why.
2777         * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
2778         of window systems we configure for the mode.
2780         * startup.el (command-line): Mark window system is initialized
2781         after we've done it.
2783         * common-win.el (x-select-text): Look for w32, not windows-nt.
2785         * ns-win.el: Require cl-lib.  Add ourselves to
2786         display-format-alist.
2787         (ns-initialize-window-system): Assert we're not initialized twice.
2789         * w32-win.el: Enable lexical binding; require cl-lib; add
2790         ourselves to display-format-alist.
2791         (w32-handle-dropped-file): Convert incoming dropped files from
2792         Windows paths to Cygwin ones before passing them on to the rest of
2793         Emacs.
2794         (w32-drag-n-drop): New paramter new-frame.  Simplify logic.
2795         (w32-initialize-window-system): Assert we're not initialized twice.
2797         * x-win.el: Require cl-lib; add ourselves to display-format-alist.
2798         (x-initialize-window-system): Assert we're not initialized twice.
2800         * w32-common-fns.el: New File.
2801         (w32-version, w32-using-nt, w32-get-clipboard-data)
2802         (w32-set-clipboard-data, x-set-selection, x-get-selection)
2803         (w32-charset-info-alist, x-last-selected, text)
2804         (x-get-selection-value, x-selection-value): Move here.
2806         * w32-fns.el: Require w32-common-fns.
2807         (w32-version, w32-using-nt, w32-get-clipboard-data)
2808         (w32-set-clipboard-data, x-set-selection, x-get-selection)
2809         (w32-charset-info-alist, x-last-selected, text)
2810         (x-get-selection-value, x-selection-value): Move to
2811         w32-common-fns.
2813         * w32-vars.el:
2814         (w32-allow-system-shell, w32-system-shells): Define only in
2815         non-cygwin case.
2817 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2819         * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
2820         (read-passwd): Remove a few more potential sources of leaks.
2822 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
2824         * progmodes/python.el (inferior-python-mode)
2825         (python-shell-make-comint): Fix initialization of local
2826         variables copied from parent buffer.
2828 2012-10-07  Jan Djärv  <jan.h.d@swipnet.se>
2830         * term/ns-win.el (ns-read-file-name): Update declaration to match
2831         nsfns.m.
2832         (ns-respond-to-change-font): Change fontsize separatly so we are sure
2833         it is set when font is acted upon.
2835 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
2837         Enhancements to indentation.
2838         * progmodes/python.el (python-indent-context): Give priority to
2839         inside-string context.  Make comments indentation markers.
2840         (python-indent-region): Do not mess with strings, unless it's the
2841         enclosing set of quotes.
2843 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2845         * window.el (internal--before-save-selected-window)
2846         (internal--after-save-selected-window): New functions extracted from
2847         save-selected-window.  Make sure we return the `alist' we construct.
2848         (save-selected-window): Use them.
2850         * textmodes/tex-mode.el (tex-recenter-output-buffer):
2851         Use with-selected-window.
2853         * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
2854         forms that define macros (bug#12593).
2856 2012-10-07  Kenichi Handa  <handa@gnu.org>
2858         * international/mule-conf.el (compound-text-with-extensions):
2859         Add :mime-charset property as x-ctext.
2861 2012-10-07  Stefan Merten  <smerten@oekonux.de>
2863         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
2864         (rst-indent-literal-normal, rst-indent-literal-minimized)
2865         (rst-indent-comment): Correct :version tag.
2866         (rst-official-cvs-rev): Correct version string.
2868 2012-10-07  Glenn Morris  <rgm@gnu.org>
2870         * mail/rmailmm.el (rmail-mime-process-multipart):
2871         Do not confuse a multipart message with an epilogue
2872         with a "truncated" one; fixes 2011-06-27 change.  (Bug#10101)
2874 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
2876         Fix shell output retrieval and comint-prompt-regexp init.
2877         * progmodes/python.el (inferior-python-mode):
2878         (python-shell-make-comint): Fix initialization of
2879         comint-prompt-regexp from copied file local variables.
2880         (python-shell-fetched-lines): Remove var.
2881         (python-shell-output-filter-in-progress): Rename from
2882         python-shell-fetch-lines-in-progress.
2883         (python-shell-output-filter-buffer): Rename from
2884         python-shell-fetch-lines-string.
2885         (python-shell-fetch-lines-filter): Delete function.
2886         (python-shell-output-filter): New function.
2887         (python-shell-send-string-no-output): Use them.
2889 2012-10-07  Glenn Morris  <rgm@gnu.org>
2891         * hi-lock.el (hi-lock-process-phrase):
2892         Try to make it less fragile.  (Bug#7161)
2894         * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
2896 2012-10-06  Glenn Morris  <rgm@gnu.org>
2898         * ehelp.el (electric-help-mode): Use help-mode rather than
2899         non-existent mode `help'.
2900         (electric-help-map): Use button-buffer-map.  (Bug#10917)
2902         * textmodes/reftex-vars.el (reftex-create-bibtex-header)
2903         (reftex-create-bibtex-footer): Fix custom types.
2905         * progmodes/sh-script.el (sh-indent-after-continuation):
2906         Add explicit :group.
2908         * textmodes/rst.el (rst-preferred-decorations)
2909         (rst-shift-basic-offset): Clarify obsolescence versions.
2911         * profiler.el (profiler): Add missing group :version tag.
2912         * avoid.el (mouse-avoidance-banish-position):
2913         * proced.el (proced-renice-command):
2914         * calc/calc.el (calc-ensure-consistent-units):
2915         * calendar/icalendar.el (icalendar-import-format-uid):
2916         * net/tramp.el (tramp-save-ad-hoc-proxies):
2917         * progmodes/bug-reference.el (bug-reference-bug-regexp):
2918         * progmodes/flymake.el (flymake-error-bitmap)
2919         (flymake-warning-bitmap, flymake-fringe-indicator-position):
2920         * progmodes/sh-script.el (sh-indent-after-continuation):
2921         * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
2922         (verilog-before-save-font-hook, verilog-after-save-font-hook):
2923         * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
2924         (vhdl-array-index-record-field-in-sensitivity-list)
2925         (vhdl-indent-comment-like-next-code-line):
2926         * textmodes/reftex-vars.el (reftex-ref-style-alist)
2927         (reftex-ref-macro-prompt, reftex-ref-style-default-list)
2928         (reftex-cite-key-separator, reftex-create-bibtex-header)
2929         (reftex-create-bibtex-footer):
2930         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
2931         (rst-indent-literal-normal, rst-indent-literal-minimized)
2932         (rst-indent-comment): Add missing custom :version tags.
2934         * calendar/timeclock.el (timeclock-modeline-display):
2935         Add missing obsolete alias for renamed user option.
2937         * strokes.el (strokes-modeline-string):
2938         * emulation/crisp.el (crisp-mode-modeline-string):
2939         * eshell/esh-mode.el (eshell-status-in-modeline):
2940         Aliases to defcustoms must come before the defcustom.
2942         * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
2943         (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
2944         (cal-tex-cursor-week-monday): Doc fixes.
2945         (cal-tex-cursor-week2-summary): Doc fix.
2946         Rename from cal-tex-cursor-week-at-a-glance.
2948         * calendar/cal-menu.el (cal-menu-context-mouse-menu):
2949         Tweak week descriptions.  Add cal-tex-cursor-week2-summary.
2951         * calendar/calendar.el (calendar-mode-map):
2952         Add cal-tex-cursor-week2-summary.
2954 2012-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2956         * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
2958         * subr.el (read-passwd-map): New var.
2959         (read-passwd): Use `read-string' again.
2960         * minibuffer.el (delete-minibuffer-contents): Make it interactive.
2962 2012-10-06  Jambunathan K  <kjambunathan@gmail.com>
2964         * register.el (append-to-register, prepend-to-register):
2965         Deactivate mark, as does `copy-to-register' (bug#12389).
2967 2012-10-06  Chong Yidong  <cyd@gnu.org>
2969         * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
2971 2012-10-06  Ikumi Keita  <ikumi@ikumi.que.jp>  (tiny change)
2973         * international/characters.el: Fix simple mistake ((car chars) ->
2974         elt), delete duplicated code.
2976 2012-10-06  Glenn Morris  <rgm@gnu.org>
2978         * subr.el (read-passwd): Allow C-u to erase entry.  (Bug#12570)
2980 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
2982         * color.el (color-hsl-to-rgb): Fix incorrect results for
2983         small and large hue values.  (Bug#12559)
2985 2012-10-05  Fabián Ezequiel Gallina  <fgallina@cuca>
2987         Enhancements to docstring formatting when filling paragraphs.
2988         * progmodes/python.el (python-fill-docstring-style): Rename from
2989         python-fill-string-style.  Added new style.
2990         (python-fill-string): Use new style.  Better checks for
2991         docstrings.
2993 2012-10-05  Glenn Morris  <rgm@gnu.org>
2995         * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
2997         * color.el (color-name-to-rgb, color-rgb-to-hex)
2998         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
2999         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
3000         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
3001         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
3003         * emacs-lisp/timer.el (with-timeout): Add missing progn.  (Bug#12577)
3005 2012-10-05  Juanma Barranquero  <lekktu@gmail.com>
3007         * ido.el (ido-directory-too-big-p): Pass dir through file-truename
3008         to get the correct size across symlinks.
3010         * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
3012 2012-10-04  Juri Linkov  <juri@jurta.org>
3014         * replace.el (query-replace-interactive): Declare obsolete.
3015         (query-replace-read-from): Add the last incremental search string
3016         to the list of default values accessible via M-n.
3017         (map-query-replace-regexp): Use `read-regexp'.
3018         (query-replace, query-replace-regexp, query-replace-regexp-eval)
3019         (map-query-replace-regexp, replace-string, replace-regexp):
3020         Fix docstrings to replace mentions of `query-replace-interactive'
3021         with alternatives.  (Bug#12526)
3023 2012-10-04  Juri Linkov  <juri@jurta.org>
3025         * dired.el (dired-shrink-to-fit): Declare obsolete.  (Bug#1806)
3026         (dired-pop-to-buffer): Declare obsolete.
3027         (dired-mark-pop-up): Doc fix.
3029 2012-10-04  Fabián Ezequiel Gallina  <fgallina@cuca>
3031         Allow user to set docstring style for fill-paragraph.
3032         * progmodes/python.el
3033         (python-fill-comment-function, python-fill-string-function)
3034         (python-fill-decorator-function, python-fill-paren-function):
3035         Remove :safe for defcustoms.
3036         (python-fill-string-style): New defcustom
3037         (python-fill-paragraph-function): Enhance context detection.
3038         (python-fill-string): Honor python-fill-string-style settings.
3040 2012-10-04  Martin Rudalics  <rudalics@gmx.at>
3042         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
3043         after setting its buffer (Bug#10805).
3045 2012-10-03  Fabián Ezequiel Gallina  <fgallina@cuca>
3047         Fix cornercase for string syntax.
3048         * progmodes/python.el (python-syntax-propertize-function):
3049         Simplify and enhance the regexp for unescaped quotes.  Now it also
3050         matches quotes in weird situations like the single quote in
3051         "something\"'".
3052         (python-syntax-stringify): Simplify num-quotes detecting code.
3054 2012-10-03  Glenn Morris  <rgm@gnu.org>
3056         * help-macro.el (three-step-help):
3057         Revert 2012-09-29 change.  (Bug#12567)
3059 2012-10-03  Martin Rudalics  <rudalics@gmx.at>
3061         * menu-bar.el (kill-this-buffer): Don't do anything when
3062         `menu-frame' is not alive or visible (Bug#8184).
3064         * emacs-lisp/debug.el (debug): When quitting the debugger window
3065         restore current buffer (Bug#12502).
3067 2012-10-02  Chong Yidong  <cyd@gnu.org>
3069         * progmodes/hideif.el (hif-lookup, hif-defined):
3070         Handle semantic-c-takeover-hideif.
3072 2012-10-02  Paul Eggert  <eggert@cs.ucla.edu>
3074         Change sampling interval units from ms to ns.
3075         * profiler.el (profiler-sampling-interval): Change units
3076         from ms to ns, multiplying the default by 1000000 so that
3077         it remains 1 ms.
3078         (profiler-report-cpu-line-format): Give enough room for
3079         the maximum counters on 64-bit hosts.
3080         (profiler-report-render-calltree-1): Call them "CPU samples",
3081         not "Time (ms)", since they are not milliseconds now (and
3082         never really were).
3084 2012-10-02  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
3086         * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
3087         Fix querying BBDB for entries without a last name (Bug#11580).
3089 2012-10-02  Chong Yidong  <cyd@gnu.org>
3091         * emacs-lisp/eieio.el: Restore Version header.
3093 2012-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3095         * vc/diff-mode.el (diff--auto-refine-data): New var.
3096         (diff-hunk): Use it to delay refinement.
3097         (diff-mode): Remove overlays when we turn off font-lock.
3099         * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
3100         (table-initialize-table-fixed-width-mode)
3101         (table-set-table-fixed-width-mode): Remove functions.
3102         (table-command-list): Move initialization into declaration.
3103         (table--tweak-menu-for-xemacs): Move defun outside mapcar.
3104         (table-with-cache-buffer): Use `declare'.
3105         (table-span-cell): Simplify via CSE.
3106         (table-fixed-width-mode): Use define-minor-mode.
3107         (table-call-interactively, table-funcall, table-apply): Remove.
3108         (table-function): New function, to replace them.
3110         * bookmark.el (bookmark-search-pattern): Remove var.
3111         (bookmark-read-search-input): Remove function.
3112         (bookmark-bmenu-search): Reimplement using a minibuffer.
3114         * faces.el (modeline): Remove obsolete face name.
3116         * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
3117         and give a non-nil default value.
3118         (add-change-log-entry): Simplify accordingly.
3120 2012-10-01  Dmitry Gutov  <dgutov@yandex.ru>
3122         * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
3123         (vc-git-log-edit-toggle-amend): New function.
3124         (vc-git-log-edit-toggle-signoff): New function.
3125         (vc-git-log-edit-mode): New major mode.
3126         (vc-git-log-edit-mode-map): Keymap for it.
3127         (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
3129         * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
3130         header names.
3131         (log-edit-toggle-header): New function.
3132         (log-edit-extract-headers): Accept function values in HEADERS alist.
3134 2012-10-01  David Engster  <deng@randomsample.de>
3136         * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
3137         from symbol property and change message to be more consistent with
3138         Emacs proper.
3139         (eieio-describe-generic): Add filename for each implementation.
3140         Fix indices for generic and normal methods.
3141         (eieio-method-def, eieio-class-def): New buttons.
3142         (eieio-help-find-method-definition)
3143         (eieio-help-find-class-definition): New functions.
3144         (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
3145         class, constructor and method definitions.
3147         * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
3148         information in symbol property.
3149         (scoped-class): Remove.
3150         (eieio-slot-name-index, call-next-method): Check if it is bound.
3152 2012-10-01  Leo P. White  <lpw25@cam.ac.uk>
3154         * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
3155         (eieio-custom-mode): New major mode.
3156         (eieio-customize-object): Use it.
3158 2012-10-01  Eric Ludlam  <zappo@gnu.org>
3160         * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
3161         specifying the expected class, and whether subclassing is allowed.
3162         (eieio-persistent-convert-list-to-object):
3163         (eieio-persistent-validate/fix-slot-value)
3164         (eieio-persistent-slot-type-is-class-p): New functions.
3165         (eieio-named::slot-missing): Doc fix.
3167         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
3168         Stop using unused publd variable.
3170         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
3171         (eieio-speedbar-description, eieio-speedbar-derive-line-path)
3172         (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
3173         (eieio-speedbar-handle-click): Do not specify a class for the
3174         method.  Fixes method invocation order problems with EDE.
3176 2012-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3178         * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
3179         (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
3181 2012-10-01  Karl Fogel  <kfogel@red-bean.com>
3183         * bookmark.el (bookmark-version-control): Give tags in the
3184         :type choices (Bug#12309), and improve doc string.
3185         (bookmark-write-file): Bind `print-circle' to `t' to allow
3186         circular custom bookmark types.  (Bug#12503)
3188 2012-10-01  Paul Eggert  <eggert@cs.ucla.edu>
3190         Revert the FOLLOW-SYMLINKS change for file-attributes.
3191         * files.el (remote-file-name-inhibit-cache, after-find-file):
3192         * time.el (display-time-file-nonempty-p): Undo last change.
3194         * profiler.el (profiler-sampling-interval): Change default back to 1.
3195         See Stefan Monnier in
3196         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
3198 2012-10-01  Fabián Ezequiel Gallina  <fgallina@cuca>
3200         Shell output catching a la gud-gdb.
3201         * progmodes/python.el (python-shell-fetch-lines-in-progress)
3202         (python-shell-fetch-lines-string, python-shell-fetched-lines):
3203         New Vars.
3204         (python-shell-fetch-lines-filter): New function.
3205         (python-shell-send-string-no-output): Use them.
3207 2012-09-30  Tomohiro Matsuyama  <tomo@cx4a.org>
3209         * profiler.el (profiler-sampling-interval): Rename from
3210         profiler-sample-interval.
3211         (profiler-sampling-interval): Default to 10.
3212         (profiler-find-profile): New command (was profiler-find-log).
3213         (profiler-find-profile-other-window): New command.
3214         (profiler-find-profile-other-frame): New command.
3215         (profiler-profile): Introduce API-level data structure.
3217 2012-09-30  Paul Eggert  <eggert@cs.ucla.edu>
3219         file-attributes has a new optional arg FOLLOW-SYMLINKS.
3220         * files.el (remote-file-name-inhibit-cache):
3221         * time.el (display-time-file-nonempty-p): Use it.
3222         * files.el (after-find-file): Don't chase links before calling
3223         file-exists-p, as file-exists-p already does the right thing.
3225 2012-09-30  Ralf Angeli  <angeli@caeruleus.net>
3227         Merge from standalone RefTeX repository.
3229         The following ChangeLog entries are shortened versions of the
3230         original ones with file paths adapted.  A not so strongly edited
3231         version of the original ChangeLog can be found in the commit log.
3233         * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
3234         (reftex-arg-cite): Use `reftex-cite-key-separator'.
3235         Correctly handle new value type returned by `reftex-citation'.
3237         * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
3238         that entries with whitespace at various places are found.
3239         Doc fix. Include entries that are cross-referenced from cited entries.
3240         Include @String definitions in the resulting bib file.  Add header
3241         and footer defined in `reftex-create-bibtex-header' and
3242         `reftex-create-bibtex-footer'.
3243         (reftex-do-citation): Make it possible again to insert
3244         non-existent entries.  Save match data when asking for optional
3245         arguments. Return all keys, not just the first one.
3246         (reftex-all-used-citation-keys): Fix regexp to correctly extract
3247         all citations in the same line.
3248         (reftex-parse-bibtex-entry): Accept additional optional argument
3249         `raw' and keep quotes or braces if it is non-nil.  Match fields
3250         containing hyphens besides word constituents.
3251         (reftex-get-string-refs): New function.
3252         (reftex-extract-bib-entries): Check if BibTeX file changed on disk
3253         and ask if it should be reread in case it did.
3254         (reftex-pop-to-bibtex-entry)
3255         (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
3256         entries with spaces or tabs in front of arguments.
3257         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
3258         (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
3259         Match entries containing numbers and symbol constituents.
3260         (reftex-do-citation, reftex-figure-out-cite-format):
3261         Use `reftex-cite-key-separator'.
3263         * textmodes/reftex-dcr.el: Move provide statement to end of file.
3264         (reftex-mouse-view-crossref): Explain why point is set.
3266         * textmodes/reftex-global.el: Whitespace changes.
3268         * textmodes/reftex-index.el: Move provide statement to end of
3269         file.
3270         (reftex-index-selection-or-word): Use `reftex-region-active-p'.
3271         (reftex-index-visit-phrases-buffer): Set marker when visiting
3272         buffer.  This allows for returning from the phrases file to the
3273         file one was just editing instead of the file where the last
3274         phrases was added from.
3275         (reftex-index-phrases-syntax-table): New variable.  Give ?\"
3276         punctuation syntax as it usually is not used as string quote in
3277         TeX-related modes and may occur unmatched.  The change also
3278         prevents fontification of quoted content.
3279         (reftex-index-phrases-mode): Use it.
3281         * textmodes/reftex-parse.el (reftex-parse-from-file):
3282         Move backward one char if a `\' was matched after a section macro.
3283         (reftex-parse-from-file): Use beginning of match instead of end as
3284         bound.
3286         * textmodes/reftex-ref.el: Adapt creation of
3287         `reftex-<package>-<macro>' functions to new structure of
3288         `reftex-ref-style-alist'.
3289         (reftex-reference): Use `reftex-ref-style-list' function.
3290         Adapt to new structure of `reftex-ref-style-alist'.  Prompt for a
3291         reference macro if `reftex-ref-macro-prompt' is non-nil.
3292         (reftex-reference): Pass refstyle to `reftex-format-special'.
3293         Determine reference macro by looking at
3294         `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
3295         Use only one special format function.
3296         (reftex-varioref-vref, reftex-fancyref-fref)
3297         (reftex-fancyref-Fref): Remove definitions.  The functions are now
3298         generated from `reftex-ref-style-alist'.
3299         (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
3300         Remove.
3301         (reftex-format-special): New function.
3303         * textmodes/reftex-sel.el
3304         (reftex-select-cycle-ref-style-internal): Adapt to new structure
3305         of `reftex-ref-style-alist'. Remove code for testing macro type.
3306         (reftex-select-toggle-varioref)
3307         (reftex-select-toggle-fancyref): Remove.
3308         (reftex-select-cycle-ref-style-internal)
3309         (reftex-select-cycle-ref-style-forward)
3310         (reftex-select-cycle-ref-style-backward): New functions.
3311         (reftex-select-label-map): Use `v' and `V' for general cycling
3312         through reference styles.  Add `p' for switching between number
3313         and page reference types.
3315         * textmodes/reftex-toc.el (reftex-re-enlarge):
3316         Call `enlarge-window' only if there is something to do because in Emacs
3317         the horizontal version throws an error even if the parameter is 0.
3319         * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
3320         (reftex-plug-into-AUCTeX): Doc fix.
3321         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
3322         string.  Adapt to new name.
3323         (reftex-ref-style-alist): Change structure so that it is not
3324         possible to use multiple different package names within a style.
3325         Remove the symbols for symbols for macro type distinction.
3326         Add characters for macro selection.
3327         (reftex-ref-macro-prompt, reftex-create-bibtex-header)
3328         (reftex-create-bibtex-footer): New variables.
3329         (reftex-format-ref-function): Mention third argument of special
3330         format function.
3331         (reftex-ref-style-alist, reftex-ref-style-default-list):
3332         New variables.
3333         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
3334         to new implementation.  Mark as obsolete.  Add compatibility code
3335         for honoring the variable values in case they are set.
3336         (reftex-cite-format-builtin, reftex-bibliography-commands):
3337         Add support for ConTeXt.
3338         (reftex-format-ref-function, reftex-format-cite-function):
3339         Fix custom type.
3340         (reftex-cite-key-separator): New variable.
3342         * textmodes/reftex.el (reftex-syntax-table-for-bib)
3343         (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
3344         `reftex-syntax-table' because parens have to retain their paren
3345         syntax in order for parsing of BibTeX entries like @book(...) to
3346         work.
3347         (reftex-in-comment): Do not error out if `comment-start-skip' is
3348         not set.  Deal correctly with escaped comment characters.
3349         (reftex-tie-multifile-symbols): Add doc string.
3350         Initialize `reftex-ref-style-list'.
3351         (reftex-untie-multifile-symbols): Add doc string.
3352         (reftex-add-index-macros): Doc fix.
3353         (reftex-ref-style-activate, reftex-ref-style-toggle)
3354         (reftex-ref-style-list): New functions.
3355         (reftex-mode-menu): Use them.  Adapt to new structure of
3356         `reftex-ref-style-alist'.
3357         (reftex-select-with-char): Kill the RefTeX Select buffer when
3358         done.
3359         (reftex-remove-if): New function.
3360         (reftex-erase-all-selection-and-index-buffers)
3361         (reftex-mode-menu): Reference styles are now computed from
3362         `reftex-ref-style-alist'.  Fix typo.
3363         (reftex-report-bug): New function.
3364         (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
3365         algorithms with O(n log n).  Introduce optional argument SORT (not
3366         yet used).
3368 2012-09-30  Fabián Ezequiel Gallina  <fgallina@cuca>
3370         Enhancements for triple-quote string syntax.
3371         * progmodes/python.el (python-syntax-propertize-function):
3372         Match both quote cases in one regexp.
3373         (python-syntax-stringify): Handle matches properly.
3375 2012-09-30  Juri Linkov  <juri@jurta.org>
3377         * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
3378         to nil around the call to `insert' to prevent
3379         directory time modification by lock_file.  (Bug#2295)
3380         * tar-mode.el (tar-summarize-buffer): Idem.
3382 2012-09-30  Juri Linkov  <juri@jurta.org>
3384         * facemenu.el (list-colors-sort): Add option "Luminance".
3385         (list-colors-sort-key): Implement it.
3387         * vc/diff-mode.el (diff-refine-removed):
3388         * vc/ediff-init.el (ediff-fine-diff-A):
3389         * vc/smerge-mode.el (smerge-refined-removed):
3390         Change background color "#ffaaaa" to "#ffbbbb".  (Bug#10181)
3392 2012-09-30  Jan Djärv  <jan.h.d@swipnet.se>
3394         * term/ns-win.el (x-file-dialog): New function.
3396 2012-09-30  Juanma Barranquero  <lekktu@gmail.com>
3398         * ido.el (ido-max-directory-size): Default to nil; the current
3399         default is small for POSIX systems, and impractical on Windows 7
3400         now that lstat returns directory sizes for NTFS.
3402 2012-09-30  Martin Rudalics  <rudalics@gmx.at>
3404         In buffer display functions handle window-height/window-width
3405         alist entries.  Suggested by Juri Linkov as fix for Bug#1806.
3406         * window.el (window--display-buffer): New argument ALIST.
3407         Obey window-height and window-width alist entries.
3408         (window--try-to-split-window): New argument ALIST.
3409         Bind window-combination-limit to t when the window's size shall be
3410         changed and window-combination-limit equals `window-size'.
3411         (display-buffer-in-atom-window)
3412         (display-buffer-in-major-side-window)
3413         (display-buffer-in-side-window, display-buffer-same-window)
3414         (display-buffer-reuse-window, display-buffer-pop-up-frame)
3415         (display-buffer-pop-up-window, display-buffer-below-selected)
3416         (display-buffer-at-bottom, display-buffer-in-previous-window)
3417         (display-buffer-use-some-window): Adjust all callers of
3418         window--display-buffer and window--try-to-split-window.
3419         (fit-frame-to-buffer): New option.
3420         (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
3421         is non-nil.
3422         (display-buffer-in-major-side-window): Evaluate window-height /
3423         window-width alist entries.
3425         * help.el (temp-buffer-resize-frames)
3426         (temp-buffer-resize-regexps): Remove options.
3427         (temp-buffer-resize-mode): Adjust doc-string.
3428         (resize-temp-buffer-window): Don't consult
3429         temp-buffer-resize-regexps.  Use fit-frame-to-buffer instead of
3430         temp-buffer-resize-frames.
3432         * dired.el (dired-mark-pop-up):
3433         Call display-buffer-below-selected with a fit-window-to-buffer alist
3434         entry.
3436 2012-09-30  Chong Yidong  <cyd@gnu.org>
3438         * server.el (server-host): Document the security implications.
3439         (server-auth-key): Doc fix.
3441         * startup.el (initial-buffer-choice): Doc fix.
3443         * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
3445         * simple.el (delete-trailing-whitespace): Avoid an unnecessary
3446         restriction change.
3448         * bindings.el (goto-map): Bind M-g TAB to move-to-column.
3450         * help-fns.el (help-fns--obsolete): Fix last change.
3452 2012-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3454         * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
3455         (minor-mode-map-alist): Remove redundant code.
3457         * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
3458         visited in a buffer.
3459         (cvs-insert-visited-file): New function.
3460         (find-file-hook): Use it.
3462         * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
3464         * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
3465         chose face.
3466         (log-edit-empty-buffer-p): Don't require a space after a header.
3468         * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
3470         * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
3472         * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
3473         a proper minor-mode.
3475         * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
3477 2012-09-29  Glenn Morris  <rgm@gnu.org>
3479         * winner.el (winner-mode): Remove variable (let define-minor-mode
3480         handle it).
3481         (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
3482         Doc fixes.
3483         (winner-mode-leave-hook): Rename to winner-mode-off-hook.
3484         (winner-mode): Use define-minor-mode.
3486         * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
3487         the full definition in loaddefs, rather than duplicating it.
3489         * help-macro.el (three-step-help): No need to autoload defcustom.
3491         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
3492         (inferior-lisp-program, inferior-lisp-load-command)
3493         (inferior-lisp-prompt, inferior-lisp-mode-hook):
3494         No need to autoload defcustoms.
3496         * hippie-exp.el (hippie-expand-try-functions-list)
3497         (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
3498         (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
3499         (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
3500         (hippie-expand-only-buffers): No need to autoload defcustoms.
3501         * progmodes/vhdl-mode.el (vhdl-line-expand):
3502         Explicitly load hippie-exp, so it does not get autoloaded
3503         while hippie-expand-try-functions-list is let-bound.
3505 2012-09-28  Glenn Morris  <rgm@gnu.org>
3507         * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
3509         * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
3510         Only "cl.el" counts as cl these days.
3512 2012-09-28  Juri Linkov  <juri@jurta.org>
3514         Display archive errors in the echo area instead of inserting
3515         to the file buffer.
3517         * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
3518         to STDERR-TEST that can be a regexp matching a successful output.
3519         Create a temporary file and redirect stderr to it.  Search for
3520         STDERR-TEST in the stderr output and display it in the echo area
3521         if no match is found.
3522         (archive-extract-by-file): New function like
3523         `archive-extract-by-stdout' but extracting archives to files
3524         and looking for successful matches in stdout.  Function body is
3525         mostly copied from `archive-rar-extract'.
3526         (archive-rar-extract): Use `archive-extract-by-file'.
3527         (archive-7z-extract): Use `archive-extract-by-stdout'.  (Bug#10347)
3529 2012-09-28  Leo Liu  <sdl.web@gmail.com>
3531         * pcomplete.el (pcomplete-show-completions):
3532         Use minibuffer-message to make pcomplete usable in minibuffer.
3534         * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
3536 2012-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3538         * type-break.el: Use lexical-binding.
3539         (type-break-mode): Use define-minor-mode.
3541         * emacs-lisp/pcase.el (pcase--mark-used): New.
3542         (pcase--u1): Use it (bug#12512).
3544         * custom.el (load-theme): Set buffer-file-name so the load is recorded
3545         in load-history with the right file name.
3547 2012-09-28  Tassilo Horn  <tsdh@gnu.org>
3549         * doc-view.el (doc-view-current-cache-doc-pdf): New function.
3550         (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
3551         (doc-view-get-bounding-box): Make bounding box slicing work for
3552         ODF and DVI documents.
3554 2012-09-28  Glenn Morris  <rgm@gnu.org>
3556         * type-break.el (type-break-mode, type-break-interval)
3557         (type-break-good-rest-interval, type-break-keystroke-threshold):
3558         No need to autoload.
3559         (type-break-good-rest-interval, type-break-keystroke-threshold):
3560         Add :set-after.
3562 2012-09-28  Chong Yidong  <cyd@gnu.org>
3564         * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
3565         Add :version tag.
3567 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3569         * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
3571 2012-09-27  Glenn Morris  <rgm@gnu.org>
3573         * faces.el (x-display-name): Declare (for without-x builds).
3575         * linum.el (linum-format): Don't autoload it.  Improve :type.
3577         * progmodes/tcl.el: Don't require outline when compiling.
3578         (outline-regexp, outline-level): Declare.
3579         * textmodes/sgml-mode.el: Don't require outline when compiling.
3580         (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
3582         * term.el (term-ansi-reset):
3583         Try setting term-ansi-face-already-done to nil.  (Bug#11785)
3585         * vc/vc.el (vc-next-action): Only gripe about committing read-only
3586         files for RCS and SCCS.  (Bug#9781)
3588 2012-09-27  Chong Yidong  <cyd@gnu.org>
3590         * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
3591         change; value should be t.
3593 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3595         * image-mode.el: Use lexical-binding.
3596         (image-mode-winprops): Use t to stand for the window of
3597         a buffer that's not displayed.
3598         * doc-view.el (doc-view-new-window-function): Handle the new
3599         t in winprops.
3600         (doc-view-enlarge): Make it a real nop if the size is not changed.
3601         (doc-view-display): Handle the case where the buffer is not (yet?)
3602         displayed in any window.
3603         (doc-view-saved-settings): New var.
3604         (doc-view-mode): Use it.
3605         (doc-view-fallback-mode): Set it.
3607         * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
3608         Set lexical-binding.
3609         (minibuffer-eldef-shorten-default): New var.
3610         (minibuffer-default-in-prompt-regexps): Use it for new default.
3611         (minibuf-eldef-setup-minibuffer): Add replacement functionality.
3613 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
3615         * international/uni-bidi.el:
3616         * international/uni-category.el:
3617         * international/uni-name.el:
3618         * international/uni-numeric.el: Regenerate.
3620 2012-09-26  Tomohiro Matsuyama  <tomo@cx4a.org>
3621             Stefan Monnier  <monnier@iro.umontreal.ca>
3623         * profiler.el: New file.
3625 2012-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3627         * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
3628         (testcover-reinstrument): Simplify with CSE.
3630 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
3632         * window.el (temp-buffer-window-setup): Fix typo in docstring.
3634 2012-09-25  Wilson Snyder  <wsnyder@wsnyder.org>
3636         * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
3637         (verilog-auto-input, verilog-auto-insert-lisp)
3638         (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
3639         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
3640         (verilog-auto-unused, verilog-auto-wire)
3641         (verilog-forward-or-insert-line): Fix AUTOs with no trailing
3642         newline.  Reported by Andrew Jones.
3643         (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
3644         Reported by Brad Dobbie.
3645         (verilog-batch-delete-trailing-whitespace):
3646         Create verilog-batch-delete-trailing-whitespace.
3647         Reported by Brad Dobbie.
3648         (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
3649         parameters from another module.  Reported by Dan Katz.
3650         (verilog-auto, verilog-auto-assign-modport)
3651         (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
3652         AUTOINOUTMODPORT for UVM interface module shell generation.
3653         Reported by Brad Dobbie.
3654         (verilog-auto-inst-interfaced-ports): Make default nil, as more
3655         standard behavior.
3656         (verilog-auto): Fix AUTO parameters with parenthesis arguments.
3657         Reported by Matt Martin.
3659 2012-09-25  Martin Rudalics  <rudalics@gmx.at>
3661         * window.el (window--resize-child-windows): When resizing child
3662         windows proportionally, process them in reverse order to
3663         preserve the "when splitting a window the new one gets the odd
3664         line" behavior.
3665         (window--resize-root-window-vertically): When resizing the
3666         minibuffer window try to affect only windows at the bottom of the
3667         frame.  (Bug#12419)
3669 2012-09-25  Chong Yidong  <cyd@gnu.org>
3671         * subr.el (declare): Doc fix.
3673         * help-fns.el (help-fns--obsolete): Handle macros properly.
3675 2012-09-25  Chong Yidong  <cyd@gnu.org>
3677         * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
3678         this function obsolete.
3680         * calendar/cal-x.el (calendar-two-frame-setup)
3681         (calendar-only-one-frame-setup, calendar-one-frame-setup):
3682         * calendar/calendar.el (american-calendar, european-calendar)
3683         (calendar-for-loop):
3684         * comint.el (comint-dynamic-simple-complete)
3685         (comint-dynamic-complete-as-filename, comint-unquote-filename):
3686         * desktop.el (desktop-load-default):
3687         * dired-x.el (dired-omit-here-always)
3688         (dired-hack-local-variables, dired-default-directory):
3689         * emacs-lisp/derived.el (derived-mode-class):
3690         * emacs-lisp/timer.el (timer-set-time-with-usecs):
3691         * emacs-lock.el (toggle-emacs-lock):
3692         * epa.el (epa-display-verify-result):
3693         * epg.el (epg-sign-keys, epg-start-sign-keys)
3694         (epg-passphrase-callback-function):
3695         * eshell/esh-util.el (eshell-for):
3696         * eshell/eshell.el (eshell-remove-from-window-buffer-names)
3697         (eshell-add-to-window-buffer-names):
3698         * files.el (locate-file-completion):
3699         * imenu.el (imenu-example--create-c-index)
3700         (imenu-example--create-lisp-index)
3701         (imenu-example--lisp-extract-index-name)
3702         (imenu-example--name-and-position):
3703         * international/mule-cmds.el (princ-list):
3704         * international/mule-diag.el (decode-codepage-char):
3705         * international/mule-util.el (detect-coding-with-priority):
3706         * iswitchb.el (iswitchb-read-buffer):
3707         * mail/mailalias.el (mail-complete):
3708         * mail/sendmail.el (mail-sent-via):
3709         * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
3710         (mouse-major-mode-menu):
3711         * password-cache.el (password-read-and-add):
3712         * pcomplete.el (pcomplete-parse-comint-arguments):
3713         * progmodes/sh-script.el (sh-maybe-here-document):
3714         * replace.el (query-replace-regexp-eval):
3715         * savehist.el (savehist-load):
3716         * simple.el (choose-completion-delete-max-match):
3717         * term.el (term-dynamic-simple-complete):
3718         * vc/ediff-init.el (ediff-check-version):
3719         * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
3720         * vc/vc.el (vc-diff-switches-list):
3721         * view.el (view-return-to-alist-update): Likewise.
3723         * subr.el (eval-next-after-load, makehash, insert-string)
3724         (assoc-ignore-representation, assoc-ignore-case): Use declare to
3725         mark obsolete.
3726         (mode-line-inverse-video): Variable deleted.
3728         * international/mule-util.el (string-to-sequence): Remove.
3730         * calendar/calendar.el (calendar-version):
3731         * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
3732         (icalendar-convert-diary-to-ical):
3733         * cus-edit.el (custom-mode):
3734         * ansi-color.el (ansi-color-unfontify-region):
3735         * international/latin1-disp.el (latin1-char-displayable-p):
3736         * progmodes/cwarn.el (turn-on-cwarn-mode):
3737         * progmodes/which-func.el (which-func-update-1):
3738         Use define-obsolete-function-alias.
3740         * net/newst-backend.el (newsticker-cache-filename):
3741         * net/newst-treeview.el (newsticker-groups-filename):
3742         Fix incorrect obsolescence declaration.
3744         * allout.el (allout-passphrase-hint-string): Likewise.
3745         (allout-init): Use a declare form to mark obsolete.
3747         * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
3748         this applies to functions.
3750         * iswitchb.el (iswitchb-read-buffer): Move code of
3751         iswitchb-define-mode-map here, and delete that obsolete function.
3753         * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
3754         font-lock-reference-face.
3756 2012-09-25  Glenn Morris  <rgm@gnu.org>
3758         * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
3759         Doc fixes.
3761         * eshell/em-term.el (eshell-term-name):
3762         Default to term-term-name.  (Bug#12485)
3764 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
3766         * progmodes/python.el (python-shell-send-buffer): Better handling
3767         of "if __name__ == '__main__':" conditionals when sending the buffer.
3769 2012-09-24  Glenn Morris  <rgm@gnu.org>
3771         * eshell/esh-cmd.el (eshell-find-alias-function):
3772         Tighten up file-name regexp.  (Bug#12499)
3774 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
3776         Enhancements for triple-quote string syntax.
3777         * progmodes/python.el (python-quote-syntax): Remove.
3778         (python-syntax-propertize-function): New value.
3779         (python-syntax-count-quotes, python-syntax-stringify):
3780         New functions.
3782 2012-09-24  Chong Yidong  <cyd@gnu.org>
3784         * mail/supercite.el (sc-version): Remove obsolete function.
3785         (sc-describe): Don't mark as obsolete, since it is bound.
3786         (sc-submit-bug-report): Remove.
3788         * vc/log-edit.el (cvs-changelog-full-paragraphs)
3789         (cvs-commit-buffer-require-final-newline): Remove.
3790         (log-edit-require-final-newline)
3791         (log-edit-changelog-full-paragraphs): Default to t.
3793         * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
3794         * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
3795         * vc/vc.el (vc-checkout-carefully): Likewise.
3797         * vc/emerge.el (emerge-mode): Make it an obsolete alias.
3798         (emerge-version): Remove.
3800         * progmodes/compile.el (compile-internal): Remove.
3801         (compilation-parse-errors-function): Fix typo.
3803         * international/mule.el (set-char-table-default): Remove.
3804         (set-coding-priority, make-coding-system, generic-char-p)
3805         (charset-list, charset-bytes, charset-id): Use declare to mark
3806         functions as obsolete.
3808         * vc/pcvs-defs.el (cvs-buffer-name-alist)
3809         (cvs-invert-ignore-marks): Remove references to obsolete vars.
3810         * vc/vc-hooks.el (vc-default-registered): Don't use
3811         vc-master-templates.
3813         * font-lock.el (font-lock-reference-face):
3814         Use define-obsolete-variable-alias.
3816         * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
3817         * calendar/calendar.el (calendar-font-lock-keywords):
3818         * calendar/diary-lib.el (diary-font-lock-keywords)
3819         (diary-fancy-font-lock-keywords):
3820         * textmodes/reftex-sel.el (reftex-insert-docstruct):
3821         * textmodes/reftex-index.el (reftex-insert-index):
3822         * textmodes/reftex-cite.el (reftex-format-bib-entry):
3823         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3824         * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
3825         * progmodes/prolog.el (prolog-font-lock-keywords):
3826         * progmodes/idlwave.el (idlwave-idl-keywords):
3827         * progmodes/ada-mode.el (ada-font-lock-keywords):
3828         * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
3830 2012-09-24  Glenn Morris  <rgm@gnu.org>
3832         * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
3834 2012-09-23  Fabián Ezequiel Gallina  <fgallina@cuca>
3836         * progmodes/python.el (python-indent-line): More consistent cursor
3837         movement behavior.
3839 2012-09-23  Stefan Merten  <smerten@oekonux.de>
3841         * textmodes/rst.el: Fix compiler warning.
3843 2012-09-23  Roland Winkler  <winkler@gnu.org>
3845         * textmodes/bibtex.el (bibtex-autokey-transcriptions):
3846         Transcribe also LaTeX hyphenation.
3847         (bibtex-reformat): Bug fix. Do not quote twice the elements of
3848         bibtex-reformat-previous-options.
3850 2012-09-23  Roland Winkler  <winkler@gnu.org>
3852         * proced.el (proced-renice-command): New variable.
3853         (proced-marked-processes): New function.
3854         (proced-with-processes-buffer): New macro.
3855         (proced-send-signal): Use them.
3856         (proced-renice): New command bound to r.
3858 2012-09-23  Roland Winkler  <winkler@gnu.org>
3860         * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
3861         ibuffer-saved-filter-groups has one element, shortcut the call of
3862         completing-read.  (Bug#12331)
3864 2012-09-23  Chong Yidong  <cyd@gnu.org>
3866         * bindings.el (mode-line-toggle-read-only):
3867         * bs.el (bs-toggle-readonly):
3868         * buff-menu.el (Buffer-menu-toggle-read-only):
3869         * dired.el (dired-toggle-read-only):
3870         * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
3872 2012-09-23  Chong Yidong  <cyd@gnu.org>
3874         * image.el (image-type-available-p): Adapt to init-image-library
3875         argument changes.
3877 2012-09-22  Juri Linkov  <juri@jurta.org>
3879         * dired.el (dired-mode-map): Add [remap read-only-mode] for
3880         `dired-toggle-read-only'.  (Bug#12462)
3882 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
3884         * subr.el (temp-output-buffer-show): New function.
3885         (with-output-to-temp-buffer): Call temp-output-buffer-show
3886         instead of internal-temp-output-buffer-show.
3888 2012-09-22  Chong Yidong  <cyd@gnu.org>
3890         * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
3891         (Bug#12462).
3893         * repeat.el (repeat): Doc fix (Bug#12348).
3895         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
3896         (Bug#10909).
3898         * simple.el (shell-command-on-region): Doc fix.
3899         (read-only-mode): Doc fix.
3901 2012-09-22  Eli Zaretskii  <eliz@gnu.org>
3903         * emacs-lisp/timer.el (run-with-idle-timer)
3904         (timer-activate-when-idle): Warn against reinvoking an idle timer
3905         from within its own timer action.  (Bug#12447)
3907 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
3909         * cus-start.el (window-combination-limit): Add new optional
3910         values.
3911         * window.el (temp-buffer-window-show)
3912         (window--try-to-split-window): Handle new values of
3913         window-combination-limit (Bug#1806).
3914         (split-window): Test window-combination-limit for t instead of
3915         non-nil.
3916         (display-buffer-at-bottom): New buffer display action function.
3917         * help.el (temp-buffer-resize-regexps): New option.
3918         (temp-buffer-resize-mode): Rewrite doc-string.
3919         (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
3920         Don't resize reused window.  Suggested by Glenn Morris.
3922 2012-09-22  Stefan Merten  <smerten@oekonux.de>
3924         * textmodes/rst.el: Revamp section title faces.
3925         (rst-official-version)
3926         (rst-package-emacs-version-alist): Sync with official version
3927         V1.4.0.
3928         (rst-faces-defaults, rst-set-level-default)
3929         (rst-level-face-max, rst-level-face-base-color)
3930         (rst-level-face-base-light, rst-level-face-format-light)
3931         (rst-level-face-step-light, rst-define-level-faces): Obsolete.
3932         (rst-adornment-faces-alist): Match new setup.
3933         (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
3934         (rst-level-5, rst-level-6): New faces.
3936 2012-09-22  Chong Yidong  <cyd@gnu.org>
3938         * simple.el (undo): Handle indirect buffers (Bug#8207).
3940 2012-09-21  Leo Liu  <sdl.web@gmail.com>
3942         IDO: Disable match re-ordering for buffer switching.
3943         * ido.el (ido-buffer-disable-smart-matches): New variable.
3944         (ido-set-matches-1): Use it.  (Bug#2042)
3946 2012-09-21  Jose Marino  <marinoj@nso.edu>  (tiny change)
3948         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
3949         Fix 2011-05-17 change.  (Bug#12418)
3951 2012-09-21  Leo Liu  <sdl.web@gmail.com>
3953         * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
3955 2012-09-21  Glenn Morris  <rgm@gnu.org>
3957         * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
3958         Be more robust about locating simple.el.
3960 2012-09-21  Glenn Morris  <rgm@gnu.org>
3962         * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
3964 2012-09-21  Joel Bion  <jpbion@westvi.com>  (tiny change)
3966         * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz.  (Bug#12382)
3968 2012-09-20  Juri Linkov  <juri@jurta.org>
3970         * replace.el (query-replace-read-from): Use `read-regexp' instead
3971         of `read-from-minibuffer' when `regexp-flag' is non-nil.
3972         (occur-read-primary-args): Use `read-regexp' instead of
3973         `read-string'.
3974         (multi-occur-in-matching-buffers): Use `read-regexp' instead of
3975         `read-from-minibuffer'.
3976         * isearch.el (isearch-occur): Use `read-regexp' instead of
3977         `read-string'.
3978         * dired.el (dired-read-regexp): Use `read-regexp' instead of
3979         `read-from-minibuffer'.
3980         * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
3981         of `read-string'.  (Bug#7567)
3983         * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
3984         and allow accepting a list of strings prepended to a list of
3985         standard default values.  Doc fix.  (Bug#12321)
3987         * replace.el (read-regexp): Add HISTORY arg.  (Bug#7567)
3989         * replace.el (read-regexp): Don't add ": " when PROMPT already
3990         ends with a colon and space.  (Bug#12321)
3992 2012-09-20  Tassilo Horn  <tsdh@gnu.org>
3994         * doc-view.el (doc-view-display): Better fix for the cl-assertion
3995         error.
3997 2012-09-20  Stefan Merten  <smerten@oekonux.de>
3999         * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
4000         Fixes feature request bug#11711.
4001         (rst-mode): Create `imenu-create-index-function'.
4002         (rst-get-stripped-line): Delete after refactoring.
4003         (rst-section-tree, rst-section-tree-rec)
4004         (rst-section-tree-point): Refactor and document properly.
4005         (rst-imenu-find-adornments-for-position)
4006         (rst-imenu-convert-cell, rst-imenu-create-index):
4007         New function.
4009 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4011         * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
4012         (macroexp--expand-all): Use it.
4013         (macroexp--funcall-and-return): Remove by folding it into its sole
4014         caller (macroexp--warn-and-return).
4015         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
4016         Use macroexp--obsolete-warning.
4018         * calc/calc.el: Fix last change by removing the whole chunk, since it
4019         was only needed back when Calc was not bundled.
4021 2012-09-20  Martin Rudalics  <rudalics@gmx.at>
4023         * emacs-lisp/debug.el (debug): Restore assignment to
4024         debugger-old-buffer removed on 2012-09-08.
4026 2012-09-20  Juri Linkov  <juri@jurta.org>
4028         * dired-aux.el (dired-diff): Remove (require 'diff) since
4029         `diff-latest-backup-file' is now autoloaded.
4031 2012-09-20  Chong Yidong  <cyd@gnu.org>
4033         * vc/diff.el (diff-latest-backup-file): Autoload.
4035 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4037         * calc/calc.el: Remove redundant autoload shape check.
4038         (sel-mode): Don't defvar.
4039         (calc-get-stack-element): Add `sel-mode' arg instead.
4040         (calc-top, calc-top-list): Pass it this additional argument.
4041         * calc/calc-store.el (calc-store-map):
4042         * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
4043         (calc-map-equation, calc-outer-product, calc-inner-product):
4044         * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
4046         * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
4048 2012-09-19  Juri Linkov  <juri@jurta.org>
4050         * dired-aux.el (dired-diff): Add (require 'diff) because
4051         `diff-latest-backup-file' is not autoloaded.
4052         (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
4053         of `dired-get-filename' to t to not report error when there is
4054         no default file on the current line.
4056 2012-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4058         * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
4059         macroexp--eval-if-compile.
4060         (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
4061         (macroexp--expand-all): Use them (bug#12371).
4063         * doc-view.el (doc-view-guess-paper-size)
4064         (doc-view-scale-bounding-box): Fix unbound `caddr'.
4066 2012-09-19  Tassilo Horn  <tsdh@gnu.org>
4068         New feature: set optimal slice from BoundingBox information.
4069         * doc-view.el (doc-view-mode-map): Add keybinding.
4070         (doc-view-menu): Add menu entry.
4071         (doc-view-set-slice): Adapt docstring.
4072         (doc-view-get-bounding-box, doc-view-guess-paper-size)
4073         (doc-view-scale-bounding-box)
4074         (doc-view-set-slice-from-bounding-box): New functions.
4075         (doc-view-paper-sizes): New defvar.
4077 2012-09-19  Glenn Morris  <rgm@gnu.org>
4079         * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
4080         (byte-compile-log-warning): Autoload.  (Bug#12371)
4082         * calendar/calendar.el (calendar-american-month-header)
4083         (calendar-european-month-header, calendar-iso-month-header)
4084         (calendar-month-header): New options.
4085         (calendar-set-date-style): Set calendar-month-header.  Redraw calendar.
4086         (calendar-generate-month): Use calendar-month-header.  (Bug#9510)
4088 2012-09-19  Jan Djärv  <jan.h.d@swipnet.se>
4090         * startup.el (command-line-ns-option-alist): Add -g and --geometry.
4092 2012-09-18  Juri Linkov  <juri@jurta.org>
4094         * dired-aux.el (dired-diff): Restore original functionality of
4095         getting the default value, but keep new feature of using the
4096         latest existing backup file (`diff-latest-backup-file').
4098 2012-09-18  Juri Linkov  <juri@jurta.org>
4100         * dired.el (dired-mark): If the region is active in Transient Mark
4101         mode, mark all files in the active region.  Doc fix.
4102         (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
4103         Doc fix.  (Bug#10624)
4105 2012-09-18  Juri Linkov  <juri@jurta.org>
4107         * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
4108         attributes for M-n are pulled from the file at point.
4109         (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
4110         Suggested by Drew Adams.  (Bug#10624)
4112 2012-09-18  Dmitry Gutov  <dgutov@yandex.ru>
4114         * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
4115         whitespace after "end".
4116         (ruby-do-end-to-brace): Collapse block to one line if it fits
4117         within fill-column.
4119 2012-09-18  Martin Rudalics  <rudalics@gmx.at>
4121         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
4122         value.
4123         (debug): Don't remove debugger window when debugger is expected
4124         to be back.
4126 2012-09-18  Chong Yidong  <cyd@gnu.org>
4128         * custom.el (defface): Doc fix.
4130         * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
4132 2012-09-18  Martin Blais  <blais@furius.ca>  (tiny change)
4134         * progmodes/compile.el (compilation-start): Use compilation-always-kill
4135         to initialize query-on-exit; then test that instead (bug#12288).
4137 2012-09-17  Stefan Merten  <smerten@oekonux.de>
4139         * textmodes/rst.el: Add support for `testcover'.
4140         (rst-defcustom-testcover, rst-testcover-add-compose)
4141         (rst-testcover-add-1value): New functions.
4142         (rst-portable-mark-active-p): Replace by `use-region-p'.
4143         (rst-update-section, rst-classify-adornment)
4144         (rst-find-title-line): Mark `1value' forms.
4145         (rst-classify-adornment): Remove superfluous form.
4146         (rst-update-section, rst-get-adornments-around)
4147         (rst-adornment-complete-p, rst-get-next-adornment)
4148         (rst-adjust, rst-promote-region)
4149         (rst-display-adornments-hierarchy, rst-straighten-adornments)
4150         (rst-find-pfx-in-region, rst-section-tree-rec)
4151         (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
4152         (rst-toc-node, rst-toc, rst-forward-section)
4153         (rst-iterate-leftmost-paragraphs)
4154         (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
4155         (rst-bullet-list-region)
4156         (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
4157         (rst-compile-find-conf, rst-compile)
4158         (rst-repeat-last-character): Fix style.
4160 2012-09-17  Chong Yidong  <cyd@gnu.org>
4162         * comint.el (comint--complete-file-name-data): Don't add a space
4163         if the status is `sole'; that adds a gratuitous space in the
4164         completion-cycling case (Bug#12092).
4166         * pcomplete.el (pcomplete-completions-at-point): Likewise.
4168 2012-09-17  Richard Stallman  <rms@gnu.org>
4170         * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
4171         only in the mime-shown mode, not in raw mode.
4172         (rmail-mime): Toggle off mime by displaying the message without
4173         mime processing.  (Bug#12305)
4175         * mail/rmail.el (rmail-retry-failure):
4176         Turn off mime processing first.  (Bug#12037)
4178         * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
4180 2012-09-17  Chong Yidong  <cyd@gnu.org>
4182         * shell.el (shell-file-name-chars, shell-file-name-quote-list)
4183         (shell-dynamic-complete-functions): Convert to defcustom.
4184         (shell-prompt-pattern, shell-completion-fignore): Doc fix.
4186         * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
4187         * comint.el (comint-prompt-read-only):
4188         * custom.el (defcustom):
4189         * hi-lock.el (hi-lock-mode):
4190         * ibuffer.el (ibuffer-formats):
4191         * ielm.el (ielm-prompt-read-only):
4192         * novice.el (disable-command):
4193         * saveplace.el (toggle-save-place):
4194         * speedbar.el (speedbar-supported-extension-expressions):
4195         * startup.el (auto-save-list-file-prefix, init-file-user)
4196         (after-init-hook, inhibit-startup-echo-area-message):
4197         * strokes.el (strokes-help):
4198         * time-stamp.el (time-stamp):
4199         * calendar/calendar.el (calendar, diary-file):
4200         * calendar/diary-lib.el (diary-mail-entries, diary)
4201         (diary-list-entries-hook):
4202         * calendar/holidays.el (holidays, calendar-holidays):
4203         * calendar/lunar.el (lunar-phases):
4204         * calendar/solar.el (sunrise-sunset):
4205         * emulation/edt.el (edt-load-keys):
4206         * emulation/viper.el (viper-mode):
4207         * eshell/em-alias.el (eshell-command-aliases-list):
4208         * eshell/esh-util.el (eshell-convert-numeric-arguments):
4209         * international/ogonek.el (ogonek-information):
4210         * net/tramp-cmds.el (tramp-bug):
4211         * net/quickurl.el (quickurl-reread-hook-postfix):
4212         * play/decipher.el (decipher-font-lock-keywords):
4213         * progmodes/cc-styles.el (c-set-style):
4214         * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
4215         * progmodes/inf-lisp.el (inferior-lisp-prompt):
4216         * progmodes/octave-mod.el (octave-mode):
4217         * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
4218         * progmodes/verilog-mode.el (verilog-read-defines):
4219         * textmodes/two-column.el (2C-mode): Likewise.
4221 2012-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4223         * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
4224         that holds many addresses.
4226 2012-09-16  Chong Yidong  <cyd@gnu.org>
4228         * align.el (align-areas): Call the indication function with
4229         positions instead of markers for arguments (Bug#12343).
4231         * files.el (parse-colon-path): Use split-string (Bug#12351).
4233         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4234         (display-buffer-function): Mark as obsolete.
4236         * progmodes/compile.el (compilation-parse-errors): Accept list
4237         values similar to font-lock-keywords (Bug#12136).
4238         Suggested by Oleksandr Manzyuk.
4239         (compilation-error-regexp-alist): Doc fix.
4241 2012-09-15  Glenn Morris  <rgm@gnu.org>
4243         * version.el (emacs-bzr-version-bzr): New function.
4244         (emacs-bzr-get-version): Add optional EXTERNAL argument.
4246         * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
4247         checkouts, check the parent dirstate matches the branch.
4248         Add "--tree" to "bzr revno" arguments.  Don't try to shorten the
4249         empty string.
4251         * version.el (emacs-bzr-version): Doc fix.
4252         (emacs-bzr-version-dirstate): New function.
4253         (emacs-bzr-get-version): For lightweight checkouts, if the parent
4254         is local try and check that it matches the branch.  If not, just
4255         use dirstate information.  (Bug#12441)
4257 2012-09-14  Juri Linkov  <juri@jurta.org>
4259         * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
4260         (Bug#12399)
4262 2012-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4264         * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
4266         * emacs-lisp/edebug.el: Miscellaneous cleanup.
4267         Remove obsolete byte-compiler hack that tried to silence some warnings.
4268         (edebug-submit-bug-report): Remove.
4269         (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
4270         Remove aliases, use the un-prefixed name instead.
4271         (edebug-pop-to-buffer): Consider other frames.
4272         (edebug-original-read):: Make it more obvious that it's always defined.
4273         (edebug--make-form-data-entry, edebug--form-data-name)
4274         (edebug--form-data-begin, edebug--form-data-end): Rename from the
4275         single-dashed name, and implement with cl-defstruct.
4276         (edebug-set-form-data-entry): Use the standard accessors.
4277         (edebug-make-top-form-data-entry): Use push.
4278         (edebug-no-match): Drop useless `funcall'.
4279         (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
4280         to functions.
4281         (defsubst, dont-compile, eval-when-compile, eval-and-compile)
4282         (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
4283         (with-syntax-table, push, pop, 1value, noreturn, defadvice)
4284         (easy-menu-define, with-custom-print): Remove redundant specs.
4285         (edebug-outside-overriding-local-map)
4286         (edebug-outside-overriding-terminal-local-map): Remove, unused.
4287         (edebug--display): Bind unread-command-events directly to nil rather
4288         than binding it to unread-command-events and later setting it to nil.
4289         (edebug--display): Kill edebug-eval-buffer here...
4290         (edebug--recursive-edit): ...rather than here.
4291         Bind standard-output and standard-input.
4292         (edebug-eval): Check cl-macroexpand-all is fboundp.
4293         (edebug-temp-display-freq-count): Fix last change.
4295         * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
4296         * subr.el (noreturn, 1value): Add `debug' spec.
4297         * emacs-lisp/advice.el: Require cl-lib.
4298         (ad-copy-tree): Remove, use copy-tree instead.
4299         (ad-dolist): Remove use dolist or cl-dolist instead.
4300         (ad-do-return): Remove, use cl-return instead.
4301         (defadvice): Add `debug' spec.
4303 2012-09-13  Juri Linkov  <juri@jurta.org>
4305         * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
4306         (Bug#12399)
4308 2012-09-13  Glenn Morris  <rgm@gnu.org>
4310         * calc/calc.el (math-compose-expr):
4311         * calc/calc-ext.el (math-compose-expr):
4312         * progmodes/cc-defs.el (cl-macroexpand-all):
4313         * progmodes/cc-langs.el (delete-duplicates, mapcan)
4314         (cl-macroexpand-all): Update declarations.
4316         * vc/vc.el: No need to require ediff.
4317         (ediff-load-version-control): Declare.
4318         (ediff-vc-internal): Fix declaration.
4319         (vc-version-ediff): Require ediff.
4321 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
4323         Use a more backwards-compatible timer format (Bug#12430).
4324         * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
4325         being right after USECS, as that better supports old code that
4326         inadvisedly looked directly at the timer vector.
4328 2012-09-13  Kenichi Handa  <handa@gnu.org>
4330         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
4331         ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
4332         `coding-priority' property of these language environment.
4334 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
4336         Fix glitches caused by addition of psec to timers (Bug#12430).
4337         * image.el (image-animate-timer):
4338         * time.el (display-time-world-timer):
4339         Use timer--function and timer--args rather than raw access to
4340         timer vector.
4342 2012-09-13  Glenn Morris  <rgm@gnu.org>
4344         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
4345         If not compiling a file, try using load-file-name.
4347 2012-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4349         * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
4350         Fix last change.
4351         (edebug-update-eval-list): Use `push'.
4353         * emacs-lisp/edebug.el: Use lexical-binding.
4354         Remove the "edebug-" prefix from non-dynamically-scoped variables.
4355         Mark unused args with underscore.
4356         (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
4357         (edebug-form-data): Use defvar-local.
4358         (edebug-make-before-and-after-form, edebug-make-after-form):
4359         Use backquote.
4360         (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
4361         Not dynamically scoped any more.
4362         (edebug--enter-trace): Add arguments `function' and `args'.
4363         Rename from edebug-enter-trace.
4364         (edebug-enter): Call it accordingly.  Bind edebug-function explicitly.
4365         (edebug--update-coverage): Add `after-index' and `value' args.
4366         Rename from edebug-update-coverage.
4367         (edebug-slow-after): Call it accordingly.
4368         (edebug--recursive-edit): Add arg `arg-mode'.  Rename from
4369         edebug-recursive-edit.
4370         (edebug--display): Call it accordingly.  Add args `value',
4371         `offset-index', and `arg-mode'.  Rename from edebug-display.
4372         (edebug-debugger, edebug): Call it accordingly.
4373         (edebug-eval-display-list): Use dolist.
4375 2012-09-12  Juri Linkov  <juri@jurta.org>
4377         * info.el (Info-search): Don't check for isearch-mode and
4378         isearch-regexp before let-binding search-spaces-regexp to
4379         Info-search-whitespace-regexp.
4380         (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
4381         search-whitespace-regexp if isearch-lax-whitespace or
4382         isearch-regexp-lax-whitespace is non-nil.
4383         (Info-mode): Don't set local variable search-whitespace-regexp.
4384         http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
4386 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4388         * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
4389         (debugger-env-macro): Remove support for unread-command-char.
4391         * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
4392         the temporary map re-appearing on emulation-mode-map-alists.
4394         * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
4395         since 22.1.
4397         * ehelp.el (with-electric-help): Accept functions in
4398         electric-help-form-to-execute.
4399         (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
4400         And replace unread-command-char -> unread-command-events.
4402 2012-09-12  Michael Albinus  <michael.albinus@gmx.de>
4404         Sync with Tramp 2.2.6.
4406         * net/tramp.el (tramp-accept-process-output): Don't use
4407         JUST-THIS-ONE in the XEmacs case.
4409         * net/trampver.el: Update release number.
4411 2012-09-12  Martin Rudalics  <rudalics@gmx.at>
4413         * emacs-lisp/debug.el (debugger-previous-window-height):
4414         New variable.
4415         (debug): When debugger-jumping-flag is non-nil try to restore
4416         height of debugger window.  (Bug#8789)
4418 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4420         * emacs-lisp/edebug.el (edebug-enter): Don't mess with
4421         overriding-local-map and pre/post-command-hook here.
4422         (edebug-recursive-edit): Do it here instead (bug#12345).
4423         (edebug-outside-unread-command-char): Remove all uses of
4424         unread-command-char.
4426         * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
4427         inhibit-debugger is bound instead.
4429 2012-09-11  Bastien Guerry  <bzg@gnu.org>
4431         * subr.el (set-temporary-overlay-map): Add a docstring.
4432         (Bug#12346)
4434 2012-09-11  Bastien Guerry  <bzg@gnu.org>
4436         * minibuffer.el (completion-table-subvert): Fix docstring.
4437         (Bug#12347)
4439 2012-09-11  Bastien Guerry  <bzg@gnu.org>
4441         * help-fns.el (describe-variable): Fix typo.  (Bug#12346)
4443 2012-09-10  Michael R. Mauger  <mmaug@yahoo.com>
4445         * progmodes/sql.el: Version 3.1
4446         (sql-db2-escape-newlines): New variable.
4447         (sql-escape-newlines-filter): Use it.
4449 2012-09-10  Juanma Barranquero  <lekktu@gmail.com>
4451         * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
4453 2012-09-10  Dan Nicolaescu  <dann@gnu.org>
4455         * vc/diff-mode.el (diff-mode-menu):
4456         Bind diff-remove-trailing-whitespace.
4458 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4460         * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
4461         (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
4462         (emacs-lisp-byte-code-mode): New functions.
4463         (eval-sexp-add-defvars): Don't skip defvars in column >0.
4464         (eval-defun-2): Remove bogus interactive spec.
4465         (lisp-indent-line): Remove redundant whole-exp code, now done in
4466         indent-according-to-mode.
4467         (save-match-data): Remove redundant indent data.
4469         * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
4470         Use `declare'.
4472 2012-09-09  Juri Linkov  <juri@jurta.org>
4474         * replace.el (replace-regexp-lax-whitespace): New defcustom.
4475         (replace-lax-whitespace, query-replace-regexp)
4476         (query-replace-regexp-eval, replace-regexp): Doc fix.
4477         (perform-replace, replace-highlight): Let-bind
4478         isearch-lax-whitespace to replace-lax-whitespace and
4479         isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
4481         * isearch.el (isearch-query-replace): Let-bind
4482         replace-lax-whitespace to isearch-lax-whitespace and
4483         replace-regexp-lax-whitespace to
4484         isearch-regexp-lax-whitespace.  (Bug#10885)
4486 2012-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4488         * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
4490 2012-09-09  Alan Mackenzie  <acm@muc.de>
4492         * progmodes/cc-engine.el (c-state-cache-init):
4493         Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
4494         (c-record-parse-state-state):
4495         Record c-state-semi-nonlit-pos-cache\(-limit\)?.
4497 2012-09-09  Andreas Schwab  <schwab@linux-m68k.org>
4499         * register.el (register-separator): Rename from
4500         separator-register.  All uses changed.  Doc fix.
4501         (register): Fix version.
4503 2012-09-09  Chong Yidong  <cyd@gnu.org>
4505         * replace.el (query-replace-map): Bind four new symbols for
4506         requesting window scrolling.
4508         * subr.el (y-or-n-p): Handle the window-scrolling bindings in
4509         query-replace-map (Bug#8948).
4511         * custom.el (custom-theme-load-confirm): Use y-or-n-p.
4513         * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
4514         since they are now in query-replace-map.
4516         * window.el (scroll-other-window-down): Make the arg optional.
4518 2012-09-09  Chong Yidong  <cyd@gnu.org>
4520         * files.el (hack-local-variables-confirm): Use quit-window to kill
4521         the *Local Variables* buffer.
4523 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
4525         * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
4526         not just expect to be at its beginning.  Adjust callees.
4527         Succeed when do-end block has no space before the pipe character.
4528         (ruby-brace-to-do-end): When the original block is one-liner,
4529         convert to multiline.  Reindent the result.
4531 2012-09-08  Jambunathan K  <kjambunathan@gmail.com>
4533         * register.el (register): New group.
4534         (separator-register): New user option.
4535         (increment-register): Route it to `append-to-register', if
4536         register contains text.  Implication is that `C-x r +' can now be
4537         used for appending to a text register (bug#12217).
4538         (append-to-register, prepend-to-register): Add separator based on
4539         `separator-register'.
4541 2012-09-08  Alan Mackenzie  <acm@muc.de>
4543         AWK Mode: make auto-newline work when there's "==" in the pattern.
4544         * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
4545         correctly.
4546         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
4547         Test more rigorously for "=" token.
4549 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
4551         * progmodes/ruby-mode.el (ruby-match-expression-expansion):
4552         Only fail when reached LIMIT.
4554 2012-09-08  Chong Yidong  <cyd@gnu.org>
4556         * dired.el (dired-mode-map): Don't bind M-=.
4558         * dired-aux.el (dired-diff): Use backup file as default.
4560 2012-09-08  Drew Adams  <drew.adams@oracle.com>
4562         * subr.el (add-to-history): Fix delete usage (Bug#12314).
4564 2012-09-08  Chong Yidong  <cyd@gnu.org>
4566         * subr.el (syntax-after, syntax-class): Doc fix.
4568 2012-09-08  Martin Rudalics  <rudalics@gmx.at>
4570         * window.el (display-buffer-in-previous-window): New buffer
4571         display action function.
4573         * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
4574         (debugger-previous-window): New variable.
4575         (debug): Rewrite using display-buffer-in-previous-window,
4576         quit-restore-window and debugger-bury-or-kill.  (Bug#8789)
4578 2012-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4580         * emacs-lisp/byte-run.el (defun): Tweak message.  Simplify code.
4582 2012-09-07  Matt McClure  <mlm@aya.yale.edu>  (tiny change)
4584         * progmodes/python.el (python-shell-send-string):
4585         When default-directory is remote, create temp file on remote
4586         filesystem.
4587         (python-shell-send-file): When file is remote, pass local view of
4588         file paths to remote Python interpreter.  (Bug#12340)
4590 2012-09-07  Chong Yidong  <cyd@gnu.org>
4592         * window.el (switch-to-buffer): Doc fix (Bug#12181).
4594         * files.el (after-find-file): Don't fail on a read-only buffer if
4595         require-final-newline is `visit' or `visit-save' (Bug#11156).
4597         * subr.el (read-char-choice): Allow quitting via ESC ESC.
4599         * userlock.el (ask-user-about-supersession-threat):
4600         Use read-char-choice (Bug#12093).
4602 2012-09-07  Chong Yidong  <cyd@gnu.org>
4604         * subr.el (buffer-narrowed-p): New function.
4606         * ses.el (ses-widen):
4607         * simple.el (count-words--buffer-message):
4608         * net/browse-url.el (browse-url-of-buffer): Use it.
4610         * simple.el (count-words-region): Don't signal an error if there
4611         is a non-nil prefix arg and the mark is not set.
4613         * help.el (describe-key-briefly): Allow the message to be seen
4614         when invoked from the minibuffer (Bug#7014).
4616 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
4618         * progmodes/ruby-mode.el (ruby-end-of-defun)
4619         (ruby-beginning-of-defun): Simplify, allow indentation before
4620         block beginning and end keywords.
4621         (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
4622         (ruby-end-of-defun): Expect that the point is at the beginning of
4623         the defun.
4625 2012-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4627         * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
4628         (bug#12367).
4629         (cl--make-usage-args): Strip _ from argument names.
4631 2012-09-06  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
4633         * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
4634         obsolete alias speedbar-key-map.
4635         (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
4636         (vhdl-index-menu-init): Don't use obsolete variable
4637         font-lock-maximum-size.
4639 2012-09-06  Chong Yidong  <cyd@gnu.org>
4641         * frame.el (window-system-version): Mark as obsolete.
4643         * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
4644         of obsolete variable speedbar-key-map.
4646 2012-09-06  Juri Linkov  <juri@jurta.org>
4648         * replace.el (replace-lax-whitespace): New defcustom.
4649         (query-replace, query-replace-regexp, query-replace-regexp-eval)
4650         (replace-string, replace-regexp): Mention it in docstrings.
4651         (perform-replace, replace-highlight): Let-bind
4652         isearch-lax-whitespace and isearch-regexp-lax-whitespace according
4653         to the values of replace-lax-whitespace and regexp-flag.
4654         Don't let-bind search-whitespace-regexp.  (Bug#10885)
4656         * isearch.el (isearch-query-replace): Let-bind
4657         replace-lax-whitespace instead of let-binding
4658         replace-search-function and replace-re-search-function.
4659         (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
4660         and isearch-regexp-lax-whitespace to lazy-highlight variables.
4661         (isearch-toggle-symbol): Set isearch-regexp to nil
4662         in isearch-word mode (like in isearch-toggle-word).
4664 2012-09-06  Juri Linkov  <juri@jurta.org>
4666         * replace.el (replace-search-function)
4667         (replace-re-search-function): Set default values to nil.
4668         (perform-replace): Let-bind isearch-related variables based on
4669         replace-related values, call `isearch-search-fun' and let-bind
4670         the result to `search-function'.  Remove code that sets
4671         `search-function' and `search-string' separately for
4672         `delimited-flag'.
4673         (replace-highlight): Add new argument `delimited-flag' and
4674         rename other arguments to the names used in `perform-replace'.
4675         Let-bind `isearch-word' to the argument `delimited-flag'.
4676         (Bug#10885, bug#10887)
4678 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
4680         * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
4681         ruby-beginning-of-indent, simplify, allow all keywords to have
4682         indentation before them.
4683         (ruby-beginning-of-indent): Adjust for above.  Search until the
4684         found point is not inside a string or comment.
4685         (ruby-font-lock-keywords): Allow symbols to start with "@"
4686         character, give them higher priority than variables.
4687         (ruby-syntax-propertize-function)
4688         (ruby-font-lock-syntactic-keywords): Remove the "not comments"
4689         matchers.  Expression expansions are not comments when inside a
4690         string, and there comment syntax status is irrelevant.
4691         (ruby-match-expression-expansion): New function.  Check that
4692         expression expansion is inside a string, and it's not escaped.
4693         (ruby-font-lock-keywords): Use it.
4695 2012-09-05  Martin Rudalics  <rudalics@gmx.at>
4697         * help.el (temp-buffer-max-height): New default value.
4698         (temp-buffer-resize-frames): New option.
4699         (resize-temp-buffer-window): Optionally resize frame.
4701         * window.el (fit-frame-to-buffer-bottom-margin): New option.
4702         (fit-frame-to-buffer): New function.
4704 2012-09-05  Glenn Morris  <rgm@gnu.org>
4706         * emulation/cua-rect.el (cua--init-rectangles):
4707         * textmodes/picture.el (picture-mode-map):
4708         * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
4709         like forward-char and backward-char.  (Bug#12317)
4711 2012-09-05  Leo Liu  <sdl.web@gmail.com>
4713         * progmodes/flymake.el (flymake-warning-re): New variable.
4714         (flymake-parse-line): Use it.
4716 2012-09-05  Glenn Morris  <rgm@gnu.org>
4718         * calendar/holidays.el (holiday-christian-holidays):
4719         Rename an entry.  (Bug#12289)
4721 2012-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4723         * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
4724         (bug#12222).
4726 2012-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
4728         * loadup.el: Load macroexp.  Remove hack.
4729         * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
4730         (macroexp--expand-all): Use it to get better warnings.
4731         (macroexp--backtrace, macroexp--trim-backtrace-frame)
4732         (internal-macroexpand-for-load): New functions.
4733         (macroexp--pending-eager-loads): New var.
4734         (emacs-startup-hook): New hack to replace one in loadup.el.
4735         * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
4736         (cl--compiler-macro-cXXr): Move to top, before they can be used.
4737         (cl-psetf): Simplify.
4738         (cl-defstruct): Add indent rule.
4740 2012-09-04  Lars Ingebrigtsen  <larsi@gnus.org>
4742         * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
4743         over `user-mail-address' for the SMTP MAIL FROM envelope.
4744         (smtpmail-via-smtp): Ditto.
4746 2012-09-04  Dmitry Gutov  <dgutov@yandex.ru>
4748         * progmodes/ruby-mode.el: Clean up keybindings.
4749         (ruby-mode-map): Don't bind ruby-electric-brace,
4750         ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
4751         backward-kill-word, reindent-then-newline-and-indent.
4752         (ruby-mark-defun): Remove.
4753         (ruby-electric-brace): Remove.  Obsoleted by electric-indent-chars.
4754         (ruby-mode): Set local beginning-of-defun-function and
4755         end-of-defun-function values.
4757 2012-09-03  Martin Rudalics  <rudalics@gmx.at>
4759         * window.el (temp-buffer-window-setup-hook)
4760         (temp-buffer-window-show-hook): New hooks.
4761         (temp-buffer-window-setup, temp-buffer-window-show)
4762         (with-temp-buffer-window): New functions.
4763         (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
4764         (special-display-popup-frame): Make sure the window used shows BUFFER.
4766         * help.el (temp-buffer-resize-mode): Fix doc-string.
4767         (resize-temp-buffer-window): New optional argument WINDOW.
4769         * files.el (recover-file, save-buffers-kill-emacs):
4770         * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
4772 2012-09-02  Michael Albinus  <michael.albinus@gmx.de>
4774         * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
4775         remote definition of `default-directory', ensure we can connect.
4777 2012-09-02  Juri Linkov  <juri@jurta.org>
4779         Toggle whitespace matching mode with M-s SPC.
4780         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
4782         * isearch.el (search-whitespace-regexp): Doc fix.
4783         Remove cons cell customization.
4784         (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
4785         (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
4786         New variables.
4787         (isearch-forward, isearch-forward-regexp): Doc fix.
4788         (isearch-toggle-lax-whitespace): New command.
4789         (search-forward-lax-whitespace, search-backward-lax-whitespace)
4790         (re-search-forward-lax-whitespace)
4791         (re-search-backward-lax-whitespace): New functions.
4792         (isearch-whitespace-regexp): Remove function.
4793         (isearch-query-replace): Let-bind replace-search-function and
4794         replace-re-search-function.
4795         (isearch-occur): Let-bind search-spaces-regexp according to the
4796         value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
4797         (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
4798         condition for C-q SPC.
4799         (isearch-search-fun-default): Use new functions mentioned above.
4800         (isearch-search-forward, isearch-search-backward): Remove functions.
4801         (isearch-search): Don't let-bind search-spaces-regexp.
4802         (isearch-lazy-highlight-space-regexp): Remove variable.
4803         (isearch-lazy-highlight-lax-whitespace)
4804         (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
4805         (isearch-lazy-highlight-new-loop): Use them.
4806         (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
4808 2012-09-02  Chong Yidong  <cyd@gnu.org>
4810         * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
4812 2012-09-02  Glenn Morris  <rgm@gnu.org>
4814         * simple.el (undo): Tweak message in undo-only case.  (Bug#12283)
4816 2012-09-01  Glenn Morris  <rgm@gnu.org>
4818         * term.el: Tidy up menu definitions.
4819         (term-mode-map): Use easymenu for In/Out, Complete menus.
4820         (term-pager-break-map): Initialize in the defvar.
4821         (term-terminal-menu, term-signals-menu): Define with easymenu.
4822         (term-terminal-menu): Also show it in line-mode.  (Bug#11957)
4823         (term-pager-menu): New, extracted from term-process-pager.
4824         (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
4825         (term-update-mode-line): Propertize line/char and page items.
4826         (term-process-pager): Move keymap initialization elsewhere.
4828 2012-09-01  Martin Rudalics  <rudalics@gmx.at>
4830         * window.el (switch-to-prev-buffer): Handle additional values of
4831         BURY-OR-KILL argument.  Don't switch in minibuffer window.
4832         (switch-to-next-buffer): Don't switch in minibuffer window.
4833         (quit-restore-window): New function based on quit-window.
4834         Handle additional values of former KILL argument.
4835         (quit-window): Call quit-restore-window with appropriate
4836         interpretation of KILL argument.
4837         (display-buffer-below-selected): New buffer display action
4838         function.
4840 2012-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4842         * minibuffer.el (completion-at-point-functions): Complete docstring
4843         (bug#12254).
4845 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4847         Better seed support for (random).
4848         * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
4849         * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
4850         * play/mpuz.el, play/tetris.el, play/zone.el:
4851         * calc/calc-comb.el (math-init-random-base):
4852         * play/blackbox.el (bb-init-board):
4853         * play/life.el (life):
4854         * server.el (server-use-tcp):
4855         * type-break.el (type-break):
4856         Remove unnecessary call to (random t).
4857         * net/sasl.el (sasl-unique-id-function):
4858         Change (random t) to (random), now that the latter is more random.
4859         * play/life.el (life-initialized): Remove no-longer-needed var.
4861 2012-08-31  Alp Aker  <alp.tekin.aker@gmail.com>
4863         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4864         Consider frame's buffer predicate when choosing the buffer.
4865         (Bug#12081)
4867 2012-08-30  Richard Stallman  <rms@gnu.org>
4869         * simple.el (special-mode-map): Delete binding for `z'.
4871 2012-08-30  Andreas Schwab  <schwab@linux-m68k.org>
4873         * progmodes/compile.el (compilation-always-kill): Doc fix.
4875 2012-08-30  Chong Yidong  <cyd@gnu.org>
4877         * window.el (display-buffer-reuse-frames): Make the obsolescence
4878         message more informative.
4880 2012-08-30  Glenn Morris  <rgm@gnu.org>
4882         * paren.el (show-paren-delay):
4883         Add a :set function.  Doc fix.  (Bug#12297)
4885 2012-08-29  Martin Blais  <blais@furius.ca>  (tiny change)
4887         * progmodes/compile.el (compilation-always-kill): New var.
4888         (compilation-start): Use it.
4890 2012-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4892         * simple.el (read-only-mode): Move from files.el for bootstrapping.
4893         * files.el (read-only-mode): Move to simple.el.
4895         * files.el (read-only-mode): New minor mode.
4896         (toggle-read-only): Use it and mark obsolete.
4897         (find-file--read-only):
4898         * vc/vc.el (vc-next-action, vc-checkout):
4899         * vc/vc-cvs.el (vc-cvs-checkout):
4900         * obsolete/vc-mcvs.el (vc-mcvs-update):
4901         * ffap.el (ffap--toggle-read-only): Update callers.
4903 2012-08-29  Michael Albinus  <michael.albinus@gmx.de>
4905         * eshell/esh-ext.el (eshell-external-command): Do not examine
4906         remote shell scripts.
4907         See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
4909         * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
4910         "/usr/local/sbin".
4912 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4914         * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
4916 2012-08-28  Leo Liu  <sdl.web@gmail.com>
4918         * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
4919         completion-at-point.  (Bug#12220)
4921         * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
4923         * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
4925 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4927         * files.el (safe-local-eval-forms): Fix before-save-hook entry to
4928         be buffer-local; add delete-trailing-whitespace (bug#12259).
4930 2012-08-28  Jeremy Moore  <jmoore@ieee.org>  (tiny change)
4932         * progmodes/hideif.el (hif-compress-define-list):
4933         Fix typo.  (Bug#11951)
4935 2012-08-28  Dan Nicolaescu  <dann@gnu.org>
4937         * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
4938         buffer local setting.
4940         * net/rcirc.el (rcirc-split-message): Fix for buffer-local
4941         rcirc-encode-coding-system.
4943 2012-08-28  Leo Liu  <sdl.web@gmail.com>
4945         * net/rcirc.el (rcirc-split-message): New function.
4946         (rcirc-send-message): Use it.  (Bug#12051)
4948 2012-08-28  Juri Linkov  <juri@jurta.org>
4950         * info.el (Info-fontify-node): Hide empty lines at the end of
4951         the node.  (Bug#12272)
4953 2012-08-27  Drew Adams  <drew.adams@oracle.com>
4955         * dired.el (dired-pop-to-buffer): Make window start at beginning
4956         of buffer (Bug#12281).
4958 2012-08-26  Chong Yidong  <cyd@gnu.org>
4960         * window.el (special-display-regexps, special-display-frame-alist)
4961         (special-display-buffer-names, special-display-function)
4962         (display-buffer-reuse-frames): Mark as obsolete.
4964         * progmodes/compile.el: Don't use display-buffer-reuse-frames.
4966         * help.el (help-print-return-message): Don't treat
4967         display-buffer-reuse-frames specially.
4969 2012-08-26  Chong Yidong  <cyd@gnu.org>
4971         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
4972         New variable, replacing gdb-frame-parameters.
4973         (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
4974         (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
4975         (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
4976         (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
4977         (def-gdb-frame-for-buffer): Macro deleted.  It is easier to define
4978         the functions directly with gdb-display-buffer-other-frame-action.
4979         (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
4980         (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
4981         (gdb-display-stack-buffer, gdb-display-locals-buffer)
4982         (gdb-display-registers-buffer): Define directly.
4983         (def-gdb-display-buffer): Macro deleted.
4984         (gdb-display-buffer): Remove second and third args, callers don't
4985         use them.  Defer to the default display-buffer behavior, apart
4986         from making windows dedicated.
4987         (gdb-setup-windows): Don't call display-buffer unnecessarily.
4989         * progmodes/gud.el (gud-display-line): Just use display-buffer.
4991         * window.el (display-buffer-pop-up-frame): Handle a
4992         pop-up-frame-parameters alist entry.
4993         (display-buffer): Document it.
4995 2012-08-26  Chong Yidong  <cyd@gnu.org>
4997         * isearch.el (search-whitespace-regexp): Make string and nil
4998         values apply to both ordinary and regexp search.  Allow a cons
4999         cell value to distinguish between the two.
5000         (isearch-whitespace-regexp, isearch-search-forward)
5001         (isearch-search-backward): New functions.
5002         (isearch-occur, isearch-search-fun-default, isearch-search)
5003         (isearch-lazy-highlight-new-loop): Use them.
5004         (isearch-forward, isearch-forward-regexp): Doc fix.
5006 2012-08-26  Chong Yidong  <cyd@gnu.org>
5008         * faces.el (help-argument-name): Always inherit from italic
5009         (Bug#12213).
5011 2012-08-25  Martin Rudalics  <rudalics@gmx.at>
5013         * window.el (window--even-window-heights): Even heights when
5014         WINDOW and the selected window form a vertical combination.
5015         (display-buffer-use-some-window): Provide that window used gets
5016         sized back by quit-window.  (Bug#11880) and (Bug#12091)
5018 2012-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5020         Fix file time stamp problem with bzr and CVS (Bug#12001).
5021         * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
5022         in the file's time stamp, since the version control system loses
5023         that information.
5025 2012-08-22  Juri Linkov  <juri@jurta.org>
5027         * info.el (Info-fontify-node): Hide the suffix of the
5028         Info file name in the header line.  (Bug#12187)
5030 2012-08-22  Glenn Morris  <rgm@gnu.org>
5032         * calendar/cal-tex.el (cal-tex-weekly-common):
5033         Restore leading blank page.
5035 2012-08-22  Le Wang  <l26wang@gmail.com>
5037         * misc.el (forward-to-word, backward-to-word): Activate or extend
5038         the region under `shift-select-mode'.  (Bug#12231)
5040 2012-08-22  Bastien Guerry  <bzg@gnu.org>
5042         * progmodes/executable.el (executable-prefix): Set to "#!" instead
5043         of "#! ".  http://www.in-ulm.de/~mascheck/various/shebang/#details
5044         gives details on why the space is never needed.
5046 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
5048         * window.el (walk-window-tree, window-with-parameter):
5049         New optional argument MINIBUF to control whether these functions
5050         should run on the minibuffer window.
5051         (window-at-side-list): Don't operate on minibuffer window.
5052         (window-in-direction): Simplify and rewrite doc-string.
5053         (window--size-ignore): Rename to window--size-ignore-p.
5054         Update callers.
5055         (display-buffer-in-atom-window, window--major-non-side-window)
5056         (window--major-side-window, display-buffer-in-major-side-window)
5057         (delete-side-window, display-buffer-in-side-window):
5058         New functions.
5059         (window--side-check, window-deletable-p, delete-window)
5060         (delete-other-windows, split-window): Handle side windows and
5061         atomic windows appropriately.
5062         (window--display-buffer): Call display-buffer-record-window also
5063         when the window buffer did not change.
5065 2012-08-22  Christopher Schmidt  <christopher@ch.ristopher.com>
5067         * help-fns.el (help-fns--key-bindings):
5068         Abbreviate non-symbol remap targets.  (Bug#12174)
5070 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
5072         * dired.el (dired-mark-remembered): Don't clobber point.
5073         (Bug#11795)
5075 2012-08-22  Glenn Morris  <rgm@gnu.org>
5077         * progmodes/bug-reference.el (bug-reference): New custom group.
5078         (bug-reference-bug-regexp): Make it a defcustom.
5080 2012-08-22  Daiki Ueno  <ueno@unixuser.org>
5082         * progmodes/js.el (js-indent-level, js-expr-indent-offset)
5083         (js-paren-indent-offset, js-square-indent-offset)
5084         (js-curly-indent-offset): Add :safe (Bug#12257).
5086 2012-08-22  Edward O'Connor  <hober0@gmail.com>
5088         * json.el (json-key-format): Add error properties.
5089         (json-encode-key): New function.
5090         (json-encode-hash-table, json-encode-alist, json-encode-plist):
5091         Use json-encode-key.
5093 2012-08-22  Glenn Morris  <rgm@gnu.org>
5095         * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
5096         (cal-tex-leftday, cal-tex-rightday): Remove functions.
5097         (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
5098         Update for above change.
5100 2012-08-21  Andreas Schwab  <schwab@linux-m68k.org>
5102         * cus-face.el (custom-face-attributes): Fix customize type for the
5103         :underline attribute.  (Bug#11805)
5105 2012-08-21  Martin Rudalics  <rudalics@gmx.at>
5107         * window.el (window-point-1, set-window-point-1): Remove.
5108         (window-in-direction, record-window-buffer)
5109         (set-window-buffer-start-and-point, split-window-below)
5110         (window--state-get-1, display-buffer-record-window):
5111         Replace calls to window-point-1 and set-window-point-1 by calls to
5112         window-point and set-window-point respectively.
5114 2012-08-21  Glenn Morris  <rgm@gnu.org>
5116         * calendar/cal-tex.el (cal-tex-weekly-common): New function.
5117         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
5118         Use it.
5120         * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
5121         (cal-tex-shortday): New function.
5122         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
5123         (cal-tex-cursor-filofax-daily): Use the above.
5125         * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
5126         New functions.
5127         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
5128         (cal-tex-cursor-filofax-week): Use them.
5130         * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
5131         New constants.
5132         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
5133         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
5135         * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
5136         (cal-tex-end-document): Don't rely on buffer name.
5138         * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
5139         Use cal-tex-vspace.
5140         (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
5141         (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
5142         (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
5143         Use cal-tex-arg.
5145         * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
5146         (cal-tex-cursor-week, cal-tex-cursor-week2)
5147         (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
5148         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
5149         (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
5150         (cal-tex-insert-preamble, cal-tex-b-document)
5151         (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
5152         Improve cal-tex-cmd usage.
5154         * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
5155         (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
5156         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
5157         (cal-tex-weekly-paper): New function.
5158         (cal-tex-cursor-week, cal-tex-cursor-week2)
5159         (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
5160         (cal-tex-cursor-day): Use it.
5162         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
5163         (cal-tex-cursor-filofax-week): Remove leading blank page.
5165         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
5166         Add autoload cookie.  For now at least, don't use color, since
5167         no other cal-tex function does.
5169         * calendar/cal-tex.el (cal-tex-cursor-week-iso)
5170         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
5171         (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
5173 2012-08-21  Juri Linkov  <juri@jurta.org>
5175         * info.el (Info-file-attributes): New variable.
5176         (info-insert-file-contents): Add file attributes to
5177         `Info-file-attributes'.  Clear the caches `Info-index-nodes' and
5178         `Info-toc-nodes' when previous modtime of the Info file is less
5179         than new modtime.
5180         (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
5181         of info.el.  (Bug#12230)
5183 2012-08-20  Glenn Morris  <rgm@gnu.org>
5185         * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
5186         * calendar/holidays.el (calendar-holiday-list):
5187         Report errors with display-warning rather than beep'n'sleep.
5189 2012-08-20  Michael Albinus  <michael.albinus@gmx.de>
5191         * net/tramp.el (tramp-accept-process-output): Accept only output
5192         from PROC.  Otherwise, process filters and sentinels might be
5193         confused.  (Bug#12145)
5195 2012-08-20  Chong Yidong  <cyd@gnu.org>
5197         * descr-text.el (describe-text-properties-1): Use overlays-in to
5198         report on empty overlays (Bug#3322).
5200 2012-08-20  Glenn Morris  <rgm@gnu.org>
5202         * mail/rmailout.el (rmail-output-read-file-name):
5203         Trap and report errors in rmail-output-file-alist elements.
5205         * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
5206         since most non-font-lock faces are not also variables).
5208 2012-08-20  Edward Reingold  <reingold@iit.edu>
5210         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
5211         New function.  (Bug12160)
5213 2012-08-19  Glenn Morris  <rgm@gnu.org>
5215         * mail/rmailout.el (rmail-output-read-file-name):
5216         Fix previous change (when the alist is nil or does not match).
5218 2012-08-19  Chong Yidong  <cyd@gnu.org>
5220         * xml.el (xml-escape-string): Don't refer to xml-entity-alist
5221         (Bug#12228).
5223 2012-08-18  Chong Yidong  <cyd@gnu.org>
5225         * simple.el (yank-handled-properties): New defcustom.
5226         (yank-excluded-properties): Add font-lock-face and category.
5227         (yank): Doc fix.
5229         * subr.el (remove-yank-excluded-properties):
5230         Obey yank-handled-properties.  The special handling of font-lock-face
5231         and category is now done this way, instead of being hard-coded.
5232         (insert-for-yank-1): Remove font-lock-face handling.
5233         (yank-handle-font-lock-face-property)
5234         (yank-handle-category-property): New function.
5236 2012-08-17  Glenn Morris  <rgm@gnu.org>
5238         * mail/rmailout.el (rmail-output-read-file-name):
5239         Check rmail-output-file-alist against the full message body
5240         in the correct rmail buffer.  (Bug#12214)
5242 2012-08-17  Michael Albinus  <michael.albinus@gmx.de>
5244         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
5245         Eliminate superfluous prompt.  (Bug#12203)
5247 2012-08-17  Chong Yidong  <cyd@gnu.org>
5249         * mouse.el (mouse-appearance-menu): If x-select-font returns a
5250         font spec, set the font directly (Bug#3228).
5252 2012-08-17  Martin Rudalics  <rudalics@gmx.at>
5254         * window.el (delete-window): Fix last fix.
5256 2012-08-16  Martin Rudalics  <rudalics@gmx.at>
5258         * window.el (window-valid-p): Move to window.c.
5259         (window-child, window-child-count, window-last-child)
5260         (window-normalize-window, window-combined-p)
5261         (window-combinations, window-atom-root, window-min-size)
5262         (window-sizable, window-sizable-p, window-size-fixed-p)
5263         (window-min-delta, window-max-delta, window--resizable)
5264         (window--resizable-p, window-resizable, window-total-size)
5265         (window-full-height-p, window-full-width-p, window-body-size)
5266         (window-at-side-p, adjust-window-trailing-edge, maximize-window)
5267         (minimize-window, window-deletable-p, delete-window)
5268         (delete-other-windows, set-window-buffer-start-and-point)
5269         (next-buffer, previous-buffer, split-window, balance-windows-2)
5270         (set-window-text-height, window-buffer-height)
5271         (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
5272         (truncated-partial-width-window-p): Minor code adjustments.
5273         In doc-strings state whether the argument window has to denote a
5274         live, valid or any window.
5276 2012-08-16  Phil Sainty  <psainty@orcon.net.nz>  (tiny change)
5278         * progmodes/subword.el (subword-forward-function)
5279         (subword-backward-function, subword-forward-regexp)
5280         (subword-backward-regexp): New variables.
5281         (subword-forward, subword-forward-internal, subword-backward-internal):
5282         Use new variables, eg so that different "word" definitions
5283         can be easily used.  (Bug#11411)
5285 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5287         * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
5288         for composite selectors.
5289         * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
5290         operation just because we can't find a previous revision.
5292 2012-08-15  Chong Yidong  <cyd@gnu.org>
5294         * frame.el (set-frame-font): Accept font objects.
5296 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5298         * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
5300 2012-08-15  Wolfgang Jenkner  <wjenkner@inode.at>
5302         * man.el (Man-overstrike-face, Man-underline-face)
5303         (Man-reverse-face): Remove variables.
5304         (Man-overstrike, Man-underline, Man-reverse): New faces.
5305         (Man-fontify-manpage): Use them instead of the variables.
5306         (Man-cleanup-manpage): Comment change.
5307         (Man-ansi-color-map): New variable.
5308         (Man-fontify-manpage): Use it.
5309         Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
5311         Implement ANSI SGR parameters 22-27 (bug#12146).
5312         * ansi-color.el (ansi-colors): Doc fix.
5313         (ansi-color-context, ansi-color-context-region): Doc fix.
5314         (ansi-color--find-face): New function.
5315         (ansi-color-apply, ansi-color-apply-on-region): Use it.
5316         Rename the local variable `face' to `codes' since it is now a list of
5317         ansi codes.  Doc fix.
5318         (ansi-color-get-face): Remove.
5319         (ansi-color-parse-sequence): New function, derived from
5320         ansi-color-get-face.
5321         (ansi-color-apply-sequence): Use it.  Rewrite, and support ansi
5322         codes 22-27.
5324 2012-08-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5326         * subr.el (read-passwd): Allow use from a minibuffer.
5328 2012-08-14  Eli Zaretskii  <eliz@gnu.org>
5330         * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
5331         inside comments and strings as identifiers.
5333         * progmodes/gud.el (gud-tooltip-print-command): Quote the
5334         expression to evaluate.  This allows to evaluate expressions with
5335         embedded whitespace.
5336         (gud-tooltip-tips): Add a blank before the newline in the
5337         message-box text, for the benefit of message-box emulation on
5338         MS-Windows.
5340         * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
5341         messages from GDB, pop them up in a tooltip to give feedback to
5342         user.
5343         (gdb-tooltip-print-1): Quote the expression to evaluate.
5344         This allows to evaluate expressions with embedded whitespace.
5345         (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
5346         if the TTY name is nil or empty (which happens when communicating
5347         with the inferior via pipes, e.g. on MS-Windows).
5348         (gdb-internals): If GDB sends a "&\n" empty debugging message,
5349         don't send that to the GUD buffer.
5351 2012-08-14  Glenn Morris  <rgm@gnu.org>
5353         * emacs-lisp/bytecomp.el (byte-compile-setq-default):
5354         Optimize away setq-default with no args, as for setq.  (Bug#12195)
5356 2012-08-14  Chong Yidong  <cyd@gnu.org>
5358         * minibuffer.el (read-file-name): Doc fix (Bug#10881).
5360         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
5361         (Bug#12085).
5363 2012-08-14  Glenn Morris  <rgm@gnu.org>
5365         * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
5367 2012-08-14  Michael Albinus  <michael.albinus@gmx.de>
5369         * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
5370         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
5371         Use cached shell name.
5373 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
5375         * progmodes/python.el (python-shell-send-string):
5376         (python-shell-send-setup-code): Do not use `format' with `message'.
5378 2012-08-14  Dmitry Gutov  <dgutov@yandex.ru>
5380         * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
5381         (ruby-percent-literal-beg-re): New constant.
5382         (ruby-syntax-general-delimiters-goto-beg): Rename to
5383         `ruby-syntax-enclosing-percent-literal', improve literal type check.
5384         (ruby-syntax-propertize-general-delimiters): Rename to
5385         `ruby-syntax-propertize-percent-literal', it's a shorter and more
5386         popular term.  Adjust comments everywhere.
5387         (ruby-syntax-propertize-percent-literal): Only propertize when not
5388         inside a simple string or comment.  When the literal is unclosed,
5389         leave the text after it unpropertized.
5390         (ruby-syntax-methods-before-regexp): New constant.
5391         (ruby-syntax-propertize-function): Use it to recognize regexps.
5392         Don't look at the text after regexp, just use the whitelist.
5394 2012-08-14  Andreas Schwab  <schwab@linux-m68k.org>
5396         * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
5397         non-nil always load the compiled file if it exists.  (Bug#12197)
5399 2012-08-14  Chong Yidong  <cyd@gnu.org>
5401         * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
5402         (hi-lock-set-pattern): When deciding whether to use font lock or
5403         overlays, look at font-lock-mode instead of font-lock-fontified
5404         (Bug#12168).
5405         (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
5406         (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
5408 2012-08-14  Daiki Ueno  <ueno@unixuser.org>
5410         * subr.el (internal--after-with-selected-window): Fix typo
5411         (Bug#12193).
5413 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
5415         Use `completion-table-dynamic' for completion functions.
5416         * progmodes/python.el
5417         (python-shell-completion--do-completion-at-point)
5418         (python-shell-completion--get-completions):
5419         Remove functions.
5420         (python-shell-completion-complete-at-point): New function.
5421         (python-completion-complete-at-point): Use it.
5423 2012-08-13  Jambunathan K  <kjambunathan@gmail.com>
5425         * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
5426         (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
5428 2012-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5430         * subr.el (function-get): Refine `autoload' arg so it can also
5431         autoload functions for gv.el (bug#12191).
5432         * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
5433         autoloads macros.
5435         * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
5436         Prefer pcase-let over destructuring-bind.
5437         * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
5438         Also, remove whitespace as we go, rather than after accumulating the
5439         various places.
5441         * subr.el (internal--before-with-selected-window)
5442         (internal--after-with-selected-window): Fix typo seleted->selected.
5443         (with-selected-window): Adjust callers.
5444         Reported by Dmitry Gutov <dgutov@yandex.ru>.
5446 2012-08-13  Bastien Guerry  <bzg@gnu.org>
5448         * window.el (special-display-popup-frame): Minor docstring
5449         enhancement.  (Bug#12172)
5451 2012-08-13  Andreas Schwab  <schwab@linux-m68k.org>
5453         * tar-mode.el (tar-header-data-end): Only ignore size for files of
5454         type 1-6.
5455         (tar-header-block-summarize, tar-get-descriptor): Handle pax
5456         extended headers.
5458         * files.el (hack-local-variables-filter): Remove useless eval.
5460 2012-08-13  Martin Rudalics  <rudalics@gmx.at>
5462         * subr.el (with-selected-window): Fix last change.
5464 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5466         * subr.el (internal--before-with-seleted-window)
5467         (internal--after-with-seleted-window): New functions.
5468         (with-selected-window): Use them, to replace dependency on
5469         tty-top-frame.
5471 2012-08-12  Nobuyoshi Nakada  <nobu@ruby-lang.org>
5473         * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
5474         binding for `newline'.
5475         (ruby-move-to-block): When moving backward, stop at block opening,
5476         not indentation.
5477         * progmodes/ruby-mode.el (ruby-brace-to-do-end)
5478         (ruby-do-end-to-brace, ruby-toggle-block): New functions.
5479         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
5480         `ruby-toggle-block'.
5482 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5484         * ibuffer.el (ibuffer-do-toggle-read-only):
5485         * dired.el (dired-toggle-read-only):
5486         * buff-menu.el (Buffer-menu-toggle-read-only):
5487         * bindings.el (mode-line-toggle-read-only):
5488         * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
5490 2012-08-12  Andreas Schwab  <schwab@linux-m68k.org>
5492         * descr-text.el (describe-char): Put the overlays over the
5493         "displayed as" character.
5495 2012-08-12  Jay Belanger  <jay.p.belanger@gmail.com>
5497         * calc/calc-units.el (math-default-units-table): Give an
5498         initial value.
5499         (math-put-default-units): Add options to put composite units and
5500         unit systems in the default units table.
5501         (calc-convert-units): Send composite units to
5502         `math-put-default-units' when appropriate.
5504 2012-08-11  Glenn Morris  <rgm@gnu.org>
5506         * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
5508         * tutorial.el (help-with-tutorial):
5509         * emacs-lisp/copyright.el (copyright-update-directory):
5510         * emacs-lisp/autoload.el (autoload-find-generated-file)
5511         (autoload-find-file): Disable local eval: (for insurance).
5513         * files.el (hack-local-variables-filter): If an eval: form is not
5514         known to be safe, and enable-local-variables is :safe, then ignore
5515         the form totally, as is done for non-eval forms.  (Bug#12155)
5516         This is CVE-2012-3479.
5518 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5520         * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
5521         (rx-form): Simplify.
5523 2012-08-09  Dmitry Gutov  <dgutov@yandex.ru>
5525         * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
5526         ?, _, and : are symbol constituents, ! is not (but kinda should be).
5527         (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
5528         (ruby-syntax-propertize-function): Adjust for changes in
5529         `ruby-syntax-propertize-heredoc'.
5531 2012-08-09 Nobuyoshi Nakada  <nobu@ruby-lang.org>
5533         * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
5534         binding (use `M-;' instead).
5535         (ruby-singleton-class-p): New function.
5536         (ruby-expr-beg, ruby-in-here-doc-p) Use it.
5538 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5540         * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
5542 2012-08-10  Chong Yidong  <cyd@gnu.org>
5544         * progmodes/python.el (python-shell-get-process-name): Don't mess
5545         with same-window-buffer-names.
5547         * eshell/eshell.el (eshell-add-to-window-buffer-names)
5548         (eshell-remove-from-window-buffer-names): Make obsolete.
5549         (eshell-buffer-name, eshell-unload-hook): Don't use them.
5550         (eshell): Just use pop-to-buffer-same-window instead.
5552 2012-08-10  Chong Yidong  <cyd@gnu.org>
5554         * bindings.el: Bind M-= back to count-words-region.
5556         * simple.el (count-words-region): Accept a prefix arg for acting
5557         on the entire buffer.
5558         (count-words--buffer-message): New helper function.
5560 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5562         * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
5563         * subr.el (eventp): `nil' is not an event, and eventp is not hot.
5564         (event-start, event-end): Use posn-at-point to return a more
5565         informative posn.
5566         (posnp): New function.
5567         * mouse.el (popup-menu-normalize-position): Use it.
5569 2012-08-10  Masatake YAMATO  <yamato@redhat.com>
5571         * mouse.el (popup-menu-normalize-position): New function.
5572         (popup-menu): Use `popup-menu-normalize-position' to normalize
5573         the form for POSITION argument.
5575         * term/x-win.el (x-menu-bar-open):
5576         Use the value returend from (posn-at-point) as position
5577         passed to `popup-menu'.
5579 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
5581         * calc/calccomp.el (math-compose-expr): Add extra argument
5582         indicating that parentheses should be put around products in
5583         denominators.  Give multiplication precedence over division during
5584         composition.
5586 2012-08-09  Chong Yidong  <cyd@gnu.org>
5588         * man.el (Man-switches, Man-sed-command, Man-awk-command)
5589         (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
5590         (Man-untabify-command, manual-program): Convert to defcustom
5591         (Bug#10429).
5593         * vc/add-log.el (change-log-mode): Bind comment-start to nil.
5595         * descr-text.el (describe-char): Don't insert extra newlines
5596         (Bug#10127).
5598         * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
5599         (log-view-diff-changeset, log-view-minor-wrap): Likewise.
5601         * align.el (align-region): Delete temporary markers (Bug#10047).
5602         Plus some code cleanups.
5604 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
5606         * progmodes/python.el (python-pdbtrack-tracked-buffer)
5607         (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
5608         (python-shell-internal-last-output): Use make-local-variable
5609         instead of make-variable-buffer-local.
5611 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
5613         * progmodes/python.el: Enhancements to forward-sexp.
5614         (python-nav-forward-sexp): Rename from
5615         python-nav-forward-sexp-function.
5616         (python-nav--forward-sexp, python-nav--backward-sexp):
5617         New functions.
5619 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
5621         * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
5622         modes and simplification modes.
5624 2012-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5626         * delsel.el (delete-selection-pre-hook): Don't propagate the
5627         file-supersession signals (bug#12161).
5629 2012-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5631         * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
5632         (cl-map-extents): Add compatibility aliases (bug#12135).
5634 2012-08-08  Michael Albinus  <michael.albinus@gmx.de>
5636         * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
5637         tests by `ignore-error'.
5638         (tramp-find-shell): Open also a new shell, when cache is already
5639         set.  Reported by Carsten Bormann <cabo@tzi.org>.  (Bug#12148)
5641 2012-08-08  Juri Linkov  <juri@jurta.org>
5643         * bookmark.el: Add `defaults' property to the bookmark record.
5644         (bookmark-current-buffer): Doc fix.
5645         (bookmark-make-record): Add `defaults' property with default values
5646         to the bookmark record.
5647         (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
5648         with `bookmark-insert-current-bookmark'.
5649         (bookmark-set): Get `defaults' property from the bookmark record
5650         and use it in `read-from-minibuffer'.
5651         (bookmark-insert-current-bookmark): Remove function.
5653         * info.el (Info-bookmark-make-record): Add `defaults' property
5654         with values of canonical Info node name, the current Info file
5655         name and the current Info node name.  (Bug#12107)
5657 2012-08-08  Juri Linkov  <juri@jurta.org>
5659         * files.el (basic-save-buffer): Use `buffer-name' as the default
5660         of `read-file-name' when buffer is not visiting a file (bug#12128).
5662 2012-08-08  Juri Linkov  <juri@jurta.org>
5664         * info.el (Info-isearch-search): Doc fix.
5665         (Info-search): Change search-failed message from "initial node" to
5666         "end of node" (bug#12078).
5667         (Info-isearch-search): Change `isearch-string-state' to
5668         `isearch--state-string'.
5670 2012-08-08  Glenn Morris  <rgm@gnu.org>
5672         * language/persian.el: Remove file.
5673         * language/misc-lang.el: Move unique part of persian.el here.
5674         * loadup.el: Remove language/persian.
5676 2012-08-08  Óscar Fuentes  <ofv@wanadoo.es>
5678         * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
5680 2012-08-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5682         * progmodes/python.el Fixed defsubst warning.
5683         (python-syntax-context) Rename from python-info-ppss-context.
5684         (python-syntax-context-type): Rename from
5685         python-info-ppss-context-type.
5686         (python-syntax-comment-or-string-p): Rename from
5687         python-info-ppss-comment-or-string-p.
5689 2012-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
5691         * calc/calc-misc.el (calc-record-why): Don't record a message twice.
5693 2012-08-07  Andreas Schwab  <schwab@linux-m68k.org>
5695         * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
5696         a defcustom that is quoted with backquote.
5698         * calc/calc-prog.el (math-do-defmath): Use backquote forms.
5699         Fix handling of interactive spec when the body uses return.
5700         (math-do-arg-check, math-define-function-body): Use backquote forms.
5701         * calc/calc-ext.el (math-defcache): Likewise.
5702         * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
5703         * allout.el (allout-new-exposure): Likewise.
5704         * calc/calcalg2.el (math-tracing-integral): Likewise.
5705         * info.el (Info-last-menu-item): Likewise.
5706         * emulation/vip.el (vip-loop): Likewise.
5707         * textmodes/artist.el (artist-funcall): Likewise.
5708         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
5709         Construct menu-item directly.
5711         * progmodes/autoconf.el (font-lock-syntactic-keywords):
5712         Don't declare.
5714 2012-08-07  Chong Yidong  <cyd@gnu.org>
5716         * simple.el (deactivate-mark): Preserve text properties when
5717         saving the primary selection (Bug#8384).
5719 2012-08-07  Kevin Ryde  <user42@zip.com.au>
5721         * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
5722         (woman-parse-numeric-value): On a bad .IP line, issue a warning
5723         and continue processing (Bug#12110).
5725 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5727         * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
5728         syntax-propertize-function (bug#10095).
5730 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5732         * help-fns.el (help-fns--key-bindings, help-fns--signature)
5733         (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
5734         describe-function-1.
5735         (describe-function-1): Use them.  Move compiler macro after sig.
5736         (help-fns--compiler-macro): Use function-get.  Assume we're already in
5737         standard-output.  Adjust layout to new call order.
5739         * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
5740         re-binding a symbol that has a symbol-macro (bug#12119).
5742 2012-08-06  Mohsen BANAN  <libre@mohsen.1.banan.byname.net>
5744         * language/persian.el: New file.  (Bug#11812)
5745         * loadup.el: Add language/persian.el.
5747 2012-08-06  Chong Yidong  <cyd@gnu.org>
5749         * window.el (window--maybe-raise-frame): New function.
5750         (window--display-buffer): Split off from here.
5751         (display-buffer-reuse-window, display-buffer-pop-up-frame)
5752         (display-buffer-pop-up-window, display-buffer-use-some-window):
5753         Obey an inhibit-switch-frame action alist entry.
5754         (display-buffer): Update doc.
5756         * replace.el (occur-after-change-function): Avoid losing focus by
5757         using the inhibit-switch-frame display parameter (Bug#12139).
5759 2012-08-06  Fabián Ezequiel Gallina  <fgallina@cuca>
5761         Make internal shell process buffer names start with space.
5762         * progmodes/python.el (python-shell-make-comint): Add optional
5763         argument INTERNAL.
5764         (run-python-internal): Use it.
5765         (python-shell-internal-get-or-create-process): Check for new
5766         internal buffer names.
5768 2012-08-06  Glenn Morris  <rgm@gnu.org>
5770         * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
5771         Do less getting and setting of environment variables.
5773 2012-08-05  Chong Yidong  <cyd@gnu.org>
5775         * proced.el (proced): Add substitution string to docstring to
5776         trigger autoloading of the proced library on C-h f (Bug#1768).
5778         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
5779         Don't show defvars which have no second argument (Bug#8638).
5781         * imenu.el (imenu-generic-expression): Move documentation here
5782         from imenu--generic-function.
5783         (imenu--generic-function): Refer to imenu-generic-expression.
5785 2012-08-05  Vegard Øye  <vegard_oye@hotmail.com>  (tiny change)
5787         * emulation/viper-init.el (viper-deflocalvar): Add docstring and
5788         indentation declaration.
5789         (viper-loop): Add indentation declaration (Bug#7025).
5791 2012-08-05  Chong Yidong  <cyd@gnu.org>
5793         * help-fns.el (describe-variable): Add hyperlink for
5794         directory-local variables files.  Improve buffer-local and
5795         permanent-local reporting; suggested by MON KEY (Bug#6644).
5797         * help-mode.el (help-dir-local-var-def): New button type.
5799         * files.el (kill-buffer-hook): Provide a defvar.
5801 2012-08-05  Glenn Morris  <rgm@gnu.org>
5803         * eshell/esh-ext.el (eshell/addpath):
5804         Also update eshell-path-env.  (Bug#12013)
5806 2012-08-05  Chong Yidong  <cyd@gnu.org>
5808         * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
5810         * fringe.el (fringe-styles): Add docstring.
5811         (fringe--check-mode): New function.
5812         (set-fringe-mode, set-fringe-style): Use it.
5813         (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
5815         * files.el (set-auto-mode): Fix invalid setq call.
5817 2012-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5819         * isearch.el: Misc simplification; use defstruct.
5820         (isearch-mode-map): Dense maps now work like sparse ones.
5821         (isearch--state): New defstruct.
5822         (isearch-string-state, isearch-message-state, isearch-point-state)
5823         (isearch-success-state, isearch-forward-state)
5824         (isearch-other-end-state, isearch-word-state, isearch-error-state)
5825         (isearch-wrapped-state, isearch-barrier-state)
5826         (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
5827         replaced by defstruct's accessors.
5828         (isearch--set-state): Rename from isearch-top-state and change
5829         calling convention.
5830         (isearch-push-state): Use new isearch--get-state.
5831         (isearch-toggle-word): Disable regexp when enabling word.
5832         (isearch-message-prefix): Remove unused arg _c-q-hack.
5833         (isearch-message-suffix): Remove unused arg _ellipsis.
5835 2012-08-04  Andreas Schwab  <schwab@linux-m68k.org>
5837         * simple.el (list-processes--refresh): For a server use :host or
5838         :local as the address.
5839         (list-processes): Doc fix.
5841 2012-08-04  Michal Nazarewicz  <mina86@mina86.com>
5843         * lisp/mpc.el: Support password in host argument.
5844         (mpc--proc-connect): Parse and use new password element.
5845         Set mpc-proc variable instead of returning process.
5846         (mpc-proc): Adjust accordingly.
5848 2012-08-03  Eli Zaretskii  <eliz@gnu.org>
5850         * whitespace.el (whitespace-display-mappings): Use Unicode
5851         codepoints, instead of emacs-mule codepoints.  See
5852         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
5853         for the details.
5855         * files.el (file-truename): Don't skip symlink-chasing part on
5856         windows-nt.  Incorporate the resolution of 8+3 short aliases on
5857         Windows into the loop that recursively chases symlinks.
5858         Compare directory and its parent case-insensitively on MS-Windows and
5859         MS-DOS.
5861 2012-08-03  Chong Yidong  <cyd@gnu.org>
5863         * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
5865         * sort.el (sort-regexp-fields): Doc fix.
5867 2012-08-03  Tassilo Horn  <tsdh@gnu.org>
5869         * textmodes/reftex.el (reftex-compile-variables): Make keyvals
5870         labels regex position point at the expected place.
5872 2012-08-03  MON KEY  <monkey@sandpframing.com>
5874         * net/imap.el (imap-interactive-login, imap-authenticate)
5875         (imap-mailbox-lsub, imap-mailbox-list)
5876         (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
5877         (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
5878         (imap-parse-response): Doc fix.
5880 2012-08-03  João Távora  <joaotavora@gmail.com>
5882         * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
5883         if sexp scanning does not move point (Bug#5734).
5885 2012-08-02  Tassilo Horn  <tsdh@gnu.org>
5887         * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
5888         Add listings, minted, and ctable packages.
5889         (reftex-label-alist-builtin): Move listings, minted, and ctable
5890         entries before LaTeX.
5891         (reftex-label-alist): Docfix.
5893 2012-08-02  Bastien Guerry  <bzg@gnu.org>
5895         * replace.el (occur): Fix docstring (bug#12122).
5897 2012-08-02  Glenn Morris  <rgm@gnu.org>
5899         * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
5901 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
5903         Obsolete alias inactivate-current-input-method-function (Bug#10150).
5904         * international/mule-cmds.el: Create
5905         inactivate-current-input-method-function as an obsolete alias for
5906         deactivate-current-input-method-function.  See Katsumi Yamaoka in
5907         <http://bugs.gnu.org/10150#46>.
5909 2012-08-01  Jay Belanger  <jay.p.belanger@gmail.com>
5911         * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
5912         of nested `if's.
5914 2012-08-01  Glenn Morris  <rgm@gnu.org>
5916         * progmodes/autoconf.el (autoconf-definition-regexp):
5917         Add AH_TEMPLATE, adjust submatch numbering.
5918         (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
5919         (autoconf-current-defun-function): Update for above change.
5920         (autoconf-current-defun-function): First skip to end of current word.
5922 2012-08-01  Rupert Swarbrick  <rswarbrick@gmail.com>  (tiny change)
5924         * calendar/cal-html.el (cal-html-insert-agenda-days):
5925         Fix typo.  (Bug#12018)
5927 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
5929         Shell processes: enhancements to startup and CEDET compatibility.
5930         * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
5931         (python-shell-make-comint): accept-process-output at startup.
5932         (run-python-internal): Set inferior-python-mode-hook to nil.
5933         (python-shell-internal-get-or-create-process): call sit-for.
5934         (python-preoutput-result): Add obsolete alias.
5935         (python-shell-internal-send-string): Use it.
5936         (python-shell-send-setup-code): Remove call to
5937         accept-process-output.
5939 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
5941         * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
5942         (Bug#12108)
5944 2012-07-31  Jay Belanger  <jay.p.belanger@gmail.com>
5946         * calc-mode.el (calc-basic-simplification-mode): Rename from
5947         `calc-limited-simplification-mode'.
5948         (calc-alg-simplification-mode): New function.
5949         (calc-set-simplify-mode): Adjust message.
5951         * calc.el (calc-set-mode-line): Adjust mode line display for
5952         basic simplification mode.
5954         * calc-help.el (calc-m-prefix-help): Update help message.
5956         * calc-ext.el (calc-init-extensions): Add bindings and autoloads
5957         for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
5959 2012-07-31  Bastien Guerry  <bzg@gnu.org>
5961         * man.el (man): Fix comment.  (bug#12101)
5963 2012-07-31  Martin Rudalics  <rudalics@gmx.at>
5965         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
5966         Don't return a non-nil value when no suitable buffer was found.
5968 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
5970         * progmodes/python.el (run-python-internal): Disable font lock for
5971         internal shells.
5973 2012-07-30  Stefan Merten  <smerten@oekonux.de>
5975         * textmodes/rst.el: Silence `checkdoc-ispell'.
5976         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
5977         (rst-official-version, rst-official-cvs-rev)
5978         (rst-package-emacs-version-alist): Update to upstream V1.3.1.
5979         (rst-mode-map): New key binding.
5981 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
5983         Update .PHONY listings in makefiles.
5984         * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
5985         autoloads, update-subdirs, updates, bzr-update, update-authors,
5986         compile-onefile, compile-calc, backup-compiled-files,
5987         compile-after-backup, compile-one-process, mh-autoloads,
5988         bootstrap-clean, distclean, maintainer-clean.
5990 2012-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
5992         * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
5993         (calc-set-mode-line): Don't display "AlgSimp ".
5995         * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
5996         (calc-lim-simplify-mode): New function.
5997         (calc-set-simplify-mode): Default to 'alg.
5998         (calc-default-simplify-mode): Make algebraic simplifications
5999         the default.
6001         * calc/calc-ext.el (calc-init-extensions): Remove binding for
6002         `calc-alg-simplify-mode'.  Add binding for `calc-lim-simplify-mode'.
6004         * calc/calc-help.el (calc-m-prefix-help): Change messages to
6005         indicate new simplification modes.
6007         * calc/README: Mention new default simplification mode.
6009         * calc/calc.el (math-normalize-error): New variable.
6010         (math-normalize): Set `math-normalize-error' to t
6011         when there's an error.
6013         * calc/calc-alg.el (math-simplify): Don't simplify when
6014         `math-normalize' returns an error.
6016 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
6018         * international/mule-cmds.el (set-locale-environment): Revert last
6019         change, since display-graphic-p returns nil when this function is
6020         called during startup.  Instead...
6022         * term/w32console.el (terminal-init-w32console): ...setup the
6023         keyboard and terminal encoding for TTY sessions here.  (Bug#12082)
6025 2012-07-29  Juri Linkov  <juri@jurta.org>
6027         * simple.el (goto-line): Don't display default line number in the
6028         prompt because it should be displayed by `read-number' (bug#9952).
6029         Add the current line number to the defaults of `goto-line' to
6030         allow its easier modification by users with `M-n' (bug#9201).
6032         * subr.el (read-number): Support multiple default values like in
6033         other minibuffer reading functions.  Replace `read' with
6034         `string-to-number' for consistency with `number-to-string'.
6036 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
6038         deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
6039         * emulation/viper-init.el (viper-deactivate-input-method-action):
6040         Rename from viper-inactivate-input-method-action.
6041         (viper-deactivate-input-method):
6042         Rename from viper-inactivate-input-method.
6043         * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
6044         * international/mule-cmds.el (deactivate-input-method):
6045         Rename from inactivate-input-method.
6046         Also run input-method-deactivate-hook.
6047         (deactivate-current-input-method-function):
6048         Rename from inactivate-current-input-method-function.
6049         (input-method-deactivate-hook): New hook.
6050         (input-method-inactivate-hook): Mark obsolete.
6051         (inactivate-input-method): Mark obsolete.
6053         * international/quail.el (quail-activate):
6054         Also run quail-deactivate-hook.
6055         (quail-deactivate): Rename from quail-inactivate.
6056         * international/robin.el (robin-activate):
6057         Also run robin-deactivate-hook.
6058         (robin-deactivate): Rename from robin-inactivate.
6060 2012-07-29  Chong Yidong  <cyd@gnu.org>
6062         * simple.el (indicate-copied-region): New function.
6063         (kill-ring-save): Split off from here.
6065         * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
6066         (kill-rectangle): Set deactivate-mark to t on read-only error.
6068         * register.el (copy-to-register, copy-rectangle-to-register):
6069         Deactivate the mark, and use indicate-copied-region (Bug#10056).
6070         (append-to-register, prepend-to-register): Call indicate-copied-region.
6072 2012-07-29  Juri Linkov  <juri@jurta.org>
6074         * simple.el (async-shell-command-buffer): New defcustom.
6075         (shell-command): Use it.  (Bug#4719)
6077 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
6079         * international/mule-cmds.el (set-locale-environment): In a
6080         console session on MS-Windows, set up keyboard and terminal
6081         encoding from the OEM codepage, not the ANSI codepage.
6082         (Bug#12055)
6084 2012-07-28  Chong Yidong  <cyd@gnu.org>
6086         * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
6087         gdb-get-location.
6089 2012-07-28  Leo Liu  <sdl.web@gmail.com>
6091         * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
6092         the alist (bug#12029).
6094 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
6096         * makefile.w32-in (custom-deps, finder-data, updates, compile)
6097         (compile-always, compile-first)
6098         ($(lisp)/calendar/cal-loaddefs.el)
6099         ($(lisp)/calendar/diary-loaddefs.el)
6100         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
6101         ($(lisp)/net/tramp-loaddefs.el, bootstrap)
6102         ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
6103         instead of on update-subdirs.
6104         (bootstrap-clean): Delete $(lisp)/subdirs.el.
6106 2012-07-28  Chong Yidong  <cyd@gnu.org>
6108         * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
6109         directory if vc-deduce-backend returns nil (Bug#7350).
6111         * simple.el (delete-trailing-lines): New option.
6112         (delete-trailing-whitespace): Obey it (Bug#11879).
6114 2012-07-28  David Engster  <deng@randomsample.de>
6116         * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
6117         Explanation of new 'symbol-qnames feature in doc-strings.
6118         (xml-maybe-do-ns): Return expanded names as plain symbols if
6119         'symbol-qnames was provided in XML-NS argument (Bug#11916).
6120         (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
6122 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
6124         Consistent completion in inferior python with emacs -nw.
6125         * progmodes/python.el (inferior-python-mode): replace "<tab>"
6126         binding in inferior-python-mode-map with "\t".
6127         (python-shell-completion-complete-at-point)
6128         (python-completion-complete-at-point): Remove interactive spec.
6130 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
6132         * calc/calccomp.el (math-compose-expr): Undo previous change.
6134 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
6136         * progmodes/python.el (python-mode-map): Add keybinding for
6137         run-python.
6138         (python-shell-make-comint): Fix pop-to-buffer call.
6139         (run-python): Autoload.  New arg SHOW.
6140         (python-shell-get-or-create-process): Do not pop python process
6141         buffer.
6143 2012-07-27  Michael Albinus  <michael.albinus@gmx.de>
6145         * notifications.el (notifications-on-action-signal)
6146         (notifications-on-closed-signal): Use also the bus address for the map.
6147         (notifications-notify, notifications-close-notification)
6148         (notifications-get-capabilities): Add optional argument BUS.
6150 2012-07-27  Tassilo Horn  <tsdh@gnu.org>
6152         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
6153         Add support for the lstlisting and minted environments, and for the
6154         ctable macro.
6155         * textmodes/reftex.el (reftex-compile-variables): Also recognize
6156         labels written in keyvals syntax.
6158 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
6160         * calc/calccomp.el (math-compose-expr): Use parentheses when
6161         there is a product in the denominator of a fraction.
6163 2012-07-26  Eli Zaretskii  <eliz@gnu.org>
6165         * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
6166         ($(lisp)/calendar/diary-loaddefs.el)
6167         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
6168         ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
6169         Fixes failures in parallel bootstrap because subdirs.el is being
6170         rewritten while the autoload files are built at the same time,
6171         which needs to load subdirs.el.
6173 2012-07-26  Martin Rudalics  <rudalics@gmx.at>
6175         * mouse.el (popup-menu): Fix doc-string and re-indent code.
6176         (mouse-drag-line): Don't exit tracking when a switch-frame or
6177         switch-window event occurs (Bug#12006).
6179 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6181         * mouse.el (popup-menu): Fix last change.
6183 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6185         Autoload from Lisp with more care.  Follow aliases when looking for
6186         function properties.
6187         * subr.el (autoloadp): New function.
6188         (symbol-file): Use it.
6189         (function-get): New function.
6190         * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
6191         autoload-do-load.
6192         * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
6193         (lisp-indent-function):
6194         * emacs-lisp/gv.el (gv-get):
6195         * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
6196         * emacs-lisp/byte-opt.el (byte-optimize-form):
6197         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
6198         * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
6199         Use function-get.
6200         * emacs-lisp/cl.el: Don't propagate function properties any more.
6202         * speedbar.el (speedbar-add-localized-speedbar-support):
6203         * emacs-lisp/disass.el (disassemble-internal):
6204         * desktop.el (desktop-load-file):
6205         * help-fns.el (help-function-arglist, find-lisp-object-file-name)
6206         (describe-function-1):
6207         * emacs-lisp/find-func.el (find-function-noselect):
6208         * emacs-lisp/elp.el (elp-instrument-function):
6209         * emacs-lisp/advice.el (ad-has-proper-definition):
6210         * apropos.el (apropos-safe-documentation, apropos-macrop):
6211         * emacs-lisp/debug.el (debug-on-entry):
6212         * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
6213         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
6214         * calc/calc.el (name): Use autoloadp & autoload-do-load.
6216 2012-07-25  Alp Aker  <alp.tekin.aker@gmail.com>
6218         * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
6219         function, not an obsolete variable (Bug#12046).
6221 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
6223         * faces.el (face-spec-reset-face): Fix last change.  (Bug#12042)
6225 2012-07-25  Christopher Schmidt  <christopher@ch.ristopher.com>
6227         * emacs-lisp/pp.el (pp-display-expression): Select old selected
6228         window only if it is still live (Bug#12034).
6230 2012-07-25  Martin Rudalics  <rudalics@gmx.at>
6232         * subr.el (redirect-frame-focus): Add advertised calling
6233         convention (Bug#12030).
6235 2012-07-25  Paul Eggert  <eggert@cs.ucla.edu>
6237         Prefer typical American spelling for "acknowledgment".
6238         * vc/add-log.el (change-log-acknowledgment): Rename from
6239         change-log-acknowledgement, with an alias for the old name.
6241 2012-07-25  Jay Belanger  <jay.p.belanger@gmail.com>
6243         * calc-alg.el (math-simplify-divide): Don't cross multiply
6244         in an equation when the lhs is a variable.
6246 2012-07-24  Julien Danjou  <julien@danjou.info>
6248         * net/netrc.el (netrc-find-service-number, netrc-store-data):
6249         Remove, unused.
6251 2012-07-23  Eli Zaretskii  <eliz@gnu.org>
6253         * startup.el (command-line): Don't display an empty user name in
6254         the error message about non-existent home directory, when
6255         init-file-user was set to an empty string.  See
6256         http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
6257         for the details and context.
6259 2012-07-22  Vincent Belaïche  <vincentb1@users.sourceforge.net>
6261         * ses.el (ses-cell-formula-aset): New macro.
6262         (ses-cell-references-aset): New macro.
6263         (ses-cell-p): New function.
6264         (ses-rename-cell): Do no longer rely on complex operations like
6265         ses-cell-set-formula or ses-set-cell to change the cell and handle
6266         the undo at the same time, but rather use lower level new macros
6267         `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
6268         the undo directly.  Refresh the mode line.
6270 2012-07-21  Leo Liu  <sdl.web@gmail.com>
6272         * progmodes/cc-cmds.el (c-defun-name):
6273         Use match-string-no-properties instead for consistency.
6275 2012-07-20  Leo Liu  <sdl.web@gmail.com>
6277         * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
6278         (Bug#7879)
6280         * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
6282 2012-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6284         * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
6285         * progmodes/bug-reference.el, misearch.el: Provide themselves
6286         (bug#11915).
6288         * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
6289         of narrowed buffer (bug#11966).
6291 2012-07-20  Vincent Belaïche  <vincentb1@users.sourceforge.net>
6293         * ses.el (ses-rename-cell): Set new name also in reference list of
6294         cells of which the renamed cell depends.
6296 2012-07-20  Masatake YAMATO  <yamato@redhat.com>
6298         * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
6299         to check whether menu-bar is shown or not.  If not shown,
6300         show the menu-bar as a popup menu instead of using tmm.
6301         * mouse.el (popup-menu): Accept `point' as `position' argument.
6303 2012-07-20  Dmitry Gutov  <dgutov@yandex.ru>
6305         * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
6306         up inside string symbol literal (bug#11923).
6308 2012-07-20  Eli Zaretskii  <eliz@gnu.org>
6310         * startup.el (fancy-startup-text): Read the whole tutorial, not
6311         just its first 256 bytes.  Prevents gibberish in display of the
6312         tutorial title.
6314 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
6316         Drop idle buffer compaction due to an absence of the
6317         proved efficiency.
6318         * compact.el: Remove.
6320 2012-07-19  Sam Steingold  <sds@gnu.org>
6322         * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
6323         vc-bzr-pull & vc-bzr-merge-branch.
6324         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
6325         (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
6326         for consistency with compilation-error-regexp-alist.
6327         * vc/vc-git.el (vc-git-error-regexp-alist): Add.
6328         (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
6329         * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
6330         (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
6332 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6334         * emacs-lisp/chart.el: Use lexical-binding.
6335         (chart-emacs-storage): Don't hardcode the list of entries.
6337 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
6339         Next round of tweaks caused by Fgarbage_collect changes.
6340         * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
6342 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
6344         Compact buffers when idle.
6345         * compact.el: New file.
6347 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6349         * subr.el (eventp): Presume that if it looks vaguely like an event,
6350         it's an event (bug#10190).
6352 2012-07-19  Fabián Ezequiel Gallina  <fgallina@cuca>
6354         Enhancements to ppss related code (thanks Stefan).
6355         * progmodes/python.el (python-indent-context)
6356         (python-indent-calculate-indentation, python-indent-dedent-line)
6357         (python-indent-electric-colon, python-nav-forward-block)
6358         (python-mode-abbrev-table)
6359         (python-info-assignment-continuation-line-p): Simplify checks
6360         for ppss context.
6361         (python-info-continuation-line-p): Cleanup.
6362         (python-info-ppss-context): Do not catch 'quote.
6363         (python-info-ppss-context-type)
6364         (python-info-ppss-comment-or-string-p): Simplify.
6366 2012-07-18  Fabián Ezequiel Gallina  <fgallina@cuca>
6368         * progmodes/python.el: Enhancements to eldoc support.
6369         (python-info-current-symbol): New function.
6370         (python-eldoc-at-point): Use python-info-current-symbol.
6371         (python-info-current-defun): Fix cornercase on first defun scan.
6372         (python-eldoc--get-doc-at-point): Use python-info-current-symbol
6373         and signal error when no inferior python process is available.
6375 2012-07-18  Dmitry Gutov  <dgutov@yandex.ru>
6377         * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
6378         assume it's always t.
6379         (vc-git-registered): Remove caching, the function is only called
6380         once.
6381         (vc-git-branches): Use `vc-git--call' instead of `call-process'.
6383 2012-07-18  Chong Yidong  <cyd@gnu.org>
6385         * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
6387         * simple.el (count-words): Report on narrowing (Bug#9959).
6389         * bindings.el: Bind M-= to count-words.
6391         * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
6393 2012-07-18  Masatake YAMATO  <yamato@redhat.com>
6395         * progmodes/sh-script.el (sh-imenu-generic-expression):
6396         Capture a function with `function' keyword and without parentheses
6397         like "function FOO" (bug#11856).
6399 2012-07-18  Tassilo Horn  <tassilo@member.fsf.org>
6401         * window.el (split-window-sensibly): Make WINDOW argument
6402         optional.
6404 2012-07-18  Chong Yidong  <cyd@gnu.org>
6406         * subr.el (keyboard-translate): Doc fix (Bug#7261).
6408         * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
6409         and make C-x 8 RET exit isearch (Bug#11439).
6411         * international/iso-transl.el: Move isearch-mode-map key
6412         definitions to isearch.el.
6414 2012-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6416         * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
6417         (eieio-defclass): Use gv-define-setter when possible.
6419 2012-07-18  Dmitry Antipov  <dmantipov@yandex.ru>
6421         Reflect recent changes in Fgarbage_collect.
6422         * emacs-lisp/chart.el (chart-emacs-storage): Change to
6423         reflect new format of data returned by Fgarbage_collect.
6425 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
6427         New utility functions + python-info-ppss-context fix (Bug#11910).
6428         * progmodes/python.el (python-info-beginning-of-block-statement-p)
6429         (python-info-ppss-comment-or-string-p): New functions.
6430         (python-info-ppss-context): Small fix for string check.
6432 2012-07-17  Juri Linkov  <juri@jurta.org>
6434         * dired-aux.el (dired-do-async-shell-command): Doc fix.
6435         (dired-do-async-shell-command): Don't add `*' at the end of the
6436         command (Bug#11815).
6437         (dired-do-shell-command): Doc fix.
6438         (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
6439         Join the individual commands using either "&" or ";" as the
6440         separator depending on the values of these trailing characters.
6441         At the end re-add the trailing "&".  (Bug#10598)
6443         * simple.el (async-shell-command): Sync the interactive spec with
6444         `shell-command'.  Doc fix.
6445         (shell-command): Doc fix.
6447 2012-07-17  Juri Linkov  <juri@jurta.org>
6449         * descr-text.el (describe-char): Fix format args.  (Bug#10129)
6451 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
6453         Final renames and doc fixes for movement commands (bug#11899).
6454         * progmodes/python.el (python-nav-beginning-of-statement):
6455         Rename from python-nav-statement-start.
6456         (python-nav-end-of-statement): Rename from
6457         python-nav-statement-end.
6458         (python-nav-beginning-of-block): Rename from
6459         python-nav-block-start.
6460         (python-nav-end-of-block): Rename from python-nav-block-end.
6462 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
6464         * progmodes/python.el (python-shell-send-string-no-output):
6465         Allow accept-process-output to quit, keeping shell process ready for
6466         future interactions (Bug#11868).
6468 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6470         * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
6472         * emacs-lisp/elint.el (elint-find-args-in-code):
6473         Use help-function-arglist, so as to handle lexical byte-code.
6475         * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
6476         change (bug#11826).
6478 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6480         * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
6481         Avoid spuriously marking the buffer as modified because of c-is-sws.
6483         * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
6484         as not-a-comment (bug#11946).
6486         * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
6487         for uninterned vars.
6489         * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
6490         Use read-event since we don't really want to read chars but bytes.
6492         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
6493         $$..$$ but also $..$ using regexps (bug#11953).
6494         Use tex-verbatim for \url and \path.
6495         (tex-font-lock-keywords): Define as defconst like the others.
6496         (tex-common-initialization): Don't use font-lock-syntax-table any more.
6498 2012-07-16  René Kyllingstad  <Rene@Kyllingstad.com>  (tiny change)
6500         * international/mule-cmds.el (ucs-insert): Make it an obsolete
6501         alias for insert-char.
6503 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
6505         * progmodes/python.el: Simplified imenu implementation.
6506         (python-nav-jump-to-defun): Remove command.
6507         (python-mode-map): Use `imenu' instead.
6508         (python-nav-list-defun-positions-cache)
6509         (python-imenu-include-defun-type, python-imenu-make-tree)
6510         (python-imenu-subtree-root-label, python-imenu-index-alist):
6511         Remove vars.
6512         (python-nav-list-defun-positions, python-nav-read-defun)
6513         (python-imenu-tree-assoc, python-imenu-make-element-tree)
6514         (python-imenu-make-tree, python-imenu-create-index):
6515         Remove functions.
6516         (python-mode): Update to interact with imenu by setting
6517         `imenu-extract-index-name-function' only.
6519 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
6521         * progmodes/python.el: Enhancements to navigation commands.
6522         (python-nav-backward-sentence)
6523         (python-nav-forward-sentence): Remove.
6524         (python-nav-backward-statement, python-nav-forward-statement)
6525         (python-nav-statement-start, python-nav-statement-end)
6526         (python-nav-backward-block, python-nav-forward-block)
6527         (python-nav-block-start, python-nav-block-end)
6528         (python-nav-forward-sexp-function)
6529         (python-info-current-line-comment-p)
6530         (python-info-current-line-empty-p): New functions.
6531         (python-indent-context): Use `python-nav-statement-start'.
6533 2012-07-16  Michael Albinus  <michael.albinus@gmx.de>
6535         * eshell/em-ls.el (eshell/ls): Use `apply'.
6537         * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
6538         multi-hops, instead of Tramp internals.
6540         * vc/ediff.el (ediff-directories): Add trailing space to prompts.
6542         * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
6543         when F1 and F2 are located on different hosts.
6545 2012-07-14  Chong Yidong  <cyd@gnu.org>
6547         * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
6548         (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
6549         (xterm-mouse-translate-extended, xterm-mouse-translate-1)
6550         (xterm-mouse--read-event-sequence-1000)
6551         (xterm-mouse--read-event-sequence-1006): New functions.  For old
6552         mouse protocol, handle M-mouse-X events correctly.
6553         (xterm-mouse-event): New arg specifying mouse protocol.
6554         (turn-on-xterm-mouse-tracking-on-terminal)
6555         (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
6556         sequence to toggle extended coordinates on newer XTerms.
6557         This appears to be harmless on terminals which do not support this.
6559 2012-07-14  Leo Liu  <sdl.web@gmail.com>
6561         Add fringe bitmap indicators for flymake.  (Bug#11253)
6562         * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
6563         (flymake-make-overlay): New arg BITMAP.
6564         (flymake-error-bitmap, flymake-warning-bitmap)
6565         (flymake-fringe-indicator-position): New user variables.
6567         * fringe.el: New bitmap exclamation-mark.
6569 2012-07-14  Jan Djärv  <jan.h.d@swipnet.se>
6571         * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
6572         also (Bug#7879).
6574 2012-07-14  Chong Yidong  <cyd@gnu.org>
6576         * electric.el (electric-pair-post-self-insert-function): Fix pair
6577         insertion in empty-region case (Bug#11520).
6579 2012-07-14  Chong Yidong  <cyd@gnu.org>
6581         * bindings.el: Consolidate ctl-x-r-map bindings.
6582         Bind copy-rectangle-as-kill to C-x r w.
6584         * rect.el, register.el: Move bindings to bindings.el.
6586 2012-07-14  Reuben Thomas  <rrt@sc3d.org>
6588         * rect.el (copy-rectangle-as-kill): New command (Bug#739).
6590 2012-07-13  Andreas Schwab  <schwab@linux-m68k.org>
6592         * emacs-lisp/cl.el (labels): Remove spurious quote.  (Bug#11938)
6594 2012-07-13  Juanma Barranquero  <lekktu@gmail.com>
6596         * bindings.el (top): Use `mapc' instead of `mapcar'.
6598         * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
6600 2012-07-13  Michael Albinus  <michael.albinus@gmx.de>
6602         * progmodes/sql.el (sql-comint): Suppress the check for program on
6603         remote hosts.  Reported by Francis Devereux <francis@devrx.org>.
6604         (Bug#11908)
6606 2012-07-13  Chong Yidong  <cyd@gnu.org>
6608         * bindings.el: Assign a non-nil permanent-local property to
6609         per-buffer variables which lack a default value (Bug#11930).
6611         * help-fns.el (describe-variable): In the "automatically becomes
6612         local" notice, take note of permanent-local variables.
6614 2012-07-13  Chong Yidong  <cyd@gnu.org>
6616         * files.el (toggle-read-only): Doc fix and code cleanup.  New arg
6617         to allow printing the message when called from Lisp.
6619         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6620         Remove toggle-read-only.
6622         * bs.el (bs-toggle-readonly):
6623         * buff-menu.el (Buffer-menu-toggle-read-only):
6624         Remove with-no-warnings around toggle-read-only.
6626         * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
6627         Remove with-no-warnings around toggle-read-only.
6628         (ffap-read-only, ffap-read-only-other-window)
6629         (ffap-read-only-other-frame): Callers changed.
6631         * help-mode.el: Don't require view package.
6632         (help-mode-finish): Set buffer-read-only instead of calling
6633         toggle-read-only.
6635         * bindings.el (mode-line-toggle-read-only):
6636         * dired.el (dired-toggle-read-only):
6637         * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
6638         with non-nil second arg.
6640         * emacs-lisp/eieio-custom.el (eieio-customize-object):
6641         * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
6642         directly.
6644 2012-07-12  Eli Zaretskii  <eliz@gnu.org>
6646         * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
6647         not incf.
6649 2012-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6651         More CL cleanups and reduction of use of cl.el.
6652         * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
6653         * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
6654         * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
6655         * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
6656         * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
6657         * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
6658         * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
6659         * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
6660         * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
6661         * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
6662         * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
6663         * eshell/em-cmpl.el, eshell/em-banner.el:
6664         * calendar/parse-time.el: Use cl-lib.
6665         * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
6666         * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
6667         * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
6668         * term/ns-win.el, term.el, shell.el, ps-samp.el:
6669         * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
6670         * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
6671         * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
6672         * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
6673         * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
6674         * mail/mailheader.el, mail/feedmail.el: Don't use CL.
6675         * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
6676         * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
6677         `lambda' rather than with `quote'.
6678         (eshell-do-opt): Adjust accordingly.
6679         (eshell-process-option): Simplify.
6680         * eshell/esh-var.el:
6681         * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
6682         * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
6683         (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
6684         to `pcase--dontcare'.
6685         * emacs-lisp/cl.el (labels): Mark obsolete.
6686         (cl--letf, letf): Move to cl-lib.
6687         (cl--letf*, letf*): Remove.
6688         * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
6689         * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
6690         (cl-progv): Rewrite.
6691         (cl--letf, cl-letf): Move from cl.el.
6692         (cl-letf*): New macro.
6693         * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
6695 2012-07-11  Michael Albinus  <michael.albinus@gmx.de>
6697         * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
6699 2012-07-11  Chong Yidong  <cyd@gnu.org>
6701         * vc/log-edit.el (log-edit-vc-backend): New variable.
6702         (log-edit): Doc fix.
6704         * vc/vc-dispatcher.el (vc-log-edit): New args.  Use PARAMS
6705         argument of log-edit to set up all local variables.
6706         (vc-start-logentry): New optional arg specifying VC backend.
6708         * vc/vc.el (vc-checkin): Use it.
6709         (vc-deduce-fileset): Handle Log Edit buffers.
6710         (vc-diff): Make first argument optional too.
6712         * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
6714 2012-07-10  Michael Albinus  <michael.albinus@gmx.de>
6716         * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
6717         command, just in case.  The function is not needed anymore.
6718         (eshell-external-command): Do not call `eshell-remote-command'.
6720 2012-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6722         Reduce use of (require 'cl).
6723         * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
6724         * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
6725         * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
6726         * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
6727         * international/quail.el, info-xref.el, imenu.el, image-mode.el:
6728         * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
6729         * battery.el, avoid.el, abbrev.el: Use cl-lib.
6730         * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
6731         * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
6732         * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
6733         * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
6734         * calculator.el, autorevert.el, apropos.el: Don't require CL.
6735         * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
6736         (byte-compile-unfold-bcf, byte-compile-check-variable):
6737         * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
6738         (byte-compile-nilconstp):
6739         * emacs-lisp/autoload.el (make-autoload): Use pcase.
6740         * face-remap.el (text-scale-adjust): Simplify pcase patterns.
6742         * emacs-lisp/gv.el (cond): Make it a valid place.
6743         (if): Simplify slightly.
6745         * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
6746         (pcase--self-quoting-p): New function.
6747         (pcase--u1): Use it.
6749 2012-07-10  Glenn Morris  <rgm@gnu.org>
6751         * emacs-lisp/authors.el (authors-fixed-entries):
6752         (authors-renamed-files-alist): Update for configure.in -> configure.ac.
6754 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
6756         Rename configure.in to configure.ac (Bug#11603).
6757         * emacs-lisp/authors.el (authors-canonical-file-name):
6758         * progmodes/autoconf.el (autoconf-mode):
6759         Prefer configure.ac to configure.in.
6761 2012-07-08  Chong Yidong  <cyd@gnu.org>
6763         * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
6764         Implement the mouse-1-click-follows-link handling properly.
6766         * info.el (Info-link-keymap): Use follow-link mechanism for
6767         header-line links (Bug#374).
6769         * simple.el (deactivate-mark): Do not set the primary selection
6770         if another program has acquired it (Bug#11772).
6772 2012-07-07  Kevin Ryde  <user42@zip.com.au>
6774         * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
6775         (woman-decode-region): Replace escaped-escapes without destroying
6776         bold or underline (Bug#11552).
6777         (woman2-process-escapes): Handle nofill regions (Bug#11591).
6779 2012-07-07  Chong Yidong  <cyd@gnu.org>
6781         * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
6782         (interprogram-cut-function, interprogram-paste-function):
6783         Mention that we typically mean the clipboard.
6785 2012-07-06  Glenn Morris  <rgm@gnu.org>
6787         * kmacro.el (kmacro-call-macro): Restore repeat message.  (Bug#11817)
6789         * files.el (toggle-read-only): Restrict message to interactive use.
6791 2012-07-06  Michael Albinus  <michael.albinus@gmx.de>
6793         * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
6795         * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
6797 2012-07-06  Glenn Morris  <rgm@gnu.org>
6799         * Makefile.in (compile-one-process): Rename from "recompile".
6801         * Makefile.in (bzr-update): "compile" is the same as "recompile
6802         autoloads", but parallelizable, so use that instead.
6804 2012-07-06  Dmitry Gutov  <dgutov@yandex.ru>
6806         * window.el (quit-window): Always restore window height when
6807         it's saved in quit-restore parameter (Bug#11810).
6809 2012-07-06  Glenn Morris  <rgm@gnu.org>
6811         * simple.el (kill-whole-line): Doc tweak.
6813 2012-07-06  Eli Zaretskii  <eliz@gnu.org>
6815         * files.el (file-relative-name): Compare file names
6816         case-insensitively if on MS-Windows or MS-DOS, or if
6817         read-file-name-completion-ignore-case is non-nil.  Don't use
6818         case-fold-search for this purpose.  (Bug#11827)
6820 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
6822         * calendar/cal-dst.el (calendar-current-time-zone):
6823         Return calendar-current-time-zone-cache if non-nil.
6825 2012-07-17  Masatake YAMATO  <yamato@redhat.com>
6826 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
6828         * calendar/cal-dst.el (calendar-current-time-zone):
6829         Return calendar-current-time-zone-cache if non-nil.
6831 2012-07-06  Glenn Morris  <rgm@gnu.org>
6833         * Makefile.in (cvs-update): Remove old alias.
6835 2012-07-05  Michael Albinus  <michael.albinus@gmx.de>
6837         Sync with Tramp 2.2.6-pre.
6839         * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
6840         compatible declaration.
6842         * net/tramp-cmds.el (tramp-append-tramp-buffers):
6843         Protect `list-load-path-shadows' call.
6845         * net/tramp-compat.el (top): Require packages, which aren't
6846         autoloaded anymore for XEmacs.  Protect call of
6847         `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
6848         compiler.  Do not require tramp-util.el and tramp-vc.el anymore,
6849         it hurts at least for SXEmacs.
6850         (tramp-compat-temporary-file-directory): In XEmacs, there is no
6851         standard-value for `temporary-file-directory'.
6853         * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
6854         Redirect stderr to /dev/null.
6855         (tramp-sh-handle-write-region): uid and gid can be floats.
6856         Reported by Russell Sim <russell.sim@gmail.com>.
6857         (tramp-sh-handle-vc-registered): Hide errors.
6858         (tramp-vc-file-name-handler): Use dummy results for `process-file'
6859         and `start-file-process'.
6860         (tramp-maybe-open-connection): Check also whether `non-essential'
6861         is bound.
6863 2012-07-04  Chong Yidong  <cyd@gnu.org>
6865         * xml.el (xml--parse-buffer): Use xml-syntax-table.
6866         (xml-parse-tag): Likewise, and avoid changing entity tables.
6867         (xml-syntax-table): Define from scratch, making sure not to give
6868         x2000 and other Unicode spaces whitespace syntax, since those are
6869         not spaces in XML.
6870         (xml-parse-fragment): Delete unused function.
6871         (xml-name-start-char-re, xml-name-char-re, xml-name-re)
6872         (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
6873         (xml-entity-ref, xml-pe-reference-re)
6874         (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
6875         (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
6876         (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
6877         (xml-entity-value-re): Use syntax references in regexps where
6878         possible; no need to define inside a let-binding.
6879         (xml-parse-dtd): Use xml-pe-reference-re.
6880         (xml-entity-or-char-ref-re): New defconst.
6881         (xml-parse-string, xml-substitute-special): Use it.
6883 2012-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6885         * files.el (locate-dominating-file): Allow `name' to be a predicate.
6886         (find-file--read-only): New function.
6887         (find-file-read-only, find-file-read-only-other-window)
6888         (find-file-read-only-other-frame): Use it.
6889         (insert-file-contents-literally): Don't `fset'.
6890         (get-free-disk-space): Use locate-dominating-file.
6892         * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
6893         function is already compiled.
6895         * xml.el (xml-name-regexp): Remove, redundant.  Use xml-name-re.
6897 2012-07-03  Michael Albinus  <michael.albinus@gmx.de>
6899         * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
6900         files on the same host.
6902 2012-07-03  Andreas Schwab  <schwab@linux-m68k.org>
6904         * help-fns.el (describe-function-1): Only call
6905         help-fns--autoloaded-p when we have a file name.  (Bug#11848)
6907 2012-07-03  Chong Yidong  <cyd@gnu.org>
6909         * xml.el: Protect parser against XML bombs.
6910         (xml-entity-expansion-limit): New variable.
6911         (xml-parse-string, xml-substitute-special): Use it.
6912         (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
6914 2012-07-03  Glenn Morris  <rgm@gnu.org>
6916         * progmodes/bug-reference.el (bug-reference-bug-regexp):
6917         Allow linking to specific messages in debbugs reports (eg 123#5).
6919 2012-07-02  Chong Yidong  <cyd@gnu.org>
6921         * xml.el: Fix entity and character reference expansion, allowing
6922         them to expand into markup as per XML spec.
6923         (xml-default-ns): New variable.
6924         (xml-entity-alist): Use XML spec definitions for lt and amp.
6925         (xml-parse-region): Make first two arguments optional.
6926         Discard text properties.
6927         (xml-parse-tag-1): New function, spun off from xml-parse-tag.
6928         All callers changed.
6929         (xml-parse-tag): Call xml-parse-tag-1.  For backward
6930         compatibility, this function should not modify buffer contents.
6931         (xml-parse-tag-1): Fix opening-tag regexp.
6932         (xml-parse-string): Rewrite, handling entity and character
6933         references properly.
6934         (xml--entity-replacement-text): Signal an error if a parameter
6935         entity is undefined.
6937 2012-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6939         * comint.el (comint-output-filter): Filter out repeated prompts.
6941         * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
6942         and file-name-absolute-p.
6943         (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
6944         internal calls.
6946 2012-07-02  Paul Eggert  <eggert@cs.ucla.edu>
6948         Spelling fixes.
6949         * emacs-lisp/bytecomp.el (byte-compile--reify-function):
6950         Rename from byte-compile--refiy-function.  All uses changed.
6952 2012-07-01  Chong Yidong  <cyd@gnu.org>
6954         * xml.el (xml--parse-buffer): New function.  Move most of
6955         xml-parse-region here.
6956         (xml-parse-region): Copy region into a temporary buffer, since
6957         parameter entity substitution requires changing buffer contents.
6958         Use xml--parse-buffer.
6959         (xml-parse-file): Use xml--parse-buffer.
6960         (xml-parse-dtd): Make parameter entity substitution work right.
6961         Use proper regexps for ELEMENT declarations (Bug#7172).
6963 2012-06-30  Glenn Morris  <rgm@gnu.org>
6965         * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
6967         * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
6968         Remove outdated and unnecessary dbus declarations.
6970 2012-06-30  Eli Zaretskii  <eliz@gnu.org>
6972         * emacs-lisp/timer.el (timer-until): Subtract results of
6973         float-time, instead of taking float-time of the result of
6974         time-subtract, since float-time signals an error for negative time
6975         arguments.
6977 2012-06-30  Chong Yidong  <cyd@gnu.org>
6979         * xml.el (xml-*-re): Convert defvars into defconsts, and
6980         eval-and-compile them so eval-and-compile works on derivatives.
6981         (xml--entity-replacement-text): Use eval-and-comple.
6983 2012-06-30  Michael Albinus  <michael.albinus@gmx.de>
6985         * vc/vc-git.el (vc-git-registered): Use cache property
6986         `git-registered'.
6987         (vc-git-mode-line-string): Call `vc-working-revision' instead of
6988         `vc-git-working-revision' in order to benefit from the cache.
6989         (vc-git-root): Use cache property `git-root'.  (Bug#11757)
6991 2012-06-30  Dmitry Gutov  <dgutov@yandex.ru>
6993         * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
6994         removed (likely outside Emacs).  (Bug#11757)
6996 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6998         * emacs-lisp/cl-lib.el: Require macroexp.
7000 2012-06-30  Chong Yidong  <cyd@gnu.org>
7002         * xml.el: Implement XML parameter entities.
7003         (xml-parameter-entity-alist): New variable.
7004         (xml-parse-region, xml-parse-fragment): Preserve previous values
7005         of xml-entity-alist and xml-parameter-entity-alist, so that
7006         repeated calls on different documents do not change them.
7007         (xml-parse-tag): Fix doctype regexp.
7008         (xml--entity-replacement-text): New function.
7009         (xml-parse-dtd): Use it.  Don't handle system entities; doing that
7010         properly requires url retrieval which is unimplemented.
7011         (xml-escape-string): Doc fix.
7013 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7015         * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
7017 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
7019         * fringe.el (fringe-mode): Doc fix.
7021 2012-06-29  Michael Albinus  <michael.albinus@gmx.de>
7023         * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
7024         is non-nil.
7025         (ange-ftp-ignore-errors-if-non-essential): New defmacro.
7026         (ange-ftp-file-name-all-completions): Use it.  (Bug#11808)
7028 2012-06-29  Andreas Schwab  <schwab@linux-m68k.org>
7030         * calendar/cal-dst.el (calendar-current-time-zone):
7031         Return calendar-current-time-zone-cache if non-nil.
7033 2012-06-29  Masatake YAMATO  <yamato@redhat.com>
7035         * progmodes/which-func.el (which-func-format):
7036         Add mouse-face.  (Bug#11698)
7038 2012-06-29  Leo Liu  <sdl.web@gmail.com>
7040         * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
7042 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7044         * minibuffer.el (minibuffer-confirm-exit-commands):
7045         Add completion-at-point (bug#11725).
7047 2012-06-29  Glenn Morris  <rgm@gnu.org>
7049         * progmodes/f90.el (f90-font-lock-keywords-2):
7050         Add some preprocessor elements.  (Bug#10499)
7052 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7054         * progmodes/cperl-mode.el (cperl-update-syntaxification):
7055         Use syntax-propertize (bug#11739).
7057 2012-06-28  Juanma Barranquero  <lekktu@gmail.com>
7059         * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
7061 2012-06-28  Julien Danjou  <julien@danjou.info>
7063         * term.el (term-handle-colors-array): Use a set of new faces to
7064         color the terminal.  Also uses :inverse-video property.
7065         (term-default-fg-color): Set to nil by default, deprecate in favor
7066         of `term-face'.
7067         (term-default-bg-color): Set to nil by default, deprecate in favor
7068         of `term-face'.
7069         (term-current-face): Use `term-face' by default.
7070         (term-bold-attribute): Variable deleted.
7072 2012-06-28  Glenn Morris  <rgm@gnu.org>
7074         * simple.el (completion-list-mode-finish):
7075         Don't use toggle-read-only.  (Since completion-list-mode has
7076         a special mode-class, it wasn't doing anything extra anyway.)
7078 2012-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7080         Make inlining of other-mode interpreted functions work (bug#11799).
7081         * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
7082         (byte-compile): Use it to fix compilation of lexical-binding closures.
7083         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
7084         function, if needed.
7086 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7088         * help-mode.el (help-make-xrefs): Don't just withstand
7089         cyclic-variable-indirection but any error in documentation-property.
7091         * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
7092         memory use.
7093         * bindings.el (bindings--define-key): New function.
7094         * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
7095         * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
7096         * bindings.el: Use it to purecopy define-key bindings.
7098         * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
7100         * emacs-lisp/cl.el (flet): Mark obsolete.
7101         * emacs-lisp/cl-macs.el (cl-flet*): New macro.
7102         * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
7103         * progmodes/js.el (js-c-fill-paragraph):
7104         * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
7105         (ebrowse-switch-member-buffer-to-derived-class):
7106         * play/5x5.el (5x5-solver): Use cl-flet.
7108         * emacs-lisp/cl.el: Use lexical-binding.  Fix flet (bug#11780).
7109         (cl--symbol-function): New macro.
7110         (cl--letf, cl--letf*): Use it.
7112         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
7113         Strip "toggle-" if any.
7115 2012-06-27  Glenn Morris  <rgm@gnu.org>
7117         * info.el (Info-default-directory-list): Move here from paths.el.
7118         * paths.el: Remove file, which is now empty.
7119         * loadup.el: No longer load "paths".
7121         * custom.el (custom-initialize-delay): Doc fix.
7123         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
7124         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
7125         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
7126         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
7127         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
7128         * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
7129         * eshell/eshell.el (eshell-defgroup): Remove alias.
7131 2012-06-27  Chong Yidong  <cyd@gnu.org>
7133         * help.el (help-enable-auto-load): New variable.
7135         * help-fns.el (help-fns--autoloaded-p): New function.
7136         (describe-function-1): Refer to a function as "autoloaded" if it
7137         was autoloaded at any time in the past.  Perform autoloading if
7138         help-enable-auto-load is non-nil.
7140 2012-06-26  Eli Zaretskii  <eliz@gnu.org>
7142         * makefile.w32-in (compile, compile-always): Depend on
7143         update-subdirs, not on subdirs.el.  Otherwise, several different
7144         sub-targets of 'bootstrap' running in parallel could
7145         simultaneously write to subdirs.el, producing a garbled file.
7147 2012-06-26  Sam Steingold  <sds@gnu.org>
7149         * files.el (file-name-base): New convenience function.
7150         * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
7151         * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
7152         * progmodes/cc-defs.el, progmodes/cperl-mode.el:
7153         * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
7154         * textmodes/ispell.el, textmodes/reftex-ref.el:
7155         * textmodes/tex-mode.el: Use it.
7156         Did not touch cedet and org because they are maintained elsewhere.
7158 2012-06-26  Martin Rudalics  <rudalics@gmx.at>
7160         * calendar/calendar.el (calendar-exit): Don't try to delete or
7161         iconify last frame.  See:
7162         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
7164 2012-06-25  Jim Diamond  <Jim.Diamond@AcadiaU.ca>  (tiny change)
7166         * server.el (server-process-filter): Remember dir in the
7167         process's `server-client-directory' properties.
7169 2012-06-24  Chong Yidong  <cyd@gnu.org>
7171         * xml.el (xml-parse-tag): Correctly handle comment embedded in
7172         non-tag text.
7174 2012-06-23  Juanma Barranquero  <lekktu@gmail.com>
7176         * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
7178 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7180         * help-fns.el (describe-variable): Don't croak when doc is not found.
7181         * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
7182         * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
7183         * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
7184         * emacs-lisp/smie.el (smie-next-sexp): CSE.
7185         * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
7186         ((lambda ..) ..).
7187         * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
7189 2012-06-23  Chong Yidong  <cyd@gnu.org>
7191         * info.el (Info-mouse-follow-link): Accept symbol values of
7192         link-args.  Select window; suggested by Gerhard Kahl (Bug#11672).
7193         (Info-fontify-node): Use Info-link-keymap for all navigation
7194         buttons, with link-args property to perform the desired action.
7195         (Info-link-keymap): Doc fix.
7196         (Info-next-link-keymap, Info-prev-link-keymap)
7197         (Info-up-link-keymap): Delete now-unused keymaps.
7199 2012-06-23  Chong Yidong  <cyd@gnu.org>
7201         * mouse.el (mouse-drag-track): Deactivate the mark before popping.
7203         * progmodes/python.el (python-skeleton-define): Mark abbrevs as
7204         system abbrevs.
7206         * ansi-color.el (ansi-color-apply-on-region): Doc fix.
7208 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7210         * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
7211         (bug#11719).
7213         * minibuffer.el (completion--twq-try): Try to fail more gracefully when
7214         the requote function doesn't work properly (bug#11714).
7216 2012-06-23  Glenn Morris  <rgm@gnu.org>
7218         * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
7220 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7222         Further GV/CL cleanups.
7223         * emacs-lisp/gv.el (gv-get): Autoload functions to find their
7224         gv-expander.
7225         (gv--defun-declaration): New function.
7226         (defun-declarations-alist): Use it.
7227         (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
7228         (gv-place): Autoload.
7229         * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
7230         original definition of dotimes and dolist.
7231         * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
7232         (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
7233         * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
7234         (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
7235         (cl-ninth, cl-tenth): Move gv handler to the function's definition.
7236         * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
7237         to the function's definition.
7238         * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
7239         * window.el:
7240         * files.el:
7241         * faces.el:
7242         * env.el: Don't use CL.
7244 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
7246         Support higher-resolution time stamps (Bug#9000).
7248         * calendar/time-date.el (with-decoded-time-value): New arg
7249         PICO-SYMBOL in VARLIST.  It's optional, for backward compatibility.
7250         (encode-time-value): New optional arg PICO.  New type 3.
7251         (time-to-seconds) [!float-time]: Support the new picoseconds
7252         component if it's used.
7253         (seconds-to-time, time-subtract, time-add):
7254         Support ps-resolution time stamps as well.
7256         * emacs-lisp/timer.el (timer): New component psecs.  All uses changed.
7257         (timerp): Timer vectors now have length 9, not 8.
7258         (timer--time): Support new-style (4-part) time stamps.
7259         (timer-next-integral-multiple-of-time): Time stamps now have
7260         picosecond resolution, so take a bit more care about rounding.
7261         (timer-relative-time, timer-inc-time): New optional arg psecs.
7262         (timer-set-time-with-usecs): Set psecs to 0.
7263         (timer--activate): Check psecs component, too.
7265         * proced.el (proced-time-lessp): Support ps-resolution stamps.
7267 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7269         * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
7270         Move the non-essential binding to the post/pre-command-hook where it is
7271         more obviously correct.
7273         * subr.el (read-passwd): Don't use a history at all.
7274         * savehist.el (savehist-save): Remove password saved accidentally
7275         because of the above bug.
7277 2012-06-22  Bastien Guerry  <bzg@gnu.org>
7279         * files.el (toggle-read-only): Display a message telling whether
7280         the buffer is read-only or not (bug#11726).
7282 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7284         * emacs-lisp/gv.el: New file.
7285         * subr.el (push, pop): Extend to generalized variables.
7286         * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
7287         * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
7288         * emacs-lisp/cl-macs.el: Require gv.  Use gv-define-setter,
7289         gv-define-simple-setter, and gv-define-expander.
7290         Remove setf-methods defined in gv.  Rename cl-setf -> setf.
7291         (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
7292         (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
7293         (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
7294         (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
7295         gv-letplace.
7296         (cl-defstruct): Don't define setf-method any more.
7297         * emacs-lisp/cl.el (flet): Don't autoload.
7298         (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
7299         (define-setf-expander, defsetf, define-modify-macro)
7300         (cl-struct-setf-expander): Move from cl-lib.el.
7301         * emacs-lisp/syntax.el:
7302         * emacs-lisp/ewoc.el:
7303         * emacs-lisp/smie.el:
7304         * emacs-lisp/cconv.el:
7305         * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
7306         (timer--time): Use gv-define-simple-setter.
7307         * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
7308         to avoid coding-system problems in subr.el.  Adjust all users.
7309         (macroexp--maxsize, macroexp-small-p): New functions.
7310         * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
7311         * scroll-bar.el (scroll-bar-mode):
7312         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
7313         (normal-erase-is-backspace-mode): Don't use the `eq' place.
7314         * winner.el (winner-configuration, winner-make-point-alist)
7315         (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
7316         * files.el (locate-file-completion-table): Avoid list*.
7318 2012-06-22  Chong Yidong  <cyd@gnu.org>
7320         * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
7321         (dired-create-files): Doc fix (Bug#11329).
7322         (dired-do-copy): Doc fix (Bug#11334).
7323         (dired-mark-read-string): Doc fix (Bug#11553).
7325         * dired.el (dired-recursive-copies, dired-recursive-deletes):
7326         Doc fix (Bug#11326).
7327         (dired-make-relative): Doc fix (Bug#11332).  Remove unused arg.
7328         (dired-dwim-target): Doc fix.
7330         * wdired.el (wdired-mode): Doc fix.
7332 2012-06-22  Glenn Morris  <rgm@gnu.org>
7334         * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
7335         (pcmpl-rpm-cache-stamp-file): New constant.
7336         (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
7337         (pcmpl-rpm-packages): Optionally cache list of packages.
7339         * pcmpl-rpm.el (pcmpl-rpm): New group.
7340         (pcmpl-rpm-query-options): New option.
7341         (pcmpl-rpm-packages): No need to inline it.
7342         Use pcmpl-rpm-query-options.
7344         * calendar/calendar.el (calendar-in-read-only-buffer):
7345         Avoid some needless mode changes.
7347 2012-06-21  Chong Yidong  <cyd@gnu.org>
7349         * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
7350         (desktop-path): Remove . from the default value (Bug#10977).
7351         (desktop-read): Use user-emacs-directory if desktop-path is nil.
7353 2012-06-20  Chong Yidong  <cyd@gnu.org>
7355         * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
7357 2012-06-20  David Röthlisberger  <david@rothlis.net>  (tiny change)
7359         * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
7360         (bug#11201).
7362 2012-06-20  Chong Yidong  <cyd@gnu.org>
7364         * term.el (term-window-width): Handle the case of a missing right
7365         fringe (Bug#8837).
7366         (term-check-size): Use window-text-height (Bug#5445).
7367         (term-mode): Use define-derived-mode.  Minor cleanups.
7368         Set font-lock-defaults (Bug#7692).
7369         (term-move-columns, term-insert-char, term-emulate-terminal)
7370         (term-erase-in-line, term-insert-spaces): Use font-lock-face.
7372 2012-06-20  Michael Albinus  <michael.albinus@gmx.de>
7374         * net/ange-ftp.el (ange-ftp-get-passwd):
7375         Bind `enable-recursive-minibuffers'.
7376         (ange-ftp-get-process): Throw if `non-essential' is non-nil.
7378 2012-06-19  David Röthlisberger  <david@rothlis.net>  (tiny change)
7380         * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
7382 2012-06-19  Glenn Morris  <rgm@gnu.org>
7384         * progmodes/python.el (python-mode): Derive from prog-mode.
7386 2012-06-19  Kevin Gallagher  <Kevin.Gallagher@boeing.com>
7388         * emulation/edt.el (edt-default-menu-bar-update-buffers)
7389         (edt-user-menu-bar-update-buffers): New functions.
7390         (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
7392 2012-06-19  Chong Yidong  <cyd@gnu.org>
7394         * subr.el (with-selected-window): Preserve the selected window's
7395         terminal's top-frame (Bug#4702).
7397         * window.el (save-selected-window): Likewise.
7399 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7401         * progmodes/python.el (python-rx-constituents): Move backquote.
7402         (python-skeleton-define, python-define-auxiliary-skeleton):
7403         Use `declare'.
7405 2012-06-18  Michael Albinus  <michael.albinus@gmx.de>
7407         * minibuffer.el (read-file-name-default): Revert the patch from
7408         2012-06-17.
7410 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7412         * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
7413         (pcase--u1, pcase--q1): Don't use apply-partially.
7415 2012-06-18  Glenn Morris  <rgm@gnu.org>
7417         * progmodes/python.el (python-proc, python-buffer)
7418         (python-send-receive, python-send-string): Fix obsolete versions.
7420 2012-06-18  Martin Rudalics  <rudalics@gmx.at>
7422         * window.el (special-display-p): Completely remove stringp
7423         check.  Suggested by Andreas Schwab <schwab@linux-m68k.org>.
7425 2012-06-17  Michael Albinus  <michael.albinus@gmx.de>
7427         * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
7429         * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
7431         * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
7432         * net/tramp-sh.el (tramp-maybe-open-connection):
7433         Throw if `non-essential' is non-nil.
7435 2012-06-17  Martin Rudalics  <rudalics@gmx.at>
7437         * window.el (special-display-p): Signal an error if BUFFER-NAME
7438         is not a string (Bug#11713).
7440 2012-06-17  Paul Eggert  <eggert@cs.ucla.edu>
7442         * progmodes/python.el (python-info-beginning-of-backslash):
7443         Rename from python-info-beginning-of-backlash, as a spelling fix.
7445 2012-06-17  Chong Yidong  <cyd@gnu.org>
7447         * term.el (term-emulate-terminal): If term-check-size is called,
7448         move point to the process mark without resetting point (Bug#4635).
7450 2012-06-17  Glenn Morris  <rgm@gnu.org>
7452         * international/mule-cmds.el (mule-menu-keymap)
7453         (set-language-environment, set-locale-environment): Doc tweaks.
7455 2012-06-16  Aurelien Aptel  <aurelien.aptel@gmail.com>
7457         * cus-face.el (custom-face-attributes): Add wave-style underline
7458         attribute.
7459         * faces.el (set-face-attribute): Update docstring to describe
7460         wave-style underline attribute.
7462 2012-06-16  Chong Yidong  <cyd@gnu.org>
7464         * term/xterm.el (terminal-init-xterm): Discard input before
7465         querying background mode (Bug#10959).
7467 2012-06-16  Stefan Merten  <smerten@oekonux.de>
7469         * textmodes/rst.el: Added and corrected some comments.
7470         (rst-re-alist-def): Improve symbol syntax.
7471         (rst-mode-syntax-table): Correct syntax entries.
7472         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
7473         (rst-official-version, rst-official-cvs-rev): Update version
7474         information.
7476 2012-06-15  Juanma Barranquero  <lekktu@gmail.com>
7478         * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
7479         in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
7481 2012-06-15  Fabián Ezequiel Gallina  <fgallina@cuca>
7483         * progmodes/python.el: New python.el merge.
7484         (python-guess-indent): Obsolete var.
7485         (python-indent-guess-indent-offset): New defcustom.
7486         (python-indent): Obsolete var.
7487         (python-indent-offset): New defcustom.
7488         (python-python-command, python-jython-command): Delete var.
7489         (python-shell-interpreter): New defcustom.
7490         (python-pdbtrack-do-tracking-p): Delete var.
7491         (python-pdbtrack-activate): New defcustom.
7492         (python-use-skeletons): Obsolete var.
7493         (python-skeleton-autoinsert): New defcustom.
7494         (inferior-python-filter-regexp, python-continuation-offset)
7495         (python-honour-comment-indentation, python-indent-string-contents)
7496         (python-jython-packages, python-mode-hook)
7497         (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
7498         (python-shell-prompt-alist)
7499         (python-source-modes): Delete defcustoms.
7500         (python-check-buffer-name, python-eldoc-setup-code)
7501         (python-eldoc-string-code, python-ffap-setup-code)
7502         (python-ffap-string-code, python-fill-comment-function)
7503         (python-fill-decorator-function, python-fill-paren-function)
7504         (python-fill-string-function, python-imenu-include-defun-type)
7505         (python-imenu-make-tree, python-imenu-subtree-root-label)
7506         (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
7507         (python-shell-compilation-regexp-alist)
7508         (python-shell-completion-module-string-code)
7509         (python-shell-completion-pdb-string-code)
7510         (python-shell-completion-setup-code)
7511         (python-shell-completion-string-code)
7512         (python-shell-enable-font-lock, python-shell-exec-path)
7513         (python-shell-extra-pythonpaths)
7514         (python-shell-internal-buffer-name, python-shell-interpreter-args)
7515         (python-shell-process-environment)
7516         (python-shell-prompt-block-regexp)
7517         (python-shell-prompt-output-regexp)
7518         (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
7519         (python-shell-send-setup-max-wait, python-shell-setup-codes)
7520         (python-shell-virtualenv-path): New defcustoms.
7521         (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
7522         (inferior-python-mode-syntax-table, python--prompt-regexp)
7523         (python-buffer, python-command python-python-command)
7524         (python-default-template, python-imports, python-indent-index)
7525         (python-indent-list, python-indent-list-length)
7526         (python-mode-running, python-pdbtrack-is-tracking-p)
7527         (python-preoutput-continuation, python-preoutput-leftover)
7528         (python-preoutput-result, python-preoutput-skip-next-prompt)
7529         (python-prev-dir/file, python-recursing)
7530         (python-saved-check-command, python-version-checked)
7531         (python-which-func-length-limit)
7532         (view-return-to-alist): Delete vars.
7533         (python-check-custom-command, python-dotty-syntax-table)
7534         (python-imenu-index-alist, python-indent-current-level)
7535         (python-indent-dedenters, python-indent-levels)
7536         (python-nav-beginning-of-defun-regexp)
7537         (python-nav-list-defun-positions-cache)
7538         (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
7539         (python-shell-internal-buffer)
7540         (python-skeleton-available): New vars.
7541         (def-python-skeleton): Delete macro.
7542         (python-skeleton-define): New macro.
7543         (python-define-auxiliary-skeleton, python-rx): New macros.
7544         (python-insert-class): Delete command.
7545         (python-skeleton-class): New command.
7546         (python-insert-def): Delete command.
7547         (python-skeleton-def): New command.
7548         (python-insert-for): Delete command.
7549         (python-skeleton-for): New command.
7550         (python-insert-if): Delete command.
7551         (python-skeleton-if): New command.
7552         (python-insert-try/except, python-insert-try/finally): Delete commands.
7553         (python-skeleton-try): New command.
7554         (python-insert-while): Delete command.
7555         (python-skeleton-while): New command.
7556         (python-backspace): Delete command.
7557         (python-indent-dedent-line-backspace): New command.
7558         (python-electric-colon): Delete command.
7559         (python-indent-electric-colon): New command.
7560         (python-guess-indent): Delete command.
7561         (python-indent-guess-indent-offset): New command.
7562         (python-shift-left): Delete command.
7563         (python-indent-shift-left): New command.
7564         (python-shift-right): Delete command.
7565         (python-indent-shift-right): New command.
7566         (python-find-function): Delete command.
7567         (python-nav-jump-to-defun): New command.
7568         (python-next-statement): Delete command.
7569         (python-nav-forward-sentence): New command.
7570         (python-previous-statement): Delete command.
7571         (python-nav-backward-sentence): New command.
7572         (python-fill-paragraph): Delete command.
7573         (python-fill-paragraph-function): New command.
7574         (python-send-buffer): Delete command.
7575         (python-shell-send-buffer): New command.
7576         (python-send-defun): Delete command.
7577         (python-shell-send-defun): New command.
7578         (python-send-region, python-send-region-and-go): Delete commands.
7579         (python-shell-send-region)
7580         (python-shell-switch-to-shell): New commands.
7581         (python-send-string): Delete command.
7582         (python-shell-send-string): New command.
7583         (python-switch-to-python): Delete command.
7584         (python-shell-switch-to-shell): New command.
7585         (python-describe-symbol): Delete command.
7586         (python-eldoc-at-point): New command.
7587         (python--set-prompt-regexp, python-args-to-list)
7588         (python-after-info-look, python-check-version)
7589         (python-check-comint-prompt, python-find-imports)
7590         (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
7591         (python-unload-function, python-expand-template)
7592         (python-maybe-jython, python-preoutput-filter)
7593         (python-pdbtrack-get-source-buffer)
7594         (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
7595         (python-pdbtrack-toggle-stack-tracking)
7596         (python-pdbtrack-track-stack-file, python-initial-text)
7597         (python-first-word, python-comment-line-p, python-send-command)
7598         (python-setup-brm, python-sentinel, python-set-proc)
7599         (python-skip-out, python-input-filter, python-outdent-p)
7600         (python-outline-level, python-backslash-continuation-line-p)
7601         (python-end-of-block, python-end-of-statement, python-mark-block)
7602         (python-beginning-of-block, python-beginning-of-statement)
7603         (python-blank-line-p, python-beginning-of-string)
7604         (python-open-block-statement-p): Delete functions.
7605         (python-indent-line, python-indent-line-1): Delete functions.
7606         (python-indent-line): New function.
7607         (python-indentation-levels): Delete function.
7608         (python-indent-calculate-levels): New function.
7609         (python-proc): Delete function.
7610         (python-shell-get-process): New function.
7611         (python-send-receive): Delete function.
7612         (python-shell-send-string-no-output): New function.
7613         (python-module-path): Delete function.
7614         (python-ffap-module-path): New function.
7615         (python-completion-at-point)
7616         (python-symbol-completions): Delete functions.
7617         (python-completion-complete-at-point): New function.
7618         (python-load-file): Delete function.
7619         (python-shell-send-file): New function.
7620         (python-calculate-indentation): Delete function.
7621         (python-indent-calculate-indentation): New function.
7622         (python-skip-comments/blanks): Delete function.
7623         (python-util-forward-comment): New function.
7624         (python-continuation-line-p): Delete function.
7625         (python-info-continuation-line-p): New function.
7626         (python-which-func, python-current-defun): Delete function.
7627         (python-info-current-defun): New function.
7628         (python-beginning-of-defun): Delete function.
7629         (python-nav-beginning-of-defun): New function.
7630         (python-close-block-statement-p)
7631         (python-block-end-p): Delete function.
7632         (python-info-closing-block): New function.
7633         (python-comint-output-filter-function)
7634         (python-eldoc--get-doc-at-point, python-end-of-defun-function)
7635         (python-fill-comment, python-fill-decorator, python-fill-paren)
7636         (python-fill-string, python-imenu-make-element-tree)
7637         (python-imenu-make-tree, python-imenu-tree-assoc)
7638         (python-indent-context, python-indent-dedent-line)
7639         (python-indent-line-function)
7640         (python-indent-post-self-insert-function)
7641         (python-indent-toggle-levels)
7642         (python-info-assignment-continuation-line-p)
7643         (python-info-beginning-of-backlash)
7644         (python-info-block-continuation-line-p)
7645         (python-info-closing-block-message)
7646         (python-info-line-ends-backslash-p)
7647         (python-info-looking-at-beginning-of-defun)
7648         (python-info-ppss-context, python-info-ppss-context-type)
7649         (python-nav-list-defun-positions, python-nav-read-defun)
7650         (python-nav-sentence-end, python-nav-sentence-start)
7651         (python-pdbtrack-comint-output-filter-function)
7652         (python-pdbtrack-set-tracked-buffer)
7653         (python-shell-calculate-exec-path)
7654         (python-shell-calculate-process-environment)
7655         (python-shell-completion--do-completion-at-point)
7656         (python-shell-completion--get-completions)
7657         (python-shell-completion-complete-at-point)
7658         (python-shell-completion-complete-or-indent)
7659         (python-shell-get-or-create-process)
7660         (python-shell-get-process-name)
7661         (python-shell-internal-get-or-create-process)
7662         (python-shell-internal-get-process-name)
7663         (python-shell-internal-send-string, python-shell-make-comint)
7664         (python-shell-parse-command, python-shell-send-setup-code)
7665         (python-skeleton-add-menu-items)
7666         (python-util-clone-local-variables, python-util-position)
7667         (run-python-internal, python-indentation-levels)
7668         (python-nav-beginning-of-defun)
7669         (python-completion-complete-at-point): New functions.
7670         (run-python): Change arguments.  New API requirements.
7672 2012-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7674         * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
7675         (bug#11649).
7677         * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
7678         (macroexp--expand-all): Use it.
7680         * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
7681         (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
7682         Use `cl-function' instead.
7684 2012-06-14  Juanma Barranquero  <lekktu@gmail.com>
7686         * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
7687         Suggested by Stefan Monnier while discussing bug#11657.
7689 2012-06-14  Sam Steingold  <sds@gnu.org>
7691         * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
7693 2012-06-14  Andreas Schwab  <schwab@linux-m68k.org>
7695         * play/doctor.el (doctor-doc): Remove parameter and use
7696         doctor-sent instead of sent.
7697         (doctor-read-print): Use doctor-sent instead of sent.  (Bug#11708)
7699 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7701         * files.el: Require cl-lib.
7702         (file-name-non-special): Replace case -> cl-case.
7704         * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
7706         * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
7707         mapping from #' to function*.
7709 2012-06-13  Chong Yidong  <cyd@gnu.org>
7711         * mouse.el (mouse-drag-track): Do not set the mark if the user
7712         releases the mouse without selecting anything (Bug#11588).
7714 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7716         * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
7717         as well (bug#11646).
7719         * loadup.el: Count byte-code functions as well.
7721         * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
7722         * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
7724         * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
7725         (bug#11649).  Add cl-defun and cl-defmacro.
7727 2012-06-13  Drew Adams  <drew.adams@oracle.com>
7729         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
7730         Fix last change.
7732 2012-06-13  Michael Albinus  <michael.albinus@gmx.de>
7734         * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
7735         Otherwise, it blocks in batch mode.
7737 2012-06-13  Juanma Barranquero  <lekktu@gmail.com>
7739         * help-mode.el (bookmark-make-record-default): Declare.
7741 2012-06-13  Chong Yidong  <cyd@gnu.org>
7743         * emacs-lisp/package.el (list-packages): Compute a list of
7744         packages that are newly-available since the last list-packages
7745         invocation.
7746         (package-menu--new-package-list): New var.
7747         (package-menu--generate, package-menu--print-info)
7748         (package-menu--status-predicate, package-menu-mark-install):
7749         Handle new status label "new".
7751 2012-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7753         * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
7754         conversion to backquotes.
7756 2012-06-12  Chong Yidong  <cyd@gnu.org>
7758         * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
7759         Rename from gud-inhibit-global-bindings.
7761         * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
7763         * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
7764         hook from nxml-glyph-set-hook.
7766         * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
7767         declaration.
7769         * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
7771         * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
7772         Convert to defcustom.
7774 2012-06-12  Drew Adams  <drew.adams@oracle.com>
7776         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
7777         New functions.
7778         (help-mode): Use them.
7780 2012-06-11  Glenn Morris  <rgm@gnu.org>
7782         * progmodes/fortran.el (fortran-font-lock-keywords-3):
7783         Use preprocessor face for directives.
7784         (fortran-directive-re): Doc fix.
7786 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7788         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
7789         conversion to backquotes (bug#11652).
7791         Fix compiler-expansion of CL's cXXr functions (bug#11673).
7792         * emacs-lisp/cl-lib.el (cl--defalias): New function.
7793         (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
7794         (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
7795         (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
7796         (cl-ninth, cl-tenth): Mark them as inlinable.
7797         (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
7798         (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
7799         (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
7800         (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
7801         Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
7802         (cl-list*, cl-adjoin): Don't put an autoload manually.
7803         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
7804         (cl--compiler-macro-list*): Add autoload cookie.
7805         (cl--compiler-macro-cXXr): New function.
7807         * help-fns.el (help-fns--compiler-macro): New function extracted from
7808         describe-function-1; follow aliases and use `compiler-macro' property.
7809         (describe-function-1): Use it.
7811 2012-06-11  Chong Yidong  <cyd@gnu.org>
7813         * startup.el (fancy-splash-head): Use splash.svg even if librsvg
7814         is uninstalled, if imagemagick is installed.
7816 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7818         * emacs-lisp/cl-lib.el: Use lexical-binding.
7819         (cl-map-extents, cl-maclisp-member): Remove.
7820         (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
7821         (cl--set-substring, cl--block-wrapper, cl--block-throw)
7822         (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
7823         * emacs-lisp/cl-extra.el: Use lexical-binding.
7824         (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
7825         (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
7826         (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
7827         (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
7828         * emacs-lisp/cl-seq.el: Use lexical-binding.
7829         (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
7830         (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
7831         (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
7832         * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
7833         * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
7834         CL's internals.
7836 2012-06-11  Michael Albinus  <michael.albinus@gmx.de>
7838         Sync with Tramp 2.2.6-pre.
7840         * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
7841         `print-length' and `print-level' to nil, in order to avoid
7842         truncation.  Reported by Christopher Schmidt
7843         <christopher@ristopher.com>.
7845         * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
7847         * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
7848         New defmacro.
7849         (tramp-compat-copy-directory): Add optional argument
7850         COPY-CONTENTS.  It is not handled yet.
7852         * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
7853         (tramp-ftp-file-name-p): Simplify.
7855         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
7856         * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
7857         connection vector.
7859         * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
7860         (tramp-methods): Do not use `tramp-password-end-of-line'.
7861         (tramp-completion-function-alist-putty): Handle UNIX case.
7862         (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
7863         (tramp-do-file-attributes-with-stat)
7864         (tramp-do-directory-files-and-attributes-with-stat) Return uid and
7865         gid as real numbers.  They could run out of integer range on cygwin.
7866         (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
7867         (tramp-sh-handle-expand-file-name): Handle hops.
7868         (tramp-open-connection-setup-interactive-shell):
7869         Use `tramp-cleanup'.  Move check for busyboxes ...
7870         (tramp-find-shell): ... here.  Simplify implementation.
7871         Set "remote-shell" property also for alternative shells.
7872         (tramp-remote-coding-commands): Check "test -c /dev/stdout".
7873         If failing, a regular file would be written otherwise.
7874         Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
7875         (tramp-find-inline-encoding): Cache the coding commands in the
7876         process cache.  Apply test command on the remote side, if defined.
7877         (tramp-find-inline-compress): Cache the compress commands in the
7878         process cache.
7879         (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
7880         when requested.  Handle hops.
7881         (tramp-current-connection): New defvar.
7882         (tramp-maybe-open-connection): Use `tramp-cleanup'.
7883         Throw `suppress', if there was a failed connection shortly before.
7884         Handle user interrupt.  (Bug#10187)
7885         (tramp-get-inline-compress, tramp-get-inline-coding):
7886         Read connection properties from the process cache.
7888         * net/tramp-smb.el (tramp-smb-server-version)
7889         (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
7890         New defconsts.
7891         (tramp-smb-prompt): Extend for powershell prompt.
7892         (tramp-smb-file-name-handler-alist): Add handlers for
7893         `process-file', `shell-command' and `start-file-process'.
7894         (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
7895         (tramp-smb-winexe-shell-command-switch): New defcustoms.
7896         (tramp-smb-file-name-p): Simplify.
7897         (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
7898         (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
7899         (tramp-smb-shell-quote-argument): New defuns.
7900         (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
7901         Implement using "tar".  By this, time-stamps are preserved.
7902         (tramp-smb-handle-copy-file): Handle also the case of directories.
7903         (tramp-smb-do-file-attributes-with-stat)
7904         (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
7905         Use `tramp-get-connection-buffer').
7906         (tramp-smb-handle-rename-file): Use "rename", when source and
7907         target are on the same share.
7908         (tramp-smb-maybe-open-connection): Handle wrong passwords.
7909         Use `tramp-smb-server-version'.
7910         (tramp-smb-wait-for-output): Remove prompt.
7912         * net/tramp.el (top): Require 'cl.
7913         (tramp-methods, tramp-rsh-end-of-line):
7914         Remove `tramp-password-end-of-line' from docstring.
7915         (tramp-save-ad-hoc-proxies): New defcustom.
7916         (tramp-completion-function-alist): Adapt docstring.
7917         (tramp-default-password-end-of-line): Remove defcustom.
7918         (tramp-shell-prompt-pattern): Allow "[]" style prompts.  (Bug#11065)
7919         (tramp-user-regexp, tramp-file-name-regexp-unified)
7920         (tramp-file-name-regexp-url): Extend regexp by hop separator.
7921         (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
7922         (tramp-remote-file-name-spec-regexp): New defconst.
7923         (tramp-file-name-structure): Extend structure for hops.
7924         (tramp-get-method-parameter): Move up.
7925         (tramp-file-name-p, tramp-dissect-file-name)
7926         (with-parsed-tramp-file-name): Handle hops.
7927         (tramp-file-name-hop): New defun.
7928         (tramp-make-tramp-file-name): New optional arg HOP.
7929         (tramp-message-show-progress-reporter-message): New defvar.
7930         (tramp-with-progress-reporter): Use it.  We cannot use
7931         `tramp-message-show-message' here, because this suppresses also
7932         error buffers.
7933         (tramp-error-with-buffer): Suppress buffer view, if
7934         `tramp-message-show-message' is nil.
7935         Use `tramp-get-connection-buffer'.
7936         (tramp-cleanup): New defun.
7937         (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
7938         (tramp-file-name-handler): If `debug-on-error' is set, propagate
7939         an error unchanged.
7940         (tramp-completion-handle-file-name-all-completions): Handle hops.
7941         Fix an error when called from ido.
7942         (tramp-completion-dissect-file-name): Use better local variable
7943         name.  Add hop to the vector.
7944         (tramp-handle-insert-file-contents): Use progress-reporter for the
7945         whole scenario.
7946         (tramp-action-password): Let-bind `enable-recursive-minibuffers'
7947         to `t'.
7948         (tramp-check-for-regexp): Simplify search.
7949         (tramp-enter-password): Remove it.  Move implementation ...
7950         (tramp-action-password): ... here.
7951         (tramp-mode-string-to-int, tramp-local-host-p)
7952         (tramp-make-tramp-temp-file, tramp-read-passwd)
7953         (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
7954         Set tramp-autoload cookie.
7956         * net/trampver.el: Update release number.
7958 2012-06-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7959             Michael Albinus  <michael.albinus@gmx.de>
7961         * net/tramp.el (tramp-set-completion-function): Fix docstring.
7962         (tramp-parse-group, tramp-parse-file)
7963         (tramp-parse-shostkeys-sknownhosts): New defuns.
7964         (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
7965         (tramp-parse-shosts-group, tramp-parse-sconfig)
7966         (tramp-parse-sconfig-group, tramp-parse-shostkeys)
7967         (tramp-parse-sknownhosts, tramp-parse-hosts)
7968         (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
7969         Use them.
7970         (tramp-parse-passwd-group, tramp-parse-netrc-group)
7971         (tramp-parse-putty-group): Don't narrow.
7972         (tramp-parse-putty): Make a loop.
7973         (tramp-file-name-handler): Catch the `suppress' signal.
7975 2012-06-11  Chong Yidong  <cyd@gnu.org>
7977         * image.el (imagemagick-register-types): Put the ImageMagick entry
7978         at the end of image-type-file-name-regexps.
7980 2012-06-11  Johan Bockgård  <bojohan@gnu.org>
7982         * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
7983         (pcase, pcase-let*, pcase-dolist): Use them.
7985 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7987         * emacs-lisp/pcase.el (pcase--let*): New function.
7988         (pcase-let*): Use it.  Use pcase--memoize to avoid repeated expansions.
7989         (pcase--expand): Use macroexp-let².
7991 2012-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7993         * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
7994         * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
7995         * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
7996         * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
7997         * emacs-lisp/derived.el: Use pcase instead of `cl'.
7998         * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
8000 2012-06-10  Glenn Morris  <rgm@gnu.org>
8002         * mail/rmail.el (rmail-yank-current-message): Leave point at
8003         correct position.  (Bug#11660)
8005 2012-06-10  Chong Yidong  <cyd@gnu.org>
8007         * allout-widgets.el: Fix code header.
8009 2012-06-10  Chong Yidong  <cyd@gnu.org>
8011         * cus-edit.el (customize-changed-options-previous-release):
8012         Bump to 24.1.
8014 2012-06-09  Andreas Schwab  <schwab@linux-m68k.org>
8016         * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
8018 2012-06-09  Chong Yidong  <cyd@gnu.org>
8020         * ebuff-menu.el (electric-buffer-list): Preserve header line.
8022 2012-06-09  Martin Rudalics  <rudalics@gmx.at>
8024         * window.el (special-display-popup-frame): Don't use
8025         window--display-buffer (Bug#11651).
8027 2012-06-09  Eli Zaretskii  <eliz@gnu.org>
8029         Fix parallel builds: make sure loaddefs.el is not being written
8030         while Lisp files are compiled.
8031         (compile): Don't depend on 'mh-autoloads'.
8032         (compile-CMD, compile-SH): Depend on 'autoloads'.
8033         (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
8035         * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200.  (Bug#11649)
8037 2012-06-09  Chong Yidong  <cyd@gnu.org>
8039         * face-remap.el (face-remap-add-relative, face-remap-set-base)
8040         (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
8041         Doc fixes (Bug#11225).
8043 2012-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8045         * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
8046         a function if there's a clear indication that it has a compiler-macro.
8047         * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
8048         (macro-declarations-alist): Add arglist to declaration functions.
8049         (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
8050         * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
8051         * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
8052         * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
8053         Also add autoload to find the compiler macro.
8054         * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
8055         (cl--compiler-macro-member, cl--compiler-macro-assoc)
8056         (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
8057         (cl--compiler-macro-get): New functions, replacing calls to
8058         cl-define-compiler-macro.
8059         (cl-typep) [compiler-macro]: Use macroexp-let².
8061 2012-06-08  Nick Dokos  <nicholas.dokos@hp.com>  (tiny change)
8063         * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
8064         string properly, fixes Bug#11473.
8066 2012-06-08  Chong Yidong  <cyd@gnu.org>
8068         * faces.el (set-face-attribute): Doc fix.
8069         (modify-face): Don't use :bold and :italic.
8070         (error, warning, success): Tweak definitions.
8072         * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
8073         (custom-modified, custom-set, custom-changed, custom-themed)
8074         (custom-saved, custom-button, custom-button-mouse)
8075         (custom-button-pressed, custom-state, custom-comment-tag)
8076         (custom-variable-tag, custom-group-tag-1, custom-group-tag)
8077         (custom-group-subtitle): Use new-style face specs.
8078         (custom-invalid-face, custom-rogue-face, custom-modified-face)
8079         (custom-set-face, custom-changed-face, custom-saved-face)
8080         (custom-button-face, custom-button-pressed-face)
8081         (custom-documentation-face, custom-state-face)
8082         (custom-comment-face, custom-comment-tag-face)
8083         (custom-variable-tag-face, custom-variable-button-face)
8084         (custom-face-tag-face, custom-group-tag-face-1)
8085         (custom-group-tag-face): Remove obsolete face alias.
8087         * epa.el (epa-validity-high, epa-validity-medium)
8088         (epa-validity-low, epa-mark, epa-field-name, epa-string)
8089         (epa-field-name, epa-field-body):
8090         * font-lock.el (font-lock-comment-face, font-lock-string-face)
8091         (font-lock-keyword-face, font-lock-builtin-face)
8092         (font-lock-function-name-face, font-lock-variable-name-face)
8093         (font-lock-type-face, font-lock-constant-face):
8094         * ido.el (ido-first-match, ido-only-match, ido-subdir)
8095         (ido-virtual, ido-indicator, ido-incomplete-regexp):
8096         * speedbar.el (speedbar-button-face, speedbar-file-face)
8097         (speedbar-directory-face, speedbar-tag-face)
8098         (speedbar-selected-face, speedbar-highlight-face)
8099         (speedbar-separator-face):
8100         * whitespace.el (whitespace-newline, whitespace-space)
8101         (whitespace-hspace, whitespace-tab, whitespace-trailing)
8102         (whitespace-line, whitespace-space-before-tab)
8103         (whitespace-space-after-tab, whitespace-indentation)
8104         (whitespace-empty):
8105         * emulation/cua-base.el (cua-global-mark):
8106         * eshell/em-prompt.el (eshell-prompt):
8107         * net/newst-plainview.el (newsticker-new-item-face)
8108         (newsticker-old-item-face, newsticker-immortal-item-face)
8109         (newsticker-obsolete-item-face, newsticker-date-face)
8110         (newsticker-statistics-face, newsticker-default-face):
8111         * net/newst-reader.el (newsticker-feed-face)
8112         (newsticker-extra-face, newsticker-enclosure-face):
8113         * net/newst-treeview.el (newsticker-treeview-face)
8114         (newsticker-treeview-new-face, newsticker-treeview-old-face)
8115         (newsticker-treeview-immortal-face)
8116         (newsticker-treeview-obsolete-face)
8117         (newsticker-treeview-selection-face):
8118         * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
8119         (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
8120         (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
8121         (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
8122         * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
8123         (nxml-outline-active-indicator, nxml-outline-ellipsis):
8124         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
8125         (mpuz-text):
8126         * progmodes/vera-mode.el (vera-font-lock-number)
8127         (vera-font-lock-function, vera-font-lock-interface):
8128         * textmodes/table.el (table-cell): Use new-style face specs, and
8129         don't use the old :bold and :italic attributes.
8131         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
8132         (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
8133         (ebrowse-member-class, ebrowse-progress): Likewise.
8134         (ebrowse-tree-mark-face, ebrowse-root-class-face)
8135         (ebrowse-file-name-face, ebrowse-default-face)
8136         (ebrowse-member-attribute-face, ebrowse-member-class-face)
8137         (ebrowse-progress-face): Remove obsolete faces.
8139         * progmodes/flymake.el (flymake-errline, flymake-warnline):
8140         Inherit from error and warning faces respectively.
8142         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
8143         Likewise.
8144         (flyspell-incorrect-face, flyspell-duplicate-face):
8145         Remove obsolete aliases.
8147 2012-06-08  Michael Albinus  <michael.albinus@gmx.de>
8149         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
8150         Avoid infloop.
8152 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8154         * startup.el (argv, argi): Make lexically scoped.
8155         * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
8156         * emacs-lisp/cl-macs.el: Use lexical-binding.
8157         Rename cl-bind-* to cl--bind-*.
8158         * files.el: Don't require `cl' since it doesn't use it.
8159         * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
8161 2012-06-08  Juanma Barranquero  <lekktu@gmail.com>
8163         * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
8164         (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
8165         instead of calling external sort utility.
8166         (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
8168 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
8170         * descr-text.el (describe-char): Mention how to insert the
8171         character, if the current input method doesn't support it.
8172         See the discussion in this thread for the details:
8173         http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
8175 2012-06-08  Sam Steingold  <sds@gnu.org>
8177         * bindings.el (global-map): Bind XF86Forward to next-buffer and
8178         XF86Back to previous-buffer.
8179         (minibuffer-local-map): Bind them to next-history-element and
8180         previous-history-element respectively.
8181         * help-mode.el (help-mode-map): Bind them to help-go-forward and
8182         help-go-back respectively.
8183         * info.el (Info-mode-map): Bind them to Info-history-forward and
8184         Info-history-back respectively.
8185         These are the keys next to Up on the ThinkPad keyboard.
8187 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8189         Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
8190         * emacs-lisp/cl-macs.el: Provide itself.
8191         (cl--labels-convert-cache): New var.
8192         (cl--labels-convert): New function.
8193         (cl-flet, cl-labels): New implementation with new semantics, relying on
8194         lexical-binding.
8195         * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
8196         (cl-closure-vars, cl--function-convert-cache)
8197         (cl--function-convert): Move from cl-macs.el.
8198         (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
8199         rename by removing the "cl-" prefix.
8200         * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
8202 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8204         * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
8205         (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
8206         (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
8207         (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
8208         (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
8209         (cl-hash-table-count): Add old compatibility aliases.
8211         * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
8212         Use macroexpand-all-environment instead.
8213         (cl--old-macroexpand): New var.
8214         (cl--sm-macroexpand): New function.
8215         (cl-symbol-macrolet): Use it during macro expansion.
8216         (cl--function-convert-cache): New var.
8217         (cl--function-convert): New function, extracted from
8218         cl-macroexpand-all.
8219         (cl-lexical-let): Use it.
8221         * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
8222         (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
8223         (cl-member): Remove old alias.
8225         * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
8226         (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
8227         (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
8228         (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
8229         (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
8230         (cl-macroexpand-cmacs): Remove var.
8231         (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
8232         Use macroexpand-all instead.
8234 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8236         * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
8237         (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
8238         (macroexp-copyable-p): New functions and macros.
8239         * emacs-lisp/edebug.el (edebug-unwrap):
8240         * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
8241         * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
8242         (pcase--let*): Remove.
8243         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
8244         (byte-compile-constp): Remove.  Use macroexp--const-symbol-p and
8245         macroexp-const-p instead.
8246         * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
8248         * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
8249         instead of "cl-" for internal definitions.  Use macroexp-const-p.
8250         (cl-old-bc-file-form): Remove var.
8251         (cl-const-exprs-p): Remove fun.
8252         (cl-labels, cl-macrolet): Use backquote.
8253         (cl-lexical-let): Use cl-symbol-macrolet.  Don't use cl-defun-expander.
8254         (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
8255         (cl-define-setf-expander): Rename from cl-define-setf-method.
8256         * emacs-lisp/cl.el: Adjust alias for define-setf-method.
8258         * international/mule-cmds.el: Don't require CL.
8259         (view-hello-file): Don't use `letf'.
8261 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8263         * tmm.el (tmm-prompt): Use string-prefix-p.
8264         (tmm-completion-delete-prompt): Don't affect current-buffer outside.
8265         (tmm-add-prompt): Use minibuffer-completion-help.
8266         (tmm-delete-map): Remove.
8268         * subr.el (kbd): Make it its own function.
8270 2012-06-07  Stefan Merten  <smerten@oekonux.de>
8272         * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
8273         Silence compiler warnings.  Fix versions.
8274         (rst-position-if, rst-position, rst-some, rst-signum): New functions.
8275         (rst-shift-region, rst-adornment-level, rst-compute-tabs)
8276         (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
8277         (rst-package-emacs-version-alist): Correct Emacs version to
8278         represent major merge with upstream.
8279         (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
8281 2012-06-06  Glenn Morris  <rgm@gnu.org>
8283         * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
8284         Only print environment variables if set.
8286 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8288         * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
8289         (macroexp--cons): Rename from maybe-cons.
8290         (macroexp--accumulate): Rename from macroexp-accumulate.
8291         (macroexp--all-forms): Rename from macroexpand-all-forms.
8292         (macroexp--all-clauses): Rename from macroexpand-all-clauses.
8293         (macroexp--expand-all): Rename from macroexpand-all-1.
8295 2012-06-06  Sam Steingold  <sds@gnu.org>
8297         * calendar/calendar.el (calendar-in-read-only-buffer):
8298         Call `special-mode' to enable the standard read-only keybindings.
8300 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8302         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
8303         with "loading" messages (bug#11635).
8305 2012-06-06  Michael Albinus  <michael.albinus@gmx.de>
8307         * files.el (enable-remote-dir-locals): New option.
8308         (hack-dir-local-variables): Use it.  (Bug#1933, Bug#6731)
8310         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
8311         Ensure, that the temp directory is local.
8313         * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
8314         `temporary-file-directory'.
8316         * progmodes/python.el (python-send-region): Ensure, that the
8317         temporary file is created also in the remote case.
8319 2012-06-06  Glenn Morris  <rgm@gnu.org>
8321         * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
8322         (vc-rcs-update-changelog): Use it.
8324         * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
8326         * vc/vc-sccs.el (vc-sccs-write-revision): New function.
8327         (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
8328         (vc-sccs-diff): Replace use of the external vcdiff script.
8330 2012-06-05  Glenn Morris  <rgm@gnu.org>
8332         * ledit.el: Move to obsolete/.
8334 2012-06-05  Sam Steingold  <sds@gnu.org>
8336         * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
8337         patch (Bug#11140).
8339 2012-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8341         * emacs-lisp/cust-print.el: Move to obsolete.
8343         * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
8344         compiler-macro expansion.
8346         Add native compiler-macro support.
8347         * emacs-lisp/macroexp.el (macroexpand-all-1):
8348         Support compiler-macros directly.  Properly follow aliases and apply
8349         the compiler macros more thoroughly.
8350         * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
8351         macroexpand now properly follows aliases.
8352         * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
8353         (cl-compiler-macroexpand): Use new prop.
8354         * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
8356         * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
8358 2012-06-05  Martin Rudalics  <rudalics@gmx.at>
8360         * window.el (get-lru-window, get-mru-window, get-largest-window):
8361         New argument NOT-SELECTED to avoid picking the selected window.
8362         (window--display-buffer-1, window--display-buffer-2): Replace by
8363         new function window--display-buffer
8364         (display-buffer-same-window, display-buffer-reuse-window)
8365         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8366         Use window--display-buffer.
8367         (display-buffer-use-some-window): Remove temporary dedication
8368         hack by calling get-lru-window and get-largest-window with
8369         NOT-SELECTED argument non-nil.  Call window--display-buffer.
8371 2012-06-05  Glenn Morris  <rgm@gnu.org>
8373         * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
8374         Replace external vcdiff script.
8376 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8378         * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
8380 2012-06-04  Chong Yidong  <cyd@gnu.org>
8382         * image.el (imagemagick-types-inhibit): Revert last change.
8383         Add INFO and M.
8384         (imagemagick-enabled-types): Remove CIN and EPS*.
8386 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8388         * emacs-lisp/cl-lib.el: Rename from cl.el.
8389         * emacs-lisp/cl.el: New compatibility file.
8390         * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
8391         * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
8392         to obey the "cl-" prefix.
8393         * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
8395 2012-06-03  Glenn Morris  <rgm@gnu.org>
8397         * emacs-lisp/authors.el (authors-aliases): Addition.
8399         * cus-start.el (tool-bar-style, tool-bar-max-label-size):
8400         Fix :version.
8402 2012-06-03  Stefan Merten  <smerten@oekonux.de>
8404         * textmodes/rst.el: Add comments.
8405         (rst-transition, rst-adornment): New faces.
8406         (rst-adornment-faces-alist): Make default safe to reevaluate.
8407         Fixes
8408         http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
8409         Improve customization tags.
8410         (rst-define-level-faces): Clarify meaning.
8412 2012-06-03  Chong Yidong  <cyd@gnu.org>
8414         * progmodes/compile.el (compilation-mode-line-fail)
8415         (compilation-mode-line-run, compilation-mode-line-exit):
8416         New faces.
8417         (compilation-start, compilation-handle-exit): Use them (Bug#11032).
8419 2012-06-03  Jack Duthen  <duthen.mac.01@gmail.com>  (tiny change)
8421         * progmodes/which-func.el (which-func-update-ediff-windows):
8422         New function.  Use it in ediff-select-hook (Bug#11478).
8424 2012-06-03  Chong Yidong  <cyd@gnu.org>
8426         * bindings.el: Remove explicit help text from format-mode-line.
8427         It is now supplied by mode-line-default-help-echo.
8428         (mode-line-front-space, mode-line-end-spaces)
8429         (mode-line-misc-info): New variables.
8430         (mode-line-modes, mode-line-position): Move the default value to
8431         the variable definition.
8432         (mode-line-default-help-echo): New defcustom.
8433         (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
8434         (mode-line-modified-help-echo): New functions.
8435         (mode-line-mule-info, mode-line-modified): Use them.
8436         (mode-line-eol-desc, propertized-buffer-identification):
8437         Consistency fixes for help text.
8438         (mode-line-coding-system-map): Allow using mouse-3 to invoke
8439         set-buffer-file-coding-system (Bug#289).
8440         (mode-line-mule-info-help-echo): Update help text.
8442 2012-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8444         * simple.el (execute-extended-command): Set real-this-command
8445         (bug#11506).
8447 2012-06-02  Chong Yidong  <cyd@gnu.org>
8449         Remove incorrect uses of "modeline" in comments, docstrings, and
8450         function/variable names (Bug#10329).
8452         * cus-edit.el (mode-line):
8453         * dframe.el (dframe-mouse-hscroll):
8454         * emacs-lisp/re-builder.el:
8455         * emacs-lisp/easy-mmode.el (define-minor-mode):
8456         * frame.el (set-frame-name):
8457         * help.el (lookup-minor-mode-from-indicator):
8458         * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
8459         * progmodes/cc-cmds.el (c-toggle-auto-newline)
8460         (c-toggle-hungry-state):
8461         * progmodes/antlr-mode.el (antlr-language-alist):
8462         * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
8463         * progmodes/vhdl-mode.el (vhdl-mode):
8464         * progmodes/which-func.el (which-func, which-func-cleanup-function):
8465         * term/ns-win.el (ns-face-at-pos):
8466         * term/sup-mouse.el (sup-mouse-report):
8467         * textmodes/flyspell.el (flyspell-mode-line-string):
8468         * textmodes/ispell.el (ispell-highlight-face):
8469         * textmodes/reftex-global.el:
8470         * vc/vc-arch.el (vc-arch-mode-line-string):
8471         * vc/vc-cvs.el (vc-cvs-mode-line-string):
8472         * vc/vc-git.el (vc-git-mode-line-string):
8473         * vc/vc-hooks.el (vc-display-status)
8474         (vc-default-mode-line-string):
8475         * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
8477         * ansi-color.el (ansi-color-faces-vector): Change default faces.
8479         * dired.el (dired-sort-set-mode-line): Rename from
8480         dired-sort-set-modeline.  All callers changed.
8482         * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
8483         eshell-status-in-modeline.
8485         * foldout.el (foldout-mode-line-string): Rename from
8486         foldout-modeline-string.  All callers changed.
8487         (foldout-update-mode-line): Rename from foldout-update-modeline.
8489         * subr.el (redraw-modeline): Make into obsolete alias.
8491         * calendar/timeclock.el (timeclock-mode-line-display): Rename from
8492         timeclock-modeline-display.  Make old name an alias.
8493         (timeclock-update-mode-line): Likewise.  All callers changed.
8494         (timeclock-mode-line-display): No need to check before using
8495         add-hook.
8496         (timeclock-relative, timeclock-day-over-hook)
8497         (timeclock-use-elapsed, timeclock-mode-string)
8498         (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
8500         * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
8501         crisp-mode-modeline-string.
8503         * play/solitaire.el (solitaire-build-mode-line): Rename from
8504         solitaire-build-modeline.  All callers changed.
8506         * play/zone.el (zone-hiding-mode-line): Rename from
8507         zone-hiding-modeline.  All callers changed.
8508         (zone): Remove unusued `modeline-hidden-level' property.
8510         * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
8511         xscheme-modeline-initialize.  All callers changed.
8513         * strokes.el (strokes-lighter): Rename from
8514         strokes-modeline-string.
8516         * textmodes/sgml-mode.el (html-face-tag-alist)
8517         (html-tag-face-alist): Use mode-line face instead of obsolete
8518         alias modeline.
8520 2012-06-02  Stefan Merten  <smerten@oekonux.de>
8522         * textmodes/rst.el: Always require `cl'.
8523         (rst-mode-map): Fix meaning of C-M-a / C-M-e.
8525 2012-06-02  Chong Yidong  <cyd@gnu.org>
8527         * image.el (imagemagick-enabled-types): Rename from
8528         imagemagick-types-enable.  Add many more types.
8529         (imagemagick-types-inhibit): Change default to nil.
8530         (imagemagick-filter-types): Caller changed.
8532 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8534         * emacs-lisp/cl-macs.el: Use backquotes.
8535         (cl-transform-function-property): Use eval-and-compile rather than
8536         abusing `require'.
8537         (defstruct): Use declare-function instead of with-no-warnings.
8539         * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
8540         (byte-compile-output-docform): Re-add the print-circle bindings.
8541         (byte-compile-fix-header): Use #$ just because it's shorter.
8542         (byte-compile-output-file-form): Remove defun/defmacro.
8544 2012-06-01  Martin Rudalics  <rudalics@gmx.at>
8546         * simple.el (choose-completion): Remove now obsolete binding for
8547         owindow.
8549 2012-06-01  Michael Albinus  <michael.albinus@gmx.de>
8551         * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
8552         in order to avoid "Stack overflow in regexp matcher".
8554 2012-05-31  Glenn Morris  <rgm@gnu.org>
8556         * image.el: For clarity, call imagemagick-register-types at
8557         top-level, rather than relying on a custom :initialize.
8558         (imagemagick-types-enable): New option.  (Bug#11557)
8559         (imagemagick-filter-types): New function.  (Bug#7406)
8560         (imagemagick-register-types): Use imagemagick-filter-types.
8561         If disabling support, remove elements altogether rather
8562         than using an impossible regexp.
8563         (imagemagick-types-inhibit): Give it the default init function.
8565 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
8567         * emacs-lisp/bytecomp.el (byte-compile-fix-header):
8568         Handle arbitrary file name lengths (Bug#11585).
8570 2012-05-31  Martin Rudalics  <rudalics@gmx.at>
8572         * desktop.el (desktop-read): Clear previous and next buffers for
8573         all windows and bury *Messages* buffer (bug#11556).
8575 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
8577         Add `declare' for `defun'.  Align `defmacro's with it.
8578         * emacs-lisp/easy-mmode.el (define-minor-mode)
8579         (define-globalized-minor-mode): Don't autoload the var definitions.
8580         * emacs-lisp/byte-run.el: Use lexical-binding.
8581         (defun-declarations-alist, macro-declarations-alist): New vars.
8582         (defmacro, defun): Use them.
8583         (make-obsolete, define-obsolete-function-alias)
8584         (make-obsolete-variable, define-obsolete-variable-alias):
8585         Use `declare'.
8586         (macro-declaration-function): Mark obsolete.
8587         * emacs-lisp/autoload.el: Use lexical-binding.
8588         (make-autoload): Add `expansion' arg.  Rely more on macro expansion.
8590 2012-05-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8592         * textmodes/ispell.el (ispell-with-no-warnings):
8593         Define as a macro.
8594         (ispell-kill-ispell, ispell-change-dictionary):
8595         Use `called-interactively-p' for Emacs instead of obsolete
8596         `interactive-p'.
8598 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8600         * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
8601         (macro-declaration-function): Move var from C code.
8602         (macro-declaration-function): Define function with defalias.
8603         * emacs-lisp/macroexp.el (macroexpand-all-1):
8604         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
8605         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
8606         defun/defmacro any more.
8607         * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
8608         Provide fallback for unknown arglist.
8609         (byte-compile-arglist-warn): Change calling convention.
8610         (byte-compile-output-file-form): Move print-vars binding.
8611         (byte-compile-output-docform): Simplify accordingly.
8612         (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
8613         (byte-compile-defmacro-declaration): Remove.
8614         (byte-compile-file-form-defmumble): Generalize to defalias.
8615         (byte-compile-output-as-comment): Return byte-positions.
8616         Simplify callers accordingly.
8617         (byte-compile-lambda): Use `assert'.
8618         (byte-compile-defun, byte-compile-defmacro): Remove.
8619         (byte-compile-file-form-defalias):
8620         Use byte-compile-file-form-defmumble.
8621         (byte-compile-defalias-warn): Remove.
8623 2012-05-29  Stefan Merten  <smerten@oekonux.de>
8625         * textmodes/rst.el: Silence `checkdoc-ispell' errors where
8626         possible.  Fix authors.  Improve comments.  Improve loading of `cl'.
8628         (rst-mode-abbrev-table): Merge definition.
8629         (rst-mode): Make sure `font-lock-defaults' is buffer local.
8630         (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
8632 2012-05-29  Ulf Jasper  <ulf.jasper@web.de>
8634         * calendar/icalendar.el
8635         (icalendar-export-region): Export UID properly.
8637 2012-05-29  Leo Liu  <sdl.web@gmail.com>
8638         * calendar/icalendar.el (icalendar-import-format):
8639         Add `icalendar-import-format-uid' (Bug#11525).
8640         (icalendar-import-format-uid): New.
8641         (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
8642         Export UID.
8644 2012-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8646         * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
8647         different alternative patterns.
8648         (pcase-codegen): Be more careful to preserve identity.
8649         (pcase--u1): Don't forget to mark vars as used.
8651         * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
8652         (byte-compile-close-variables): Bind byte-compile--outbuffer here...
8653         (byte-compile-from-buffer): ...rather than here.
8655         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
8656         functions from byte-compile-function-environment.
8658 2012-05-29  Troels Nielsen  <bn.troels@gmail.com>
8660         * window.el (window-deletable-p): Avoid deleting the root window
8661         of a frame with an active minibuffer.
8663 2012-05-29  Martin Rudalics  <rudalics@gmx.at>
8665         * simple.el (choose-completion): Use quit-window (Bug#11567).
8667 2012-05-29  Chong Yidong  <cyd@gnu.org>
8669         * whitespace.el (whitespace-cleanup): Fix usage of
8670         whitespace-empty-at-bob-regexp (Bug#11492).
8672 2012-05-29  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
8674         * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
8675         revert (Bug#11488).
8677 2012-05-29  Juri Linkov  <juri@jurta.org>
8679         * isearch.el (isearch-mode-map): Bind `M-s _' to
8680         `isearch-toggle-symbol'.  Bind `M-s c' to
8681         `isearch-toggle-case-fold'.
8682         (search-map): Bind `M-s _' to `isearch-forward-symbol'.
8683         (isearch-forward): Add `M-s _' to the docstring.
8684         (isearch-forward-symbol, isearch-toggle-case-fold)
8685         (isearch-symbol-regexp): New functions.  (Bug#11381)
8687 2012-05-29  Juri Linkov  <juri@jurta.org>
8689         * isearch.el (isearch-word): Add docstring.  (Bug#11381)
8690         (isearch-occur, isearch-search-and-update): If `isearch-word' is
8691         a function, call it to get the regexp.
8692         (isearch-message-prefix): If `isearch-word' holds a symbol, use its
8693         property `isearch-message-prefix' instead of the string "word ".
8694         (isearch-search-fun-default): For the case of `isearch-word',
8695         return a lambda that calls re-search-forward/re-search-backward
8696         with a regexp returned by `word-search-regexp' or by the function
8697         in `isearch-word'.
8699 2012-05-29  Juri Linkov  <juri@jurta.org>
8701         * isearch.el (isearch-search-fun-default): New function.
8702         (isearch-search-fun): Move default part to the new function
8703         `isearch-search-fun-default'.
8704         (isearch-search-fun-function): Set the default value to
8705         `isearch-search-fun-default'.  (Bug#11381)
8707         * comint.el (comint-history-isearch-end):
8708         Use `isearch-search-fun-default'.
8709         (comint-history-isearch-search): Use `isearch-search-fun-default'
8710         and remove spacial case for `isearch-word'.
8711         (comint-history-isearch-wrap): Remove spacial case for
8712         `isearch-word'.
8714         * hexl.el (hexl-isearch-search-function):
8715         Use `isearch-search-fun-default'.
8717         * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
8718         Use `word-search-regexp' for `isearch-word'.
8720         * misearch.el (multi-isearch-search-fun):
8721         Use `isearch-search-fun-default'.
8723         * simple.el (minibuffer-history-isearch-search):
8724         Use `isearch-search-fun-default' and remove spacial case for
8725         `isearch-word'.
8726         (minibuffer-history-isearch-wrap): Remove spacial case for
8727         `isearch-word'.
8729         * textmodes/reftex-global.el (reftex-isearch-wrap-function):
8730         Remove spacial case for `isearch-word'.
8731         (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
8733 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8735         Decrease XEmacs incompatibilities.
8736         * textmodes/flyspell.el (flyspell-check-pre-word-p):
8737         Use `string-match'.
8738         (flyspell-delete-region-overlays): Use alternative definition for
8739         XEmacs.
8740         (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
8741         (flyspell-word): Use `process-kill-without-query' if XEmacs.
8742         (flyspell-mode-on): Use `interactive-p' if XEmacs.
8743         (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
8744         `define-obsolete-face-alias' under XEmacs, but old method.
8746         * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
8747         `with-no-warnings' definition or Emacs alias.
8748         (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
8749         (ispell-word): Do not use `region-p' if XEmacs.
8751 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8753         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
8754         Check for `ispell-dictionary-base-alist' instead of full
8755         `ispell-dictionary-alist'.
8756         (ispell-init-process): Show spellchecker when starting new Ispell
8757         process.
8759 2012-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8761         * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
8762         http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
8764 2012-05-27  Juanma Barranquero  <lekktu@gmail.com>
8766         * version.el (motif-version-string, gtk-version-string)
8767         (ns-version-string): Declare.
8769 2012-05-27  Juri Linkov  <juri@jurta.org>
8771         * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
8772         after the `eval-defun-1' specialcaseing
8773         like in `edebug-eval-defun' (bug#10181).
8775         * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
8776         like in `eval-defun-1'.
8778 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
8780         * mail/sendmail.el (mail-yank-region):
8781         Recognize rmail-yank-current-message in addition to insert-buffer.
8782         Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
8783         a *mail* buffer created through rmail-start-mail with sendmail as
8784         mail-user-agent.
8786 2012-05-27  Chong Yidong  <cyd@gnu.org>
8788         * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
8789         Default to 256 (Bug#11267).
8791         * help.el (describe-mode): Doc fix.
8793 2012-05-26  Glenn Morris  <rgm@gnu.org>
8795         * w32-fns.el (w32-init-info): Remove.
8796         * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
8798         * info.el (info-initialize): For self-contained NS builds, put the
8799         included info/ directory at the front.  (Bug#2791)
8801         * paths.el (Info-default-directory-list): Make it a defcustom,
8802         mainly so that we can use custom-initialize-delay.
8804 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8806         * subr.el (buffer-has-markers-at): Mark obsolete.
8808         * subr.el (lambda): Use declare.
8810         * emacs-lisp/lisp-mode.el (lambda):
8811         * emacs-lisp/edebug.el (lambda): Move properties to its definition.
8813 2012-05-26  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
8815         * thingatpt.el (forward-same-syntax): Handle no ARG case.  (Bug#11560)
8817 2012-05-26  Glenn Morris  <rgm@gnu.org>
8819         * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
8821 2012-05-25  Glenn Morris  <rgm@gnu.org>
8823         * paths.el: Remove no-byte-compile.
8824         * loadup.el: No need to load paths.el uncompiled.
8826         * image.el (imagemagick-types-inhibit): Doc fix.
8828         * version.el: Remove no-byte-compile and associated formatting.
8829         * loadup.el: No need to load version.el uncompiled.  AFAICS, this
8830         is ancient code from when there was an "inc-vers.el".
8832 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8834         * progmodes/gdb-mi.el: Minor style changes.
8835         (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
8836         Turn into minor modes.
8837         (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
8838         (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
8839         (gdb-shell): Remove unneeded let-binding.
8840         (gdb-get-many-fields): Eliminate O(n²) behavior.
8842 2012-05-25  Eli Zaretskii  <eliz@gnu.org>
8844         * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
8845         platforms that don't link in fontset.c.
8847 2012-05-25  Juri Linkov  <juri@jurta.org>
8849         Use the same diff color scheme as in modern VCSes (bug#10181).
8851         * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
8852         to avoid confusion with `diff-added' that now uses green colors.
8853         (diff-removed): Use shades of red.
8854         (diff-added): Use shades of green.
8855         (diff-changed): Leave just the yellow color.
8856         (diff-use-changed-face): New variable.
8857         (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
8858         how to highlight context diff changes.
8859         (diff-refine-change): Use shades of yellow.
8860         (diff-refine-removed): New face that uses shades of red.
8861         (diff-refine-added): New face that uses shades of green.
8862         (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
8863         `diff-refine-removed' in the call to `smerge-refine-subst'
8864         depending on the value of `diff-use-changed-face'.
8866         * vc/smerge-mode.el (smerge-mine): Use shades of red.
8867         (smerge-other): Use shades of green.
8868         (smerge-base): Use shades of yellow.
8869         (smerge-refined-change): Empty face.
8870         (smerge-refined-removed): New face that uses shades of red.
8871         (smerge-refined-added): New face that uses shades of green.
8872         (smerge-refine-subst): Rename arg `props' to `props-c'.  Add new
8873         args `props-r' and `props-a', and use them.  Doc fix.
8874         (smerge-refine): Evaluate `smerge-use-changed-face' and depending
8875         on its value use different faces `smerge-refined-change',
8876         `smerge-refined-removed', `smerge-refined-added' in the call to
8877         `smerge-refine-subst'.
8879         * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
8880         Add face condition `min-colors 88' with shades of red.
8881         (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
8882         `min-colors 88' with shades of green.
8883         (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
8884         `min-colors 88' with shades of yellow.
8886 2012-05-24  Glenn Morris  <rgm@gnu.org>
8888         * paths.el (prune-directory-list, remote-shell-program): Move to...
8889         * files.el (prune-directory-list, remote-shell-program): ...here.
8890         For the latter, delay initialization, prefer ssh, just search PATH.
8892         * paths.el (term-file-prefix): Move to faces.el (the only user).
8893         * faces.el (term-file-prefix): Move here, make it a defcustom.
8895         * paths.el (news-directory, news-path, news-inews-program):
8896         Move to gnus/nnspool.el.
8898         * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
8900         * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
8901         * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
8902         Make the latter a defcustom, with a delayed initialization.
8904         * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
8905         These were deleted from Gnus itself late 2010.
8907 2012-05-22  Juanma Barranquero  <lekktu@gmail.com>
8909         * progmodes/which-func.el (which-func-ff-hook):
8910         Check against user-error, not error.
8912         * emacs-lisp/edebug.el (top): Do not load or set up loading of
8913         cl-specs.el, which no longer exists.
8915 2012-05-22  Glenn Morris  <rgm@gnu.org>
8917         * info.el (info-emacs-bug): New command.
8918         * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
8919         * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
8921 2012-05-21  Glenn Morris  <rgm@gnu.org>
8923         * makefile.w32-in (update-subdirs-SH):
8924         * Makefile.in (update-subdirs): Update for moved update-subdirs.
8926 2012-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8928         * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
8930         * progmodes/compile.el (compilation-error-regexp-alist-alist):
8931         Simplify Maven regexp, and make sure the file can't start with a space
8932         (bug#11517).
8934 2012-05-21  Glenn Morris  <rgm@gnu.org>
8936         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
8937         Scrap superfluous subshells.
8939 2012-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8941         * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
8942         (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
8944 2012-05-19  Jay Belanger  <jay.p.belanger@gmail.com>
8946         * calc/calc.el (calc-ensure-consistent-units): New variable.
8948         * calc/calc-units.el (math-consistent-units-p)
8949         (math-check-unit-consistency): New functions.
8950         (calc-quick-units, calc-convert-units):
8951         Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
8952         is non-nil.
8953         (calc-extract-units): Fix typo.
8955 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8957         * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
8959         * textmodes/flyspell.el: Commenting style, plus code simplifications.
8960         (flyspell-default-deplacement-commands): Don't spell check after
8961         repeated window/frame switches (e.g. triggered by mouse-movement).
8962         (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
8963         (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
8964         (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
8965         (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
8966         Remove unused vars.
8967         (flyspell-get-casechars, flyspell-get-not-casechars):
8968         Simplify; Don't bother removing a ] just to add it back.
8969         * textmodes/ispell.el (ispell-program-name): Use executable-find.
8971 2012-05-18  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
8973         * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
8974         New functions.
8975         (math-function-table): Add support for more C functions.
8977 2012-05-18  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
8979         * textmodes/flyspell.el (flyspell-check-pre-word-p)
8980         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
8981         Protect delay handling for otherchars against empty otherchars.
8983 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8985         * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
8986         their respective macro declarations.
8987         * skeleton.el (define-skeleton):
8988         * progmodes/compile.el (define-compilation-mode):
8989         * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
8990         (define-ibuffer-filter):
8991         * emacs-lisp/generic.el (define-generic-mode):
8992         * emacs-lisp/easy-mmode.el (define-minor-mode)
8993         (define-globalized-minor-mode):
8994         * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
8995         * emacs-lisp/byte-run.el (defsubst):
8996         * custom.el (deftheme): Add doc-string metadata.
8998 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9000         * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
9002 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9004         * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
9006         * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
9007         * emacs-lisp/cl-macs.el: Idem.
9008         * emacs-lisp/cl-specs.el: Remove.
9010 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9012         Minor renaming of internal CL functions and variables.
9013         * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
9014         (cl--position): Rename from cl-position.
9015         (cl--delete-duplicates): Rename from cl-delete-duplicates.
9016         * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
9017         (cl--random-state): Rename from *random-state*.
9019 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9021         * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
9022         parens around the arg list (bug#11499).
9024 2012-05-17  Juri Linkov  <juri@jurta.org>
9026         * isearch.el (word-search-regexp, word-search-backward)
9027         (word-search-forward, word-search-backward-lax)
9028         (word-search-forward-lax): Move functions from search.c
9029         (bug#10145, bug#11381).
9031 2012-05-16  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
9033         * textmodes/flyspell.el (flyspell-check-pre-word-p)
9034         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
9035         Delay for otherchars as for normal word components.
9037 2012-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9039         * minibuffer.el (completion--sifn-requote): Fix last change.
9040         (minibuffer-local-must-match-filename-map):
9041         Move define-obsolete-variable-alias before its var.
9043 2012-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9045         * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
9047         * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
9048         behavior.
9049         (completion--string-equal-p): New function.
9050         (completion--twq-all): Use it to get better assertion failure data.
9052         Only handle ".." and '..' quoting in shell-mode (bug#11466).
9053         * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
9054         (shell--requote-argument): New functions.
9055         (shell-completion-vars): Use them.
9056         (shell--parse-pcomplete-arguments): Rename from
9057         shell-parse-pcomplete-arguments.
9058         * comint.el (comint-word): Obey comint-file-name-quote-list.  Simplify.
9059         (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
9060         Obey comint-file-name-quote-list.
9062         * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
9063         (smie-indent-keyword): Use it.
9065 2012-05-14  Stefan Merten  <smerten@oekonux.de>
9067         * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
9069 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9071         * net/rlogin.el (rlogin-mode-map): Fix last change.
9073 2012-05-14  Jason L. Wright  <jason.wright@inl.gov>  (tiny change)
9075         * mail/smtpmail.el (smtpmail-send-command): Send the command and
9076         the following \r\n using a single `process-send-string', since the
9077         Lotus SMTP server refuses to accept any commands if they are sent
9078         with two `process-send-string's (Bug#11444).
9080 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9082         * shell.el (shell-parse-pcomplete-arguments):
9083         Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
9085 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
9087         * image-mode.el: Fit to width/height for rotated images (Bug#11431).
9088         (image-transform-scale, image-transform-right-angle-fudge): New vars.
9089         (image-transform-width, image-transform-fit-width): New functions.
9090         (image-transform-properties): Use them.
9091         (image-transform-check-size): New function.
9092         (image-toggle-display-image): Use it (for testing).
9093         (image-transform-set-rotation): Reduce angle mod 360.
9094         Delete obsolete comment.
9096 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
9098         * image-mode.el: Fix scaling (bug#11399).
9099         (image-transform-resize): Doc fix.
9100         (image-transform-properties): Default scale is 1 and height should
9101         be an integer.
9103 2012-05-13  Johan Bockgård  <bojohan@gnu.org>
9105         * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
9106         than hard-coding `car', to fix misbehavior when moving forward.
9108 2012-05-13  Chong Yidong  <cyd@gnu.org>
9110         * emacs-lisp/tabulated-list.el (tabulated-list-format)
9111         (tabulated-list-entries, tabulated-list-padding)
9112         (tabulated-list-sort-key): Make permanent-local.
9114         * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
9115         (electric-buffer-list): Put electric buffer menu
9116         command descriptions in this docstring, instead of the docstring
9117         of electric-buffer-menu-mode.  Code cleanups.
9118         (electric-buffer-menu-mode): Use define-derived-mode.  Rename from
9119         Electric-buffer-menu-mode.
9120         (electric-buffer-update-highlight): Minor code cleanup.
9122 2012-05-13  Michael Albinus  <michael.albinus@gmx.de>
9124         * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
9125         (Bug#11447)
9127 2012-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9129         Move define-obsolete-variable-alias before the var's definition.
9130         * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
9131         * tooltip.el (tooltip-hook):
9132         * textmodes/reftex-toc.el (reftex-toc-map):
9133         * textmodes/reftex-sel.el (reftex-select-label-map)
9134         (reftex-select-bib-map):
9135         * textmodes/reftex-index.el (reftex-index-map)
9136         (reftex-index-phrases-map):
9137         * speedbar.el (speedbar-syntax-table, speedbar-key-map):
9138         * progmodes/meta-mode.el (meta-mode-map):
9139         * novice.el (disabled-command-hook):
9140         * loadhist.el (unload-hook-features-list):
9141         * frame.el (blink-cursor):
9142         * files.el (find-file-not-found-hooks, write-file-hooks)
9143         (write-contents-hooks):
9144         * emulation/tpu-edt.el (GOLD-map):
9145         * emacs-lock.el (emacs-lock-from-exiting):
9146         * emacs-lisp/generic.el (generic-font-lock-defaults):
9147         * emacs-lisp/chart.el (chart-map):
9148         * dos-fns.el (register-name-alist):
9149         * dired-x.el (dired-omit-files-p):
9150         * desktop.el (desktop-enable):
9151         * cus-edit.el (custom-mode-hook):
9152         * buff-menu.el (buffer-menu-mode-hook):
9153         * bookmark.el (bookmark-read-annotation-text-func)
9154         (bookmark-exit-hooks):
9155         * allout.el (allout-mode-deactivate-hook)
9156         (allout-exposure-change-hook, allout-structure-added-hook)
9157         (allout-structure-deleted-hook, allout-structure-shifted-hook):
9158         * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
9159         (dirtrack-debug): Move call to define-obsolete-variable-alias so it
9160         comes before the corresponding variable's definition.
9162 2012-05-12  Chong Yidong  <cyd@gnu.org>
9164         * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
9165         (Buffer-menu-mouse-select): Restore function (Bug#11459).
9166         (Buffer-menu-mode-map): Bind it.
9167         (Buffer-menu--pretty-name): Add a mouse-face property.
9169 2012-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9171         * progmodes/prolog.el: Use SMIE.  Cleanup regexp setup.
9172         (prolog-upper-case-string, prolog-lower-case-string)
9173         (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
9174         (prolog-use-smie, prolog-smie-grammar): New vars.
9175         (prolog-smie-forward-token, prolog-smie-backward-token)
9176         (prolog-smie-rules): New funs.
9177         (prolog-comment-indent): Remove.
9178         (prolog-mode-variables): Use default comment indentation instead.
9179         Setup SMIE.
9180         (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
9181         (prolog-mode): Don't call them any more.
9182         (prolog-electric-colon, prolog-electric-dash)
9183         (prolog-edit-menu-insert-move): Use indent-according-to-mode.
9185         * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
9187         * minibuffer.el (completion--twq-all): Again, allow case differences.
9189         * term.el: Move keymap initialization code to be more idiomatic.
9190         (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
9191         (term-terminal-menu): Move initialization into declaration.
9192         (term-escape-char): Let the user set it in her .emacs.
9194         * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
9195         Provide SMIE-based indentation (not enabled by default yet).
9196         (sh-mode-map): Don't bind electric keys.
9197         Use electric-pair-mode instead of skeleton-pair.
9198         (sh-assignment-regexp): Fit within 80 columns.
9199         (sh-indent-supported): Specify actual shell name instead of boolean.
9200         (sh--maybe-here-document): New fun, from sh-maybe-here-document.
9201         (sh-maybe-here-document): Use it.  Make obsolete.
9202         (sh-electric-here-document-mode) New minor mode.
9203         (sh-mode): Use it.  Don't set sh-indent-supported-here here.
9204         (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
9205         (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
9206         (sh-smie-rc-grammar, sh-use-smie): New vars.
9207         (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
9208         (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
9209         (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
9210         (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
9211         (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
9212         (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
9213         (sh-set-shell): Use smie-setup if requested.
9215         * term.el (term-set-escape-char): Properly set term-escape-char.
9216         See http://stackoverflow.com/questions/10524656.
9218 2012-05-10  Chong Yidong  <cyd@gnu.org>
9220         * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
9221         Use url-generic-parse-url, and handle host names and Windows
9222         filenames properly.
9223         (ffap-url-unwrap-remote): Use url-generic-parse-url.
9224         (ffap-url-unwrap-remote): Accept list values, specifying a list of
9225         URL schemes to work on.
9226         (ffap--toggle-read-only): New function.
9227         (ffap-read-only, ffap-read-only-other-window)
9228         (ffap-read-only-other-frame): Use it.
9229         (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
9230         necessary for ffap-url-unwrap-remote.
9232 2012-05-10  Dave Abrahams  <dave@boostpro.com>
9234         * cus-start.el (create-lockfiles): Add it.
9236 2012-05-09  Chong Yidong  <cyd@gnu.org>
9238         * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
9239         (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
9241 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9243         * shell.el (shell-completion-vars): Fix last change (bug#11348).
9245 2012-05-09  Chong Yidong  <cyd@gnu.org>
9247         * ansi-color.el (ansi-color-process-output): Check for validity of
9248         comint-last-output-start before using it.  This avoids a bad
9249         interaction with gdb-mi's input/output buffer.
9251 2012-05-09  Glenn Morris  <rgm@gnu.org>
9253         * files.el (dir-locals-read-from-file):
9254         Mention dir-locals in any error message.
9256 2012-05-09  Chong Yidong  <cyd@gnu.org>
9258         * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
9259         package (Bug#11410).
9261         * emacs-lisp/package.el (package-buffer-info): Avoid putting local
9262         variables into description.
9264 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9266         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
9267         shell-delimiter-argument-list (bug#11348).
9268         (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
9270 2012-05-09  Juanma Barranquero  <lekktu@gmail.com>
9272         * textmodes/rst.el: Silence byte-compiler warnings.
9273         (rst-re-alist, rst-reset-section-caches): Move around.
9274         (rst-re): Use `characterp', not `char-valid-p'.
9275         (font-lock-beg, font-lock-end): Declare.
9277         * progmodes/idlw-shell.el (specs): Remove reference to deleted
9278         variable `idlwave-shell-activate-alt-keybindings' and simplify.
9280         * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
9282 2012-05-08  Glenn Morris  <rgm@gnu.org>
9284         * files.el (auto-mode-alist): Treat ".make" like ".mk".
9286 2012-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9288         * vc/log-edit.el: Add GNU coding standards highlighting.
9289         (log-edit-font-lock-gnu-style)
9290         (log-edit-font-lock-gnu-keywords): New vars.
9291         (log-edit-font-lock-keywords): New fun.
9292         (log-edit-mode): Don't fold case in font-lock.
9293         (log-edit-font-lock-keywords): Do not assume case-folding.
9295         * imenu.el: Misc cleanup.  Make docstrings out of comments.
9296         Use lexical-binding.
9297         (imenu--index-alist, imenu--last-menubar-index-alist)
9298         (imenu-menubar-modified-tick): Use defvar-local.
9299         (imenu--split-menu): Remove unused var.
9300         (imenu--cleanup-seen): Declare as global.
9301         (imenu--cleanup): Use dolist.
9303         * subr.el (defvar-local): Add debug spec and doc-string position.
9305 2012-05-08  Glenn Morris  <rgm@gnu.org>
9307         * language/burmese.el, language/cham.el, language/czech.el:
9308         * language/english.el, language/georgian.el, language/greek.el:
9309         * language/japanese.el, language/khmer.el, language/korean.el:
9310         * language/lao.el, language/misc-lang.el, language/romanian.el:
9311         * language/sinhala.el, language/slovak.el, language/tai-viet.el:
9312         * language/thai.el, language/utf-8-lang.el:
9313         Remove no-byte-compile setting.
9315         * play/zone.el (zone-pgm-stress): Don't pollute kill-ring.  (Bug#11388)
9317 2012-05-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
9319         * progmodes/make-mode.el (makefile-browse):
9320         Remove unnecessary interactive.  (Bug#11324)
9322 2012-05-07  Glenn Morris  <rgm@gnu.org>
9324         * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
9326         * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
9328 2012-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9330         * loadup.el: Preload newcomment.el.
9331         * newcomment.el: Move autoload-only code to toplevel.
9333         * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
9334         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
9335         Handle new :right-align column property.
9336         (tabulated-list-print-col): Idem, plus use `display' text-property to
9337         try and preserve alignment for variable pitch fonts.
9339 2012-05-07  Chong Yidong  <cyd@gnu.org>
9341         * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
9342         (tabulated-list-use-header-line): New var.
9343         (tabulated-list-init-header): Use it.
9344         (tabulated-list-print-fake-header): New function.
9345         (tabulated-list-print): Use it.
9346         (tabulated-list-sort-button-map): Add non-header-line commands.
9347         (tabulated-list-init-header): Add column name property to basic
9348         labels as well.
9349         (tabulated-list-col-sort): Handle non-header-line button case.
9350         (tabulated-list--sort-by-column-name): Fix a corner case.
9352         * buff-menu.el (list-buffers--refresh):
9353         Handle Buffer-menu-use-header-line.
9355 2012-05-06  Chong Yidong  <cyd@gnu.org>
9357         * buff-menu.el: Convert to Tabulated List mode.
9358         (Buffer-menu-buffer+size-width): Make obsolete.
9359         (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
9360         (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
9361         (Buffer-menu-mode): Derive from tabulated-list-mode.  Move command
9362         documentation into docstring of buffer-menu.
9363         (Buffer-menu-toggle-files-only): Add an informative message.
9364         (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
9365         (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
9366         (Buffer-menu-unmark, Buffer-menu-backup-unmark)
9367         (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
9368         (Buffer-menu-execute, Buffer-menu-select)
9369         (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
9370         (Buffer-menu-bury): Use Tabulated List machinery.
9371         (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
9372         (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
9373         Delete.
9374         (list-buffers--refresh): New function.
9375         (list-buffers-noselect): Use it.
9376         (tabulated-list-entry-size->, Buffer-menu--pretty-name)
9377         (Buffer-menu--pretty-file-name): New helper functions.
9379         * loadup.el: Preload tabulated-list.
9381         * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
9382         tabulated-list-sort-column.
9383         (tabulated-list-init-header): Add the initial aligning space even
9384         if tabulated-list-padding is zero.
9386 2012-05-06  Christopher Schmidt  <christopher@ch.ristopher.com>
9388         * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
9389         whose cdr is not a cons cell correctly (bug#11038).
9391 2012-05-06  Chong Yidong  <cyd@gnu.org>
9393         * emacs-lisp/tabulated-list.el (tabulated-list-format):
9394         Accept additional plist in column descriptors.
9395         (tabulated-list-init-header): Obey it.
9396         (tabulated-list-get-entry): New function.
9397         (tabulated-list-put-tag): Use it.  Use string-width instead of
9398         length.
9399         (tabulated-list--column-number): New function.
9400         (tabulated-list-print): Use it.
9401         (tabulated-list-print-col): New function.
9402         Set `tabulated-list-column-name' property on each column's text.
9403         (tabulated-list-print-entry): Use it.
9404         (tabulated-list-delete-entry, tabulated-list-set-col):
9405         New functions.
9406         (tabulated-list-sort-column): New command (Bug#11337).
9408         * buff-menu.el (list-buffers): Move C-x C-b binding from
9409         buff-menu.el to bindings.el.
9411         * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
9412         :advertised-binding feature.
9414 2012-05-06  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
9416         * progmodes/compile.el (compilation-internal-error-properties):
9417         Calculate start position correctly when end-col is set but
9418         end-line is not (Bug#11382).
9420 2012-05-06  Wolfgang Jenkner  <wjenkner@inode.at>
9422         * man.el (Man-unindent): Use text-property-default-nonsticky to
9423         prevent untabify from inheriting face properties (Bug#11408).
9425 2012-05-05  Stefan Merten  <smerten@oekonux.de>
9427         * textmodes/rst.el: Major merge with upstream development up to
9428         Docutils SVN r7399 / rst.el V1.2.1.
9430         Clarify maintainership and authors.
9432         (rst-extract-version, rst-cvs-header, rst-cvs-rev)
9433         (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
9434         (rst-official-version, rst-official-cvs-rev, rst-version)
9435         (rst-package-emacs-version-alist): New functions and variables
9436         for version information.
9438         (rst-bullets, rst-uri-schemes, rst-adornment-chars)
9439         (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
9440         (rst-mode-syntax-table, rst-mode): New and corrected functions
9441         and variables representing reStructuredText features.
9443         (rst-re): New function for reStructuredText regexes.  Use in
9444         many places.
9446         (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
9447         (rst-mode-map): Rebind keys.
9449         (rst-mode-lazy, rst-font-lock-keywords)
9450         (rst-font-lock-extend-region)
9451         (rst-font-lock-extend-region-internal)
9452         (rst-font-lock-extend-region-extend)
9453         (rst-font-lock-find-unindented-line-limit)
9454         (rst-font-lock-find-unindented-line-match)
9455         (rst-adornment-level, rst-font-lock-adornment-level)
9456         (rst-font-lock-adornment-match)
9457         (rst-font-lock-handle-adornment-pre-match-form)
9458         (rst-font-lock-handle-adornment-matcher): Major revision of
9459         font-locking.  Integrate with other code.  Use `jit-lock-mode'.
9461         (rst-preferred-adornments, rst-adjust-hook)
9462         (rst-new-adornment-down, rst-preferred-bullets)
9463         (rst-preferred-bullets, rst-indent, rst-indent-width)
9464         (rst-indent-field, rst-indent-literal-normal)
9465         (rst-indent-literal-minimized, rst-indent-comment): Change,
9466         extend and improve customization.
9468         (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
9469         (rst-normalize-cursor-position, rst-get-decoration)
9470         (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
9471         (rst-rstrip, rst-toc-insert-find-delete-contents)
9472         (rst-shift-fill-region, rst-compute-bullet-tabs)
9473         (rst-debug-print-tabs, rst-debug-mark-found)
9474         (rst-shift-region-guts, rst-shift-region-right)
9475         (rst-shift-region-left, rst-use-char-classes)
9476         (rst-font-lock-keywords-function)
9477         (rst-font-lock-indentation-point)
9478         (rst-font-lock-find-unindented-line-begin)
9479         (rst-font-lock-find-unindented-line-end)
9480         (rst-font-lock-find-unindented-line)
9481         (rst-font-lock-adornment-point, rst-font-lock-level)
9482         (rst-adornment-level-alist): Remove functions and variables.
9484         (rst-compare-adornments, rst-get-adornment-match)
9485         (rst-suggest-new-adornment, rst-get-adornments-around)
9486         (rst-adornment-complete-p, rst-get-next-adornment)
9487         (rst-adjust-adornment, rst-display-adornments-hierarchy)
9488         (rst-straighten-adornments): Standardize function names to
9489         use "adornment" instead of "decoration".  Correct callers.
9490         Similar standardizing in many places.
9492         (rst-update-section, rst-adjust, rst-promote-region)
9493         (rst-enumerate-region, rst-bullet-list-region)
9494         (rst-repeat-last-character): Correct use of `interactive'.
9496         (rst-classify-adornment, rst-find-all-adornments)
9497         (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
9498         (rst-find-leftmost-column, rst-repeat-last-character):
9499         Refactor functions.
9501         (rst-find-title-line, rst-reset-section-caches)
9502         (rst-get-adornments-around, rst-adjust-adornment-work)
9503         (rst-arabic-to-roman, rst-roman-to-arabic)
9504         (rst-insert-list-pos, rst-insert-list-new-item)
9505         (rst-insert-list-continue, rst-insert-list, rst-forward-line):
9506         New functions.
9508         (rst-all-sections, rst-section-hierarchy)
9509         (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
9510         New variables.
9512         (rst-toc-return-wincfg, rst-toc-quit-window): Use window
9513         configuration instead of only buffer.  Change where necessary.
9515         (rst-line-tabs, rst-compute-tabs, rst-indent-line)
9516         (rst-shift-region, rst-adaptive-fill): New functions for
9517         indentation and filling.
9519         (rst-comment-line-break, rst-comment-indent)
9520         (rst-comment-insert-comment, rst-comment-region)
9521         (rst-uncomment-region): New functions for handling comments.
9523         (rst-compile): Quote shell arguments.
9525         (rst-compile-pdf-preview, rst-compile-slides-preview):
9526         Delete temporary files after use.
9528 2012-05-05  Glenn Morris  <rgm@gnu.org>
9530         * calendar/cal-html.el: Optionally include holidays in the output.
9531         Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
9532         (cal-html-holidays): New option.
9533         (cal-html-css-default): Add holiday entry.
9534         (holiday-in-range): Autoload it.
9535         (cal-html-htmlify-entry): Add optional class argument.
9536         (cal-html-htmlify-list): Add optional holidays argument.
9537         (cal-html-insert-agenda-days): Include holidays in the output.
9538         (cal-html-one-month): Maybe include holidays.
9540         * calendar/holidays.el (holiday-in-range):
9541         Move here from cal-tex-list-holidays.
9542         * calendar/cal-tex.el (cal-tex-list-holidays):
9543         Make it an obsolete alias for holiday-in-range.  Update all callers.
9545 2012-05-05  Chong Yidong  <cyd@gnu.org>
9547         * select.el (xselect--encode-string): Always use utf-8 for TEXT on
9548         Nextstep.
9550 2012-05-05  Ransom Williams  <auvergnerw@gmail.com>  (tiny change)
9552         * files.el (file-auto-mode-skip): New var.
9553         (set-auto-mode-1): Use it.
9555 2012-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9557         * repeat.el: Use lexical-binding.
9558         (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
9559         (repeat-undo-count): Remove.
9560         (repeat):
9561         * progmodes/octave-mod.el (octave-abbrev-start):
9562         * progmodes/f90.el (f90-abbrev-start):
9563         * face-remap.el (text-scale-adjust):
9564         * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
9566         * emacs-lisp/pcase.el (pcase--let*): New function.
9567         (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
9568         a bit more.
9569         (pcase--split-pred): Be more clever about ruling out overlap between
9570         a predicate and some constant pattern.
9571         (pcase--q1): Use `null' instead of (eq foo nil).
9573         * subr.el (setq-local, defvar-local): New macros.
9574         (kbd): Redefine as an alias.
9575         (with-selected-window): Leave unrelated frames alone.
9576         (set-temporary-overlay-map): New function.
9578 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9580         * subr.el (user-error): New function.
9581         * window.el (switch-to-buffer):
9582         * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
9583         (smerge-match-conflict):
9584         * simple.el (previous-matching-history-element)
9585         (next-matching-history-element, goto-history-element, undo-more)
9586         (undo-start):
9587         * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
9588         (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
9589         (next-file, tags-loop-scan, list-tags, complete-tag):
9590         * progmodes/compile.el (compilation-loop):
9591         * mouse.el (mouse-minibuffer-check):
9592         * man.el (Man-bgproc-sentinel, Man-goto-page):
9593         * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
9594         (Info-history-forward, Info-follow-reference, Info-menu)
9595         (Info-extract-menu-item, Info-extract-menu-counting)
9596         (Info-forward-node, Info-backward-node, Info-next-menu-item)
9597         (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
9598         (Info-next-reference, Info-prev-reference, Info-index)
9599         (Info-index-next, Info-follow-nearest-node)
9600         (Info-copy-current-node-name):
9601         * imenu.el (imenu--make-index-alist)
9602         (imenu-default-create-index-function, imenu-add-to-menubar):
9603         * files.el (basic-save-buffer, recover-file):
9604         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
9605         * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
9606         (checkdoc-message-text, checkdoc-defun):
9607         * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
9608         * cus-edit.el (customize-changed-options, customize-rogue)
9609         (customize-saved, custom-variable-set, custom-variable-mark-to-save)
9610         (custom-variable-mark-to-reset-standard)
9611         (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
9612         (custom-file):
9613         * completion.el (check-completion-length):
9614         * comint.el (comint-search-arg)
9615         (comint-previous-matching-input-string-position)
9616         (comint-previous-matching-input)
9617         (comint-replace-by-expanded-history-before-point, comint-send-input)
9618         (comint-copy-old-input, comint-backward-matching-input)
9619         (comint-goto-process-mark, comint-set-process-mark):
9620         * calendar/calendar.el (calendar-cursor-to-date): Use it.
9621         * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
9623 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9625         * dabbrev.el (dabbrev--ignore-case-p): New function.
9626         (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
9627         Use it.
9629         * files.el (automount-dir-prefix): Mark as obsolete.
9631 2012-05-04  Glenn Morris  <rgm@gnu.org>
9633         * patcomp.el, play/bruce.el: Move to obsolete/.
9635 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
9637         Fix minor Y10k bugs.
9638         * arc-mode.el (archive-unixdate):
9639         * autoinsert.el (auto-insert-alist):
9640         * calc/calc-forms.el (math-this-year):
9641         * emacs-lisp/copyright.el (copyright-current-year)
9642         (copyright-update-year, copyright):
9643         * tar-mode.el (tar-clip-time-string):
9644         * time.el (display-time-update):
9645         Don't assume years have 4 digits.
9647 2012-05-04  Chong Yidong  <cyd@gnu.org>
9649         * dos-w32.el (file-name-buffer-file-type-alist)
9650         (direct-print-region-use-command-dot-com):
9651         * ffap.el (ffap-menu-regexp):
9652         * find-file.el (ff-special-constructs):
9653         * follow.el (follow-debug):
9654         * forms.el (forms--debug):
9655         * iswitchb.el (iswitchb-all-frames):
9656         * ido.el (ido-all-frames):
9657         * emacs-lisp/timer.el (timer-max-repeats):
9658         * mail/feedmail.el (feedmail-mail-send-hook)
9659         (feedmail-mail-send-hook-queued):
9660         * mail/footnote.el (footnote-signature-separator):
9661         * mail/mailabbrev.el (mail-alias-separator-string)
9662         (mail-abbrev-mode-regexp):
9663         * mail/rmail.el (rmail-speedbar-match-folder-regexp):
9664         * progmodes/idlwave.el (idlwave-libinfo-file)
9665         (idlwave-default-completion-case-is-down)
9666         (idlwave-library-routines): Convert defvars to defcustoms.
9668         * mail/rmail.el (rmail-decode-mime-charset):
9669         * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
9670         (idlwave-shell-fix-inserted-breaks)
9671         (idlwave-shell-activate-alt-keybindings)
9672         (idlwave-shell-use-breakpoint-glyph):
9673         * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
9675 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9677         * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
9679 2012-05-03  Wilson Snyder  <wsnyder@wsnyder.org>
9681         * progmodes/verilog-mode.el (font-lock-keywords):
9682         Fix mis-highligting auto.  Reported by Craig Barner.
9683         (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
9684         defines from global name space.  Reported by Dan Dever.
9685         (verilog-auto-reset, verilog-auto-reset-widths)
9686         (verilog-auto-tieoff): Support using unbased numbers for
9687         AUTORESET and AUTOTIEOFF.
9688         (verilog-submit-bug-report): Update variable list.
9689         (verilog-read-auto-params): Fix AUTOINPUT regexps containing
9690         parenthesis from not matching.  Reported by Michael Rytting.
9691         (verilog-auto-template-lint): Fix hash error when linting modules
9692         with no used templates.
9693         (verilog-warn, verilog-warn-error)
9694         (verilog-warn-fatal): When non-interactive report multiple
9695         warnings before exiting.  Suggested by Brad Dobbie.
9696         (verilog-auto-template-lint, verilog-auto-template-warn-unused)
9697         (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
9698         to report unused template errors.  Reported by Brad Dobbie.
9699         (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
9700         nets, bug438.  Reported by Vns Blore.
9701         (verilog-auto-inout-module, verilog-auto-reg)
9702         (verilog-read-decls, verilog-read-sub-decls-sig)
9703         (verilog-signals-edit-wire-reg, verilog-signals-with):
9704         Fix passing of Verilog data types in ANSI input/output ports
9705         such as "output logic" into the AUTOs.  Special case "wire" and
9706         "reg" for backwards compatibility presuming Verilog 2001.
9707         (verilog-auto-ascii-enum): Add "auto enum" as alias.
9708         (verilog-preprocess): Fix replication of preprocess output.
9709         Reported by Brad Dobbie.
9710         (verilog-auto-inst-interfaced-ports):
9711         Create verilog-auto-inst-interfaced-ports, bug429.
9712         Reported by Julian Gorfajn.
9713         (verilog-after-save-font-hook)
9714         (verilog-before-save-font-hook): New variable.
9715         (verilog-modi-cache-results, verilog-save-font-mod-hooked)
9716         (verilog-save-font-mods): Wrap disabling fontification, reported
9717         by David Rogoff.
9718         (verilog-do-indent, verilog-pretty-declarations-auto)
9719         (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
9720         Reported by Pierre-David Pfister.
9721         (verilog-set-auto-endcomments): Fix endtask auto comments outside
9722         of class declarations, bug292.  Reported by Kevin Heilman.
9723         (verilog-read-decls): Fix 'parameter type' not appearing in
9724         AUTOINSTPARAM, bug340.  Reported by Jonathan Greenlaw.
9725         (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
9726         AUTOINPUTs, bug411.  Reported by Jonathan Greenlaw.
9727         (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
9728         Reported by David Kravitz.
9730 2012-05-03  Michael McNamara  <mac@mail.brushroad.com>
9732         * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
9733         assignment with tests in ifs and for loops.
9734         (verilog-extended-complete-re, verilog-complete-reg): Change so
9735         that DPI inport functions don't look like fuction declarations.
9736         (verilog-pretty-expr): Don't line up assignment
9737         operations to the test and increment in if and for loops
9738         (verilog-extended-complete-re, verilog-complete-reg): Change so
9739         that DPI inport functions don't look like fuction declarations.
9741 2012-05-03  Kenichi Handa  <handa@m17n.org>
9743         * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
9744         decoding, and show a warning message without signaling an error
9745         (Bug#11282).
9747 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9749         * emacs-lisp/bytecomp.el
9750         (byte-compile-file-form-custom-declare-variable): Compile all elements,
9751         since cconv.el might have introduced :fun-body, internal-make-closure,
9752         and friends for bytecomp to handle (bug#11391).
9753         * custom.el (defcustom): Avoid ((λ ..) ..).
9755 2012-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9757         * subr.el (read-passwd): Better clean after ourselves (bug#11392).
9759 2012-05-02  Juanma Barranquero  <lekktu@gmail.com>
9761         * notifications.el (dbus-debug):
9762         * term/linux.el (gpm-mouse-enable):
9763         * term/screen.el (xterm-register-default-colors): Declare.
9765 2012-05-02  Chong Yidong  <cyd@gnu.org>
9767         * cus-start.el (gc-cons-percentage, exec-suffixes)
9768         (dos-display-scancodes, dos-hyper-key, dos-super-key)
9769         (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
9770         (make-cursor-line-fully-visible, void-text-area-pointer)
9771         (font-list-limit): Add customization data.
9773         * allout.el (allout-exposure-change-functions)
9774         (allout-structure-added-functions)
9775         (allout-structure-deleted-functions)
9776         (allout-structure-shifted-functions): Rename abnormal hooks from
9777         *-hook, and convert to defcustoms.
9778         (allout-after-copy-or-kill-hook, allout-post-undo-hook):
9779         Convert to defcustoms.
9780         (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
9782         * allout-widgets.el: Hook callers changed.
9784 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
9786         * mail/rmail.el (rmail-yank-current-message): Use the encoding of
9787         the yanked message in preference to the default value of
9788         buffer-file-coding-system.
9790 2012-05-02  Martin Rudalics  <rudalics@gmx.at>
9792         * window.el (display-buffer--action-function-custom-type):
9793         Fix entry.
9795 2012-05-02  Alan Mackenzie  <acm@muc.de>
9797         * progmodes/cc-defs.el (c-version): Update to 5.32.3.
9799 2012-05-01  Glenn Morris  <rgm@gnu.org>
9801         * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
9803         * eshell/esh-cmd.el (eshell-debug-command): Doc fix.  Add :set.
9805         * cus-edit.el (custom-variable-documentation): Simplify with format.
9807 2012-05-01  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
9808             Stefan Monnier  <monnier@iro.umontreal.ca>
9810         * simple.el (suggest-key-bindings, execute-extended-command):
9811         Move from keyboard.c.
9813 2012-05-01  Chong Yidong  <cyd@gnu.org>
9815         * follow.el: Eliminate advice.
9816         (set-process-filter, process-filter, sit-for): Advice deleted.
9817         (follow-mode-off-hook): Obsolete hook removed.
9818         (follow-avoid-tail-recenter-p, follow-process-filter-alist):
9819         Vars deleted.
9820         (follow-auto): Use a :set function.
9821         (follow-mode): Rewritten.  Don't advise process filters.
9822         (follow-switch-to-current-buffer-all, follow-scroll-up)
9823         (follow-scroll-down): Assume follow-mode is bound.
9824         (follow-comint-scroll-to-bottom)
9825         (follow-align-compilation-windows): New functions.
9826         (follow--window-sorter): New function.
9827         (follow-all-followers): Use it to explicitly sort windows by their
9828         positions; don't make assumptions about next-window order.
9829         (follow-windows-start-end, follow-delete-other-windows-and-split)
9830         (follow-calc-win-start): Doc fix.
9831         (follow-windows-aligned-p, follow-select-if-visible): Don't call
9832         vertical-motion unnecessarily.
9833         (follow-adjust-window): New function.
9834         (follow-post-command-hook): Use it.
9835         (follow-call-set-process-filter, follow-call-process-filter)
9836         (follow-intercept-process-output, follow-tidy-process-filter-alist)
9837         (follow-stop-intercept-process-output, follow-generic-filter):
9838         Functions deleted.
9839         (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
9840         (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
9841         New functions, replacing advice on scroll-bar-* commands.
9842         (follow-mwheel-scroll): New function (Bug#4112).
9844         * comint.el (comint-adjust-point): New function.
9845         (comint-postoutput-scroll-to-bottom): Use it.
9846         Call follow-comint-scroll-to-bottom for Follow mode buffers.
9848 2012-05-01  Glenn Morris  <rgm@gnu.org>
9850         * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
9851         * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
9852         * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
9853         * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
9854         * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
9855         Remove no-byte-compile setting.
9857 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9859         * minibuffer.el (completion-table-with-quoting): Fix compatibility
9860         all-completions code to not return a number in the last cdr.
9862 2012-04-30  Leo Liu  <sdl.web@gmail.com>
9864         * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
9865         read-only error.
9867 2012-04-29  Chong Yidong  <cyd@gnu.org>
9869         * follow.el (follow-calc-win-end): Rewrite to handle partial
9870         screen lines correctly (Bug#8390).
9871         (follow-avoid-tail-recenter): Minor cleanup.
9873 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9875         Avoid the obsolete `assoc' package.
9876         * speedbar.el (speedbar-refresh): Avoid adelete.
9877         (speedbar-file-lists): Simplify and avoid aput.
9878         * man.el (Man--sections, Man--refpages): New vars, replacing
9879         Man-sections-alist and Man-refpages-alist.
9880         (Man-build-section-alist, Man-build-references-alist):
9881         Use them; avoid aput.
9882         (Man--last-section, Man--last-refpage): New vars.
9883         (Man-follow-manual-reference): Use them.
9884         Use the `default' arg of completing-read.
9885         (Man-goto-section): Idem.  Move prompt to the `interactive' spec.
9887 2012-04-27  Chong Yidong  <cyd@gnu.org>
9889         * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
9891         * startup.el (x-apply-session-resources): New function.
9893         * term/ns-win.el (ns-initialize-window-system):
9894         * term/w32-win.el (w32-initialize-window-system):
9895         * term/x-win.el (x-initialize-window-system): Use it to properly
9896         set menu-bar-mode and other vars from X resources, even if the
9897         initial frame is not a window-system frame (Bug#2299).
9899         * subr.el (read-key): Avoid running filter function when setting
9900         up temporary tool bar entries (Bug#9922).
9902 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
9904         * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
9905         (Bug#11344)
9907 2012-04-27  Chong Yidong  <cyd@gnu.org>
9909         * select.el (xselect--encode-string): New function, split from
9910         xselect-convert-to-string.
9911         (xselect-convert-to-string): Use it.
9912         (xselect-convert-to-filename, xselect-convert-to-os)
9913         (xselect-convert-to-host, xselect-convert-to-user): Ensure that
9914         returned strings are properly encoded (Bug#11315).
9916 2012-04-27  Chong Yidong  <cyd@gnu.org>
9918         * simple.el (delete-active-region): Move to killing custom group.
9920 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
9922         * progmodes/which-func.el (which-func-current): Quote %
9923         characters for mode-line processing.
9925 2012-04-27  Chong Yidong  <cyd@gnu.org>
9927         * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
9928         reaching eob (Bug#11286).
9930 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
9932         * progmodes/gdb-mi.el (gdb-control-level): New variable.
9933         (gdb): Make it buffer-local and init to zero.
9934         (gdb-control-commands-regexp): New variable.
9935         (gdb-send): Don't wrap in "-interpreter-exec console" if
9936         gdb-control-level is positive.  Increment gdb-control-level
9937         whenever the command matches gdb-control-commands-regexp, and
9938         decrement it each time the command is "end".  (Bug#11279)
9940 2012-04-27  Martin Rudalics  <rudalics@gmx.at>
9942         * window.el (adjust-window-trailing-edge, enlarge-window)
9943         (shrink-window, window-resize):
9944         * mouse.el (mouse-drag-line): Fix resizing of minibuffer
9945         windows (Bug#11276).
9947 2012-04-27  Chong Yidong  <cyd@gnu.org>
9949         * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
9950         fix "missing prefix" warning.  All callers changed.
9952 2012-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9954         * emacs-lisp/assoc.el: Move to obsolete/.
9956 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9958         * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
9960         * term/ns-win.el (ns-define-service):
9961         * progmodes/pascal.el (pascal-goto-defun):
9962         * progmodes/js.el (js--read-tab):
9963         * progmodes/etags.el (tags-lazy-completion-table):
9964         * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
9965         * emacs-lisp/ewoc.el (ewoc--wrap):
9966         * emacs-lisp/assoc.el (aput, adelete, amake):
9967         * doc-view.el (doc-view-convert-current-doc):
9968         * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
9970 2012-04-26  Chong Yidong  <cyd@gnu.org>
9972         * image.el (image-type-from-buffer): Only return supported image
9973         type (Bug#9045).
9975         * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
9976         value, for symmetry with diff-end-of-hunk.
9977         (diff-split-hunk, diff-find-source-location)
9978         (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
9979         (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
9980         (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
9981         compute the relevant hunk or file properly (Bug#6005).
9982         (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
9984 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9986         * vc/vc-mtn.el:
9987         * vc/vc-hg.el:
9988         * vc/vc-git.el:
9989         * vc/vc-dir.el:
9990         * vc/vc-cvs.el:
9991         * vc/vc-bzr.el:
9992         * vc/vc-arch.el:
9993         * vc/vc.el: Replace lexical-let by lexical-binding.
9994         * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
9995         * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
9996         * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
9998 2012-04-26  Chong Yidong  <cyd@gnu.org>
10000         * vc/diff-mode.el (diff-undo): New command (Bug#5302).
10001         (diff-mode-shared-map): Bind it to / and [remap undo].
10003         * vc/ediff-wind.el (ediff-setup-windows-default): New function.
10004         (ediff-window-setup-function): Use it as the default, to set up
10005         windows based on whether the current frame is graphical (Bug#2138).
10006         (ediff-choose-window-setup-function-automatically): Make obsolete.
10008         * vc/ediff-init.el: Always define ediff-pixel-width/height.
10010 2012-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10012         * ffap.el: Remove old code for obsolete package.
10013         (ffap-complete-as-file-p): Remove.
10015         Use completion-table-with-quoting for comint and pcomplete.
10016         * comint.el (comint--unquote&requote-argument)
10017         (comint--unquote-argument, comint--requote-argument): New functions.
10018         (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
10019         (comint-quote-filename): Use regexp-opt-charset.
10020         (comint--common-suffix, comint--common-quoted-suffix)
10021         (comint--table-subvert): Remove.
10022         (comint-unquote-function, comint-requote-function): New vars.
10023         (comint--complete-file-name-data): Use them with
10024         completion-table-with-quoting.
10025         * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
10026         * pcomplete.el (pcomplete-arg-quote-list)
10027         (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
10028         (pcomplete-unquote-argument-function): Default to non-nil.
10029         (pcomplete-unquote-argument): Simplify.
10030         (pcomplete--common-quoted-suffix): Remove.
10031         (pcomplete-requote-argument-function): New var.
10032         (pcomplete--common-suffix): New function.
10033         (pcomplete-completions-at-point): Use completion-table-with-quoting
10034         and completion-table-subvert.
10036         * minibuffer.el: Use completion-table-with-quoting for read-file-name.
10037         (minibuffer--double-dollars): Preserve properties.
10038         (completion--sifn-requote): New function.
10039         (completion--file-name-table): Rewrite using it and c-t-with-quoting.
10041         * minibuffer.el: Add support for completion of quoted/escaped data.
10042         (completion-table-with-quoting, completion-table-subvert): New funs.
10043         (completion--twq-try, completion--twq-all): New functions.
10044         (completion--nth-completion): New function.
10045         (completion-try-completion, completion-all-completions): Use it.
10047 2012-04-25  Leo Liu  <sdl.web@gmail.com>
10049         * progmodes/python.el (python-pdbtrack-get-source-buffer):
10050         Use compilation-message if available to find real filename.
10052 2012-04-25  Chong Yidong  <cyd@gnu.org>
10054         * vc/diff-mode.el (diff-setup-whitespace): New function.
10055         (diff-mode): Use it.
10057         * vc/diff.el (diff-sentinel):
10058         * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
10059         Whitespace mode variables based on diff style (Bug#8612).
10061 2012-04-25  Leo Liu  <sdl.web@gmail.com>
10063         * progmodes/python.el (python-send-region): Add suffix .py to the
10064         temp file.
10066         * files.el (auto-mode-alist): Use javascript-mode instead.
10068 2012-04-25  Alex Harsanyi  <AlexHarsanyi@gmail.com>
10070         Sync with soap-client repository.  Support SOAP simpleType (Bug#10331).
10072         * net/soap-client.el (soap-resolve-references-for-sequence-type)
10073         (soap-resolve-references-for-array-type): Hack to prevent self
10074         references, see Bug#9.
10075         (soap-parse-envelope): Report the contents of the 'detail' node
10076         when receiving a fault reply.
10077         (soap-parse-envelope): Report the contents of the entire 'detail' node.
10079         * net/soap-inspect.el (soap-sample-value-for-simple-type)
10080         (soap-inspect-simple-type): New function.
10082         * net/soap-client.el (soap-simple-type): New struct.
10083         (soap-default-xsd-types, soap-default-soapenc-types)
10084         (soap-decode-basic-type, soap-encode-basic-type):
10085         support unsignedInt and double basic types.
10086         (soap-resolve-references-for-simple-type)
10087         (soap-parse-simple-type, soap-encode-simple-type): New function.
10088         (soap-parse-schema): Parse xsd:simpleType declarations.
10090         * net/soap-client.el (soap-default-xsd-types)
10091         (soap-default-soapenc-types): Add integer, byte and anyURI types.
10092         (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
10093         the local name of "soapenc:Array".
10094         (soap-decode-basic-type, soap-encode-basic-type): Support encoding
10095         decoding integer, byte and anyURI xsd types.
10097 2012-04-25  Chong Yidong  <cyd@gnu.org>
10099         * cus-edit.el (custom-buffer-create-internal): Update header text.
10101 2012-04-25  Eli Zaretskii  <eliz@gnu.org>
10103         * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
10104         settings on 'system-type', not on 'window-system'.  On MS-Windows,
10105         set interactive-mode on in GDB.
10107 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10109         * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
10110         (ruby-syntax-propertize-regexp): Remove.
10111         (ruby-syntax-propertize-function): Split regexp into chunks.
10112         Match following code directly.
10114 2012-04-24  Dmitry Gutov  <dgutov@yandex.ru>
10116         * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
10117         (ruby-syntax-propertize-regexp): New function.
10118         (ruby-syntax-propertize-function): Use it to handle regexp not preceded
10119         by a special keyword.
10121         * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
10122         (ruby-syntax-general-delimiters-goto-beg)
10123         (ruby-syntax-propertize-general-delimiters): New functions.
10124         (ruby-syntax-propertize-function): Use them to handle GDL.
10125         (ruby-font-lock-keywords): Move old handling of GDL...
10126         (ruby-font-lock-syntactic-keywords): .. to here.
10127         (ruby-calculate-indent): Adjust indentation for GDL.
10129 2012-04-24  Michael Albinus  <michael.albinus@gmx.de>
10131         * notifications.el (top): Remove unneeded declarations.
10132         (notifications-specification-version): Change to "1.2".
10133         (notifications-interface, notifications-notify-method)
10134         (notifications-close-notification-method): Fix docstring.
10135         (notifications-get-capabilities-method): New defconst.
10136         (notifications-notify): Add :action-items, :resident and
10137         :transient hints.  Change "image_data" to "image-data" and
10138         "image_path" to "image-path".
10139         (notifications-get-capabilities): New defun.
10141 2012-04-24  Leo Liu  <sdl.web@gmail.com>
10143         * progmodes/python.el: Move hideshow setup to the end.
10145 2012-04-24  Martin Rudalics  <rudalics@gmx.at>
10147         * window.el (handle-select-window): Clear echo area since this is
10148         no more done by read_char (Bug#11304).
10150 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10152         * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
10153         and `/ M' to filter-derived-mode.
10154         * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
10155         (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
10156         (ibuffer-mark-by-mode): Use default rather than initial-input.
10157         (ibuffer-filter-by-derived-mode): Autoload and require-match.
10159 2012-04-24  Ivan Andrus  <darthandrus@gmail.com>  (tiny change)
10161         * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
10162         (ibuffer-filter-by-derived-mode): New filter.
10163         * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
10165 2012-04-23  Andreas Politz  <politza@fh-trier.de>
10167         * subr.el (accept-change-group): Fix arg usage (Bug#6095).
10169 2012-04-23  Chong Yidong  <cyd@gnu.org>
10171         * cus-edit.el (customize-apropos, customize-apropos-options):
10172         Disable matching of non-option variables (Bug#11176).
10173         (customize-option, customize-option-other-window)
10174         (customize-changed-options): Doc fix.
10175         (customize-apropos-options, customize-apropos-faces)
10176         (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
10178         * apropos.el (apropos-read-pattern): Make prompt less cryptic.
10179         Fix word list splitting (Bug#11132).
10180         (apropos-symbol, apropos-keybinding, apropos-label)
10181         (apropos-property, apropos-function-button)
10182         (apropos-variable-button, apropos-misc-button): New faces.
10183         (apropos-symbol-face, apropos-keybinding-face)
10184         (apropos-label-face, apropos-property-face, apropos-match-face):
10185         Variables removed (Bug#8396).
10186         (apropos-library-button, apropos-format-plist, apropos-print)
10187         (apropos-print-doc, apropos-describe-plist): Callers changed.
10189 2012-04-23  Michael Albinus  <michael.albinus@gmx.de>
10191         * net/xesam.el (xesam-mode-map): Use let-bound map in
10192         initialization.  (Bug#11292)
10194 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
10196         Preserve ispell session localwords when switching back to
10197         original buffer.
10199         * textmodes/ispell.el (ispell-buffer-session-localwords):
10200         New buffer-local variable to hold buffer session localwords.
10201         (ispell-kill-ispell): Add option 'clear to delete session
10202         localwords.
10203         (ispell-command-loop, ispell-change-dictionary)
10204         (ispell-buffer-local-words): Preserve session localwords when
10205         needed.
10207         * textmodes/flyspell.el (flyspell-process-localwords)
10208         (flyspell-do-correct): Preserve session localwords when needed.
10210 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
10212         * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
10213         using obsolete `translation-table-for-input'.
10214         (ispell-word, ispell-process-line, ispell-complete-word):
10215         Use plain `insert' instead of removed `ispell-insert-word'.
10217 2012-04-22  Chong Yidong  <cyd@gnu.org>
10219         * cus-edit.el (custom-variable-menu)
10220         (custom-variable-reset-saved, custom-face-menu)
10221         (custom-face-reset-saved): If there is no saved value, make the
10222         "reset-saved" operation bring back the default (Bug#9509).
10223         (custom-face-state): Properly detect themed faces.
10225         * faces.el (face-spec-set): Stop supporting deprecated form of
10226         third arg.
10228 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
10230         Move functions from C to Lisp.  Make non-blocking method calls
10231         the default.  Implement further D-Bus standard interfaces.
10233         * net/dbus.el (dbus-message-internal): Declare function.
10234         Remove unneeded function declarations.
10235         (defvar dbus-message-type-invalid, dbus-message-type-method-call)
10236         (dbus-message-type-method-return, dbus-message-type-error)
10237         (dbus-message-type-signal): Declare variables.  Remove local
10238         definitions.
10239         (dbus-interface-dbus, dbus-interface-peer)
10240         (dbus-interface-introspectable, dbus-interface-properties)
10241         (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
10242         Adapt docstring.
10243         (dbus-interface-objectmanager): New defconst.
10244         (dbus-call-method, dbus-call-method-asynchronously)
10245         (dbus-send-signal, dbus-method-return-internal)
10246         (dbus-method-error-internal, dbus-register-service)
10247         (dbus-register-signal, dbus-register-method): New defuns, moved
10248         from dbusbind.c
10249         (dbus-call-method-handler, dbus-setenv)
10250         (dbus-get-all-managed-objects, dbus-managed-objects-handler):
10251         New defuns.
10252         (dbus-call-method-non-blocking): Make it an obsolete function.
10253         (dbus-unregister-object, dbus-unregister-service)
10254         (dbus-handle-event, dbus-register-property)
10255         (dbus-property-handler): Obey the new structure of
10256         `bus-registered-objects'.
10257         (dbus-introspect): Use `dbus-call-method'.  Use a timeout.
10258         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
10259         Use `dbus-call-method'.
10261 2012-04-22  Chong Yidong  <cyd@gnu.org>
10263         * cus-edit.el (custom-commands, custom-reset-menu)
10264         (Custom-reset-standard): Tweak labels.
10265         (custom-reset-button-menu): Change default to t.
10266         (custom-buffer-create-internal): For the custom-reset-button-menu
10267         case, put the revert button first.
10268         (custom-group-subtitle): New face.
10269         (custom-group-value-create): Align docstring to a specific column.
10271         * wid-edit.el (widget-documentation-link-add): Don't handle
10272         indentation in this function.
10273         (widget-documentation-string-indent-to): New function.
10274         (widget-documentation-string-value-create): Use it.
10276         * autorevert.el (auto-revert):
10277         * epg-config.el (epg):
10278         * ibuffer.el (ibuffer):
10279         * mpc.el (mpc):
10280         * ses.el (ses):
10281         * eshell/eshell.el (eshell):
10282         * net/ange-ftp.el (ange-ftp):
10283         * progmodes/ebnf2ps.el (postscript):
10284         * progmodes/flymake.el (flymake):
10285         * progmodes/prolog.el (prolog):
10286         * progmodes/verilog-mode.el (verilog-mode):
10287         * progmodes/which-func.el (which-func):
10288         * term/xterm.el (xterm):
10289         * textmodes/picture.el (picture):
10290         * textmodes/tildify.el (tildify):
10291         * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
10292         customization buffers.
10294 2012-04-22  Alan Mackenzie  <acm@muc.de>
10296         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
10297         Adding a ) can hide the resulting (..) from searches.  Fix it.
10298         Bound the backward search to the position of the existing (.
10300 2012-04-21  Juanma Barranquero  <lekktu@gmail.com>
10302         * progmodes/verilog-mode.el (verilog-mode): Check whether
10303         which-func-modes is t before adding verilog-mode.
10304         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
10306 2012-04-21  Leo Liu  <sdl.web@gmail.com>
10308         * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
10310 2012-04-21  Michael Vehrs  <Michael.Burschik@gmx.de>
10312         * woman.el: Add support for "T{ T}" tbl syntax, and fix the
10313         filling of the last column of a table (Bug#5635).
10314         (woman-find-next-control-line): New arg, specifying an additional
10315         regexp component for the control line.
10316         (woman2-roff-buffer): Use it.
10317         (woman-break-table): New function.
10318         (woman2-TS): Use it.
10320 2012-04-21  Chong Yidong  <cyd@gnu.org>
10322         * woman.el (woman-set-buffer-display-table, woman-decode-region)
10323         (woman-horizontal-escapes, woman-negative-vertical-space)
10324         (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
10325         (WoMan-warn-ignored): Use ?\s instead of ?\ .
10327 2012-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10329         * minibuffer.el (completion-file-name-table): Complete user names.
10331 2012-04-20  Leo Liu  <sdl.web@gmail.com>
10333         * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
10334         and pcase-let*.
10336 2012-04-20  Chong Yidong  <cyd@gnu.org>
10338         * server.el (server-execute): Respect initial-buffer-choice if it
10339         is a string and there are no files to open (Bug#2825).
10340         (server-create-window-system-frame, server-create-tty-frame):
10341         Don't switch buffers here.
10342         (server-process-filter): Only try to open a window system frame if
10343         compiled with graphical support (Bug#8314).
10345 2012-04-20  Dan Nicolaescu  <dann@gnu.org>
10347         * battery.el (battery-echo-area-format): Display remaining time
10348         for sysfs backend too (Bug#11269).
10349         (battery-linux-sysfs): Fix conditional for the charge.
10351 2012-04-20  Chong Yidong  <cyd@gnu.org>
10353         * progmodes/gdb-mi.el (gdb): Revert previous change.
10354         (gdb-inferior-io--init-proc): New function.
10355         (gdb-init-1): Use it.
10356         (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
10357         responsible for allocating a new pty and hooking it to gdb when
10358         the old pty gets an EIO due to process exit.
10359         (gdb-delchar-or-quit): New command.  Bind it in gdb-mi buffers.
10360         (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
10361         (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
10363 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
10365         * window.el (window-min-size, window-sizable, window-min-delta)
10366         (window-max-delta, window--resizable, window-resizable)
10367         (window-total-size, window-full-height-p, window-full-width-p)
10368         (window-in-direction, window--resize-mini-window, window-resize)
10369         (window--resize-child-windows-normal)
10370         (window--resize-child-windows, window--resize-siblings)
10371         (window--resize-this-window, adjust-window-trailing-edge)
10372         (enlarge-window, shrink-window): Doc fixes.
10374 2012-04-20  Chong Yidong  <cyd@gnu.org>
10376         * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
10377         New function to call delete-process on the gdb-inferior buffer's pty.
10378         (gdb-reset): Use it, instead of relying on kill-buffer to kill the
10379         pty process (Bug#11273).
10380         (gdb-update): New arg to suppress talking to the gdb process.
10381         (gdb-done-or-error): Use it.
10382         (gdb-stopped-functions): Rename from gdb-stopped-hooks.
10383         (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
10384         sentinel not being called.
10386         * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
10388         * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
10390 2012-04-20  Glenn Morris  <rgm@gnu.org>
10392         * net/network-stream.el (open-network-stream): Doc fix.
10394 2012-04-20  Chong Yidong  <cyd@gnu.org>
10396         * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
10398 2012-04-20  Alan Mackenzie  <acm@muc.de>
10400         Ensure searching for keywords is case sensitive.
10402         * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
10403         (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
10404         (c-defun-name, c-mark-function, c-cpp-define-name)
10405         (c-comment-indent, c-scan-conditionals, c-indent-defun)
10406         (c-context-line-break): Bind case-fold-search to nil.
10408         * progmodes/cc-mode.el (c-font-lock-fontify-region):
10409         Bind case-fold-search to nil.
10411 2012-04-20  Chong Yidong  <cyd@gnu.org>
10413         * mail/sendmail.el (mail-bury): Call return action with the right
10414         Rmail buffer (Bug#11242).
10416         * server.el (server-process-filter): Handle corner case where both
10417         tty and nowait options are present (Bug#11102).
10419 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
10421         * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
10422         (top level): Put into the executable the ident-style '$Id:' tag on
10423         windows-nt as well.
10425 2012-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10427         * electric.el (electric-indent-post-self-insert-function): Check that
10428         electric-indent-mode is enabled in current buffer.
10430 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
10432         * imenu.el (imenu-progress-message): Restore; it is "used" in
10433         erc/erc-imenu.el and net/snmp-mode.el.
10435 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
10437         * avoid.el (mouse-avoidance-mode): Mark unused arg.
10438         (mouse-avoidance-nudge-mouse): Remove unused binding.
10440         * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
10442         * descr-text.el (describe-char):
10443         * progmodes/python.el (python-describe-symbol):
10444         Don't call `toggle-read-only', set `buffer-read-only'.
10446         * imenu.el (imenu-default-goto-function): Mark unused args.
10447         (imenu-progress-message): Remove obsolete macro; all callers changed.
10449         * subr.el (keymap-canonicalize): Remove unused binding.
10450         (read-passwd): Mark unused arg.
10452         * tutorial.el (tutorial--display-changes): Remove unused binding.
10453         (tutorial--save-tutorial-to): Remove unused variable.
10455         * emacs-lisp/package.el (define-package, package-menu-mark-delete)
10456         (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
10457         (package-generate-autoloads, package-menu--generate)
10458         (package-menu--find-upgrades): Remove unused bindings.
10460         * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
10461         (cua-restrict-prefix-rectangle): Doc fixes.  Remove unused bindings.
10462         (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
10463         (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
10464         (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
10465         (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
10466         (cua--rectangle-aux-replace, cua--left-fill-rectangle)
10467         (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
10468         (cua-delete-char-rectangle): Mark unused args.
10469         (cua-align-rectangle): Remove unused binding.
10471         * mail/rmail.el (compilation--message->loc)
10472         (epa--find-coding-system-for-mime-charset): Declare.
10474         * net/dbus.el (dbus-register-service): Declare.
10475         (dbus-name-owner-changed-handler): Remove unused binding.
10477         * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
10478         (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
10479         (nxml-scan-backward-within): Mark unused arg.
10480         (nxml-dynamic-markup-word): Remove unused binding.
10482         * mouse.el (mouse-menu-major-mode-map):
10483         * emacs-lisp/authors.el (authors-scan-change-log)
10484         (authors-add-to-author-list):
10485         * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
10486         * emacs-lisp/smie.el (smie-auto-fill):
10487         * mail/sendmail.el (mail-bury):
10488         * mail/unrmail.el (unrmail):
10489         * net/tls.el (open-tls-stream):
10490         * textmodes/picture.el (picture-mouse-set-point):
10491         Remove unused bindings.
10493 2012-04-19  Michael Albinus  <michael.albinus@gmx.de>
10495         * net/tramp.el (tramp-action-password): Let-bind
10496         `enable-recursive-minibuffers' to t.
10498 2012-04-18  Sam Steingold  <sds@gnu.org>
10500         * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
10501         instead of 'string to accommodate values like [f11].
10502         Always use `vconcat' instead of `concat' on it, like in `gud-def'.
10503         * progmodes/gdb-mi.el: Likewise.
10505 2012-04-18  Leo Liu  <sdl.web@gmail.com>
10507         * abbrev.el (edit-abbrevs): Move point to the abbrev table of
10508         current buffer.
10509         (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
10510         LOCAL is nil.
10512 2012-04-18  Chong Yidong  <cyd@gnu.org>
10514         * simple.el (line-move): Use forward-line if in batch mode
10515         (Bug#11053).
10517 2012-04-18  Christopher Schmidt  <christopher@ch.ristopher.com>
10519         * files.el (after-find-file): Do not try to add a final newline if
10520         the buffer is read-only (Bug#11156).
10522 2012-04-17  Richard Stallman  <rms@gnu.org>
10524         * mail/rmail.el (rmail-start-mail):
10525         Pass (rmail-mail-return...) for the return-action.
10526         Pass (rmail-yank-current-message...) for the yank-action.
10527         (rmail-yank-current-message): New function.
10528         (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
10529         (rmail-reply): Likewise.
10530         (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
10532         * mail/sendmail.el (mail-bury): Choose the first rmail-mode
10533         buffer, not the last.  Reject temp buffers.  Use the rmail-mode
10534         buffer, not newbuf.
10536 2012-04-17  Juanma Barranquero  <lekktu@gmail.com>
10538         * server.el (server-ensure-safe-dir): Simplify.
10540 2012-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10542         * emacs-lisp/smie.el: Provide smarter auto-filling.
10543         (smie-auto-fill): New function.
10544         (smie-setup): Use it.
10546         * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
10548 2012-04-17  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
10550         * newcomment.el (comment-inline-offset): New custom var (bug#11090).
10551         (comment-indent): Use it.
10553 2012-04-17  Vincent Belaïche  <vincentb1@users.sourceforge.net>
10555         * ses.el: The overall change is to add cell renaming, that is
10556         setting fancy names for cell symbols other than name matching
10557         "\\`[A-Z]+[0-9]+\\'" regexp .
10558         (ses-localvars): Add ses--renamed-cell-symb-list.
10559         (ses-create-cell-variable): New defun.
10560         (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
10561         (ses-relocate-formula): Relocate formulas only for cells the
10562         symbols of which are not renamed, i.e. symbols whose names do not
10563         match regexp "\\`[A-Z]+[0-9]+\\'".
10564         (ses-relocate-all): Relocate values only for cells the symbols of
10565         which are not renamed.
10566         (ses-load): Create cells variables as the (ses-cell ...) are read,
10567         in order to check row col consistency with cell symbol name only
10568         for cells that are not renamed.
10569         (ses-replace-name-in-formula): New defun.
10570         (ses-rename-cell): New defun.
10572 2012-04-17  Peter Oliver  <bzr@mavit.org.uk>  (tiny change)
10574         * progmodes/perl-mode.el (perl-indent-parens-as-block):
10575         New option (bug#11118).
10576         (perl-calculate-indent): Respect it.
10578 2012-04-17  Glenn Morris  <rgm@gnu.org>
10580         * dired-aux.el (dired-mark-read-string): Doc fix.
10582 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
10584         * dired-aux.el (dired-mark-read-string): Offer optional completion.
10585         (dired-do-chxxx): Complete chown, chgrp over users, groups.  (Bug#7900)
10587 2012-04-17  Glenn Morris  <rgm@gnu.org>
10589         * mouse.el (mouse-drag-track):
10590         * speedbar.el (speedbar-frame-mode):
10591         Use auto-hscroll-mode rather than the alias automatic-hscrolling.
10593 2012-04-16  Leo Liu  <sdl.web@gmail.com>
10595         * progmodes/python.el: Trivial cleanup.
10597 2012-04-16  Glenn Morris  <rgm@gnu.org>
10599         * vc/vc.el (vc-string-prefix-p):
10600         * vc/pcvs-util.el (cvs-string-prefix-p):
10601         * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
10602         * mpc.el (mpc-string-prefix-p):
10603         Make all of these into obsolete aliases for string-prefix-p.
10604         Update callers.
10605         * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
10607         * textmodes/two-column.el: Move custom options to the start.
10608         (frame-width): Remove compat definition.
10609         (2C-associate-buffer, 2C-dissociate):
10610         Use with-current-buffer rather than save-excursion.
10611         (2C-dissociate): Force a mode-line update.
10612         (2C-autoscroll): Use ignore-errors.
10614         * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
10615         Autoload trivia.
10617         * emacs-lisp/cl-extra.el (*random-state*):
10618         Remove unnecessary declaration.
10620         * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
10622         * play/cookie1.el (cookie-snarf):
10623         Give an explicit error if input file cannot be read.
10625         * play/yow.el (yow-file): Use expand-file-name rather than concat.
10627         * progmodes/perl-mode.el (c-macro-expand):
10628         Remove unnecessary autoload (it is in loaddefs.el).
10630         * textmodes/picture.el (picture-desired-column)
10631         (picture-update-desired-column): Convert comments to doc-strings.
10632         (picture-substitute): Remove function.
10633         (picture-mode-map): Initialize in the defvar.
10635         * woman.el: Remove eval-after-load for tar-mode.
10636         * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
10637         (woman-tar-extract-file): Autoload it.
10639         * frame.el (automatic-hscrolling): Make this alias obsolete.
10641 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
10643         * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
10644         `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
10645         (ispell-dictionary-base-alist): Revert to original XEmacs
10646         friendly version for default.  [:alpha:] will be added in
10647         `ispell-set-spellchecker-params' if needed.
10649 2012-04-16  Chong Yidong  <cyd@gnu.org>
10651         * image.el (imagemagick--file-regexp): New variable.
10652         (imagemagick-register-types): Use it.
10653         (imagemagick-types-inhibit): Add :set function.  Allow new value
10654         of t to inhibit all types.
10656         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
10657         so we can preload it.
10659         * loadup.el (fboundp): Preload regexp-opt, needed by
10660         imagemagick-register-types.
10662 2012-04-15  Chong Yidong  <cyd@gnu.org>
10664         * frame.el (scrolling): Remove nearly unused customization group.
10666         * scroll-all.el (scroll-all-mode): Move to windows group.
10668 2012-04-15  Chong Yidong  <cyd@gnu.org>
10670         * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
10672 2012-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10674         Avoid the use of ((lambda ...) ...) in lexical-binding code.
10675         * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
10677 2012-04-15  Glenn Morris  <rgm@gnu.org>
10679         * simple.el (process-file-side-effects): Doc fix.
10681 2012-04-15  Glenn Morris  <rgm@gnu.org>
10683         * international/mule-cmds.el (set-language-environment): Doc fix.
10685 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
10687         * server.el (server-auth-key, server-generate-key): Doc fixes.
10688         (server-get-auth-key): Doc fix.  Use `string-match-p'.
10689         (server-start): Reflow docstring.
10691 2012-04-14  Lars Ingebrigtsen  <larsi@gnus.org>
10693         * server.el (server-generate-key): `called-interactively-p'
10694         requires a parameter.
10696 2012-04-14  Michal Nazarewicz  <mina86@mina86.com>
10698         * server.el (server-auth-key): New variable.
10699         (server-generate-key, server-get-auth-key): New function.
10700         (server-start): Use the new variable and functions to allow
10701         setting a permanent server key (bug#9423).
10703 2012-04-14  Leo Liu  <sdl.web@gmail.com>
10705         * vc/diff-mode.el (diff-file-prev/next): Fix typo.
10707 2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
10709         Spelling fixes.
10710         * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
10711         Emacs uses American spelling.
10713 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
10715         * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
10716         (emacs-lock--exit-locked-buffer): Return the locked buffer.  Doc fix.
10717         (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
10718         (emacs-lock--kill-buffer-query-functions): Run new hook.  (Bug#11017)
10720 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10722         * progmodes/which-func.el (which-func-modes): Change default.
10724 2012-04-14  Kim F. Storm  <storm@cua.dk>
10726         * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
10727         exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
10729 2012-04-14  Chong Yidong  <cyd@gnu.org>
10731         * custom.el (custom-theme-set-variables): Doc fix.
10733 2012-04-14  Glenn Morris  <rgm@gnu.org>
10735         * international/mule.el (set-auto-coding-for-load): Doc fix.
10737 2012-04-14  Alan Mackenzie  <acm@muc.de>
10739         * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
10740         imenu work again for Objective C Mode.  Correct the *-index values,
10741         these having been disturbed by a previous change in 2011-08.
10743         * progmodes/cc-engine.el (c-before-change-check-<>-operators):
10744         Correct two search limits.
10746 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10748         * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
10750 2012-04-14  Andreas Schwab  <schwab@linux-m68k.org>
10752         * international/characters.el: Fix sorting.
10754 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
10756         * international/characters.el: Add more missing Latin case pairs.
10758 2012-04-14  Glenn Morris  <rgm@gnu.org>
10760         * files.el (dir-locals-set-class-variables): Doc fix.
10762 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
10764         * international/characters.el: Add set-case-syntax-pair call for
10765         LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
10766         counterpart.  (Bug#11209)
10768         * simple.el (shell-command-on-region): Doc fix.  (Bug#11208)
10770 2012-04-14  Glenn Morris  <rgm@gnu.org>
10772         * calendar/holidays.el (calendar-check-holidays): Doc fix.
10774 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
10776         * textmodes/ispell.el (ispell-dictionary-base-alist):
10777         Add data for Hebrew.
10779 2012-04-14  Chong Yidong  <cyd@gnu.org>
10781         * net/rcirc.el (rcirc-cmd-quit):
10782         Revert 2012-03-18 change (Bug#11192).
10784 2012-04-14  Glenn Morris  <rgm@gnu.org>
10786         * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
10788 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
10790         * minibuffer.el (completion-in-region-mode-map):
10791         Bind completion-help-at-point to M-? rather than ?.  (Bug#11182)
10793 2012-04-13  Vivek Dasmohapatra  <vivek@etla.org>
10795         * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
10797 2012-04-13  Masatake YAMATO  <yamato@redhat.com>
10799         * minibuffer.el (minibuffer-local-filename-syntax): New variable
10800         to allow `C-M-f' and `C-M-b' to move to the nearest path
10801         separator (bug#9511).
10803 2012-04-13  Lars Ingebrigtsen  <larsi@gnus.org>
10805         * avoid.el: Require cl when compiling.  And also move the
10806         `provide' to the end.
10808 2012-04-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10810         * avoid.el (mouse-avoidance-banish-position): New variable.
10811         (mouse-avoidance-banish-destination): Use it (bug#10165).
10813 2012-04-13  Leo Liu  <sdl.web@gmail.com>
10815         * progmodes/which-func.el (which-func-modes): Add objc-mode.
10817 2012-04-13  Ken Brown  <kbrown@cornell.edu>
10819         * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
10820         this is no longer needed now that cygstart understands file:// URLs.
10821         (browse-url-filename-alist): For the same reason, don't modify
10822         file:// URLs on Cygwin.
10824 2012-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10826         * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
10827         the region on shift if the binding is already shifted (bug#11221).
10829 2012-04-12  Glenn Morris  <rgm@gnu.org>
10831         * mail/mailpost.el: Move to obsolete/.
10833 2012-04-12  Drew Adams  <drew.adams@oracle.com>
10835         * imenu.el (imenu--generic-function): Ignore invisible definitions
10836         (bug#10123).
10838 2012-04-12  Vivek Dasmohapatra  <vivek@etla.org>
10840         * hexl.el (hexl-bits): New variable.
10841         (hexl-options): Mention the variable in the doc string.
10842         (hexl-rulerise, hexl-line-displen): New functions.
10843         (hexl-mode): Mention the new variable.
10844         (hexl-mode, hexl-current-address, hexl-current-address):
10845         Use the displen.
10846         (hexl-ascii-start-column): New function.
10847         (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
10848         (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
10850 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
10852         * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
10853         '("-i" ENCODING), in 2 separate command-line arguments, to specify
10854         the encoding, as expected by hunspell.
10856 2012-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10858         * battery.el (battery--linux-sysfs-regexp): New const.
10859         (battery-status-function): Use it.  Remove yeeloong special case.
10860         (battery-yeeloong-sysfs): Remove.
10861         (battery-echo-area-format): Remove yeeloong special case.
10863 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10865         * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
10866         Reported by Noah Friedman.
10868         * subr.el (read-passwd): Use read-string.
10870 2012-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10872         * vcursor.el (vcursor-move): Increase the priority of the overlay
10873         (bug#9663).
10875 2012-04-11  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
10877         * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
10878         (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
10880 2012-04-11  William Stevenson  <yhvh2000@gmail.com>
10882         * textmodes/artist.el (artist-mode): Convert artist-mode to use
10883         define-minor-mode (bug#10760).
10885 2012-04-11  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
10887         * progmodes/grep.el (rgrep): Tweak the find command line so
10888         that directories matching `grep-find-ignored-files' won't be
10889         pruned (bug#10351).
10891 2012-04-11  Chong Yidong  <cyd@gnu.org>
10893         * startup.el (command-line): Remove support for long-obsolete
10894         variable font-lock-face-attributes.
10896 2012-04-11  Glenn Morris  <rgm@gnu.org>
10898         * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
10900 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10902         * window.el (window--state-get-1): Obey window-point-insertion-type.
10904 2012-04-11  Lennart Borgman  <lennart.borgman@gmail.com>
10906         * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
10907         to previous function when point is on the first character of a
10908         function.  Take care of that in `narrow-to-defun' (bug#6157).
10910 2012-04-11  Glenn Morris  <rgm@gnu.org>
10912         * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
10913         not just file-errors.
10915         * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
10916         (vc-bzr-sha1): Use internal sha1.
10918 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10920         * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
10922 2012-04-10  Sébastien Gross  <seb@chezwam.org>  (tiny change)
10924         * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
10925         that start in the middle of the line (bug#10496).
10927 2012-04-10  Dan Nicolaescu  <dann@gnu.org>
10929         * battery.el (battery-linux-proc-acpi): Only one battery is
10930         discharged at a time, but that seems to confuse battery.el when
10931         computing `rate-type' for the battery not being discharged
10932         (bug#10332).
10934 2012-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10936         * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
10938         * international/quail.el: Use dolist and simplify.
10939         (quail-define-package, quail-update-keyboard-layout)
10940         (quail-define-rules): Use dolist.
10941         (quail-insert-kbd-layout, quail-get-translation): CSE.
10943         * tmm.el: Use dolist, remove left over hook.
10944         (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
10945         Use dolist.
10946         (calendar-load-hook): Don't mess with it.
10948         * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
10949         Use derived-mode-p.  Run the diff asynchronously.
10951 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10953         * obsolete/mouse-sel.el: Add an Obsolete-since header.
10955 2012-04-10  Juanma Barranquero  <lekktu@gmail.com>
10957         * misc.el: Display absolute path of loaded DLLs (bug#10424).
10958         (list-dynamic-libraries--loaded): New function.
10959         (list-dynamic-libraries--refresh): Use it.
10961 2012-04-10  Nathan Weizenbaum  <nweiz@google.com>
10963         * progmodes/python.el (python-fill-paragraph):
10964         Make python-fill-region in a multiline string work when font-lock is
10965         disabled (bug#7018).
10967 2012-04-10  Laimonas Vėbra  <laimonas.vebra@gmail.com>  (tiny change)
10969         * language/european.el (cp775): Add oem/legacy (en)coding on
10970         DOS/MS Windows for the Baltic languages.  There are still plenty
10971         of texts written in this encoding/codepage (bug#6519).
10973 2012-04-10  Glenn Morris  <rgm@gnu.org>
10975         * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
10976         Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
10978 2012-04-10  Florian Adamsky  <florian@adamsky.it>  (tiny change)
10980         * recentf.el (recentf-dialog-mode-map): Add two keybindings for
10981         next-line "n" and previous-line "p" in order to make recentf more
10982         consistent with ibuffer, dired or org-mode (bug#9387).
10984 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10986         * image.el (put-image): Return the overlay created instead of the
10987         optional input string (bug#7834).  Note that this may break code
10988         that is (for some reason or other) depending on `put-image'
10989         returning the string.
10991         * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
10993         * simple.el (zap-to-char): Allow zapping using input methods
10994         (bug#1580).
10996         * textmodes/fill.el (fill-region): Leave point and mark where they
10997         were before filling (bug#5399).
10999 2012-04-09  Glenn Morris  <rgm@gnu.org>
11001         * version.el (emacs-bzr-get-version):
11002         Handle lightweight checkouts of local branches.
11004 2012-04-09  Andreas Schwab  <schwab@linux-m68k.org>
11006         * international/characters.el: Recover lost case pairs.  (Bug#11209)
11008 2012-04-09  Chong Yidong  <cyd@gnu.org>
11010         * custom.el (custom-variable-p): Return nil for non-symbol
11011         arguments instead of signaling an error.
11012         (user-variable-p): Obsolete alias for custom-variable-p.
11014         * apropos.el (apropos-variable):
11015         * files-x.el (read-file-local-variable):
11016         * simple.el (set-variable):
11017         * woman.el (woman-mini-help):
11018         * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
11020 2012-04-09  Glenn Morris  <rgm@gnu.org>
11022         * startup.el (normal-top-level): Don't look for leim-list.el
11023         in places where it will not be found.  (Bug#910)
11025         * international/mule-cmds.el (set-default-coding-systems):
11026         * files.el (normal-mode):
11027         Remove guarded calls to ucs-set-table-for-input.  (Bug#9821)
11028         This function was removed with ucs-tables.el in 2008.
11030 2012-04-08  Eli Zaretskii  <eliz@gnu.org>
11032         * textmodes/ispell.el (ispell-check-version): For hunspell, set
11033         ispell-encoding8-command to "-i", without a trailing space.
11034         (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
11035         separate command-line arguments, to specify the encoding, since
11036         that's how hunspell expects it.
11038 2012-04-08  Glenn Morris  <rgm@gnu.org>
11040         * loadup.el: Load bindings before cus-start.
11041         This reduces somewhat the number of "rogue" settings in emacs -Q.
11043 2012-04-07  Glenn Morris  <rgm@gnu.org>
11045         * version.el (emacs-bzr-get-version): New function.
11046         (emacs-bzr-version): New variable.
11047         * loadup.el (emacs-bzr-version): Set it.  (Bug#8054)
11048         * mail/emacsbug.el (report-emacs-bug): Include bzr version.
11050 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
11052         * international/uni-bidi.el, international/uni-category.el:
11053         * international/uni-combining.el, international/uni-decimal.el:
11054         * international/uni-decomposition.el, international/uni-digit.el:
11055         * international/uni-lowercase.el, international/uni-mirrored.el:
11056         * international/uni-name.el, international/uni-numeric.el:
11057         * international/uni-titlecase.el, international/uni-uppercase.el:
11058         Update for Unicode 6.1.
11060 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
11062         * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
11064 2012-04-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11066         * window.el (shrink-window): Mention the `window-min-height'
11067         variable in the doc string.
11069 2012-04-05  Bastien Guerry  <bzg@altern.org>
11071         * color.el (color-lighten-name): Fix typo.
11073 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11075         * server.el (server--on-display-p): New function.
11076         (server--on-display-p): Use it.
11078 2012-04-04  Gabor Vida  <vidagabor@gmail.com>  (tiny change)
11080         * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
11081         (bug#11145).
11083 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11085         * comint.el (comint--common-quoted-suffix): Check string boundary
11086         before comparing (bug#11158).
11087         * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
11089 2012-04-04  Chong Yidong  <cyd@gnu.org>
11091         * minibuffer.el (completion-extra-properties): Doc fix.
11093         * subr.el (delayed-warnings-hook): Doc fix.
11095 2012-04-04  Daiki Ueno  <ueno@unixuser.org>
11097         * epa.el (epa--select-keys): Bind C-c C-c to finish the key
11098         selection (Bug#11159).
11099         (epa-insert-keys): Inform that the default public key will be
11100         exported if no key is selected.
11102 2012-04-04  Richard Stallman  <rms@gnu.org>
11104         * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
11106 2012-04-03  Chong Yidong  <cyd@gnu.org>
11108         * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
11109         mail-insert-file, not its obsolete alias mail-attach-file.
11111 2012-04-03  Michael Albinus  <michael.albinus@gmx.de>
11113         * notifications.el (notifications-notify): Fix docstring.
11115 2012-04-02  Glenn Morris  <rgm@gnu.org>
11117         * emacs-lisp/authors.el (authors-aliases): Another addition.
11119 2012-04-02  Michael Albinus  <michael.albinus@gmx.de>
11121         * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
11122         `tramp-compat-call-process' instead of `tramp-local-call-process'.
11123         Reported by Magnus Henoch <magnus.henoch@gmail.com>.
11125 2012-04-01  Chong Yidong  <cyd@gnu.org>
11127         * files.el (file-in-directory-p): Rename from file-subdir-of-p.
11128         Handle root directory properly.
11129         (copy-directory): Caller changed.
11131         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
11132         * net/tramp.el (tramp-file-name-for-operation): Callers changed.
11134 2012-03-31  Glenn Morris  <rgm@gnu.org>
11136         * term/xterm.el (xterm-extra-capabilities): Doc fix.
11138         * language/indian.el ("Devanagari"): Fix typo.  (Bug#11103)
11140         * calendar/calendar.el (calendar-window-list)
11141         (calendar-hide-window): Restore.  (Bug#11140)
11142         (calendar-exit): Use calendar-window-list, calendar-hide-window again.
11144         * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
11146 2012-03-30  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11148         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
11149         Check if file is a symlink (Bug#10489).
11151         * files.el (copy-directory): Likewise.
11153 2012-03-30  Chong Yidong  <cyd@gnu.org>
11155         * image.el (imagemagick-types-inhibit)
11156         (imagemagick-register-types): Doc fix.
11158 2012-03-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11160         * textmodes/ispell.el (ispell-get-extended-character-mode):
11161         Disable extended-char-mode for hunspell.  hunspell does not support it
11162         and treats ~word as ordinary words in pipe mode.
11164 2012-03-30  Glenn Morris  <rgm@gnu.org>
11166         * tutorial.el (help-with-tutorial): Ensure local variables don't
11167         happen to make the buffer read-only.  (Bug#11127)
11169 2012-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11171         * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
11172         (perl-calculate-indent): Return `noindent' in strings.
11174 2012-03-28  Sam Steingold  <sds@gnu.org>
11176         * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
11177         instead of the broken adhockery which does not prevent calendar
11178         buffers from being displayed at random after exit.
11179         (calendar-window-list, calendar-hide-window): Remove the broken
11180         adhockery.
11182 2012-03-28  Glenn Morris  <rgm@gnu.org>
11184         * replace.el (query-replace-map): Doc fix.
11186 2012-03-28  Andreas Schwab  <schwab@linux-m68k.org>
11188         * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
11189         contents.  (Bug#11109)
11191 2012-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
11193         * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
11194         (bug#11077).
11195         (avl-tree--check, avl-tree--check-node): New funs.
11197 2012-03-27  Martin Rudalics  <rudalics@gmx.at>
11199         * window.el (switch-to-visible-buffer): New option.
11200         (switch-to-prev-buffer, switch-to-next-buffer):
11201         Observe switch-to-visible-buffer.  Make sure that checking for a window
11202         showing a buffer already is done on the same frame.
11204 2012-03-27  Glenn Morris  <rgm@gnu.org>
11206         * startup.el (mail-host-address): Doc fix.
11208 2012-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11210         * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
11211         than 197 variables.
11213 2012-03-26  Ami Fischman  <ami@fischman.org>
11215         * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
11217 2012-03-26  Glenn Morris  <rgm@gnu.org>
11219         * files.el (save-buffers-kill-emacs): Doc fix.
11221         * startup.el (normal-top-level, command-line, command-line-1):
11222         Give them doc strings.
11224 2012-03-25  Eli Zaretskii  <eliz@gnu.org>
11226         * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
11227         of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
11229 2012-03-25  Chong Yidong  <cyd@gnu.org>
11231         * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
11232         theme if it was previously enabled before (Bug#11031).
11234         * cus-theme.el (custom-theme-write-faces): Retrieve current face
11235         spec with custom-face-get-current-spec if its :shown-value is not
11236         determined yet (Bug#9337).
11237         (customize-create-theme, custom-theme-revert): Doc fixes.
11239         * button.el (button-at): Minor addition to docstring.
11241 2012-03-24  Simon Leinen  <simon.leinen@gmail.com>
11243         * vc/vc.el (vc-merge): Fix a prompt.
11245 2012-03-24  Chong Yidong  <cyd@gnu.org>
11247         * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
11248         point (Bug#9623).
11250         * button.el (button-at): Minor addition to docstring.
11252 2012-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11254         * newcomment.el (comment-choose-indent): No space after BOL.
11256 2012-03-22  Sam Steingold  <sds@gnu.org>
11258         * window.el (switch-to-prev-buffer): Revert last patch because the
11259         bug turned out to be an advertised feature (Elisp manual 28.14).
11261 2012-03-22  Glenn Morris  <rgm@gnu.org>
11263         * vc/vc-bzr.el (vc-bzr-status-switches): New option.  (Bug#6724)
11264         (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
11266 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11268         * net/network-stream.el (network-stream-open-starttls): Make error
11269         message under Windows be less misleading.
11271 2012-03-22  Liang Wang  <netcasper@gmail.com>  (tiny change)
11273         * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
11274         understands (bug#9942).
11276 2012-03-22  Chong Yidong  <cyd@gnu.org>
11278         * simple.el (end-of-visible-line): Handle return value of
11279         next-single-property-change properly (Bug#9371).
11281 2012-03-22  Kenichi Handa  <handa@m17n.org>
11283         * international/quail.el (quail-insert-kbd-layout): Fix previous
11284         change.  To avoid unwanted bidi reordering, use
11285         bidi-string-mark-left-to-right instead of inserting LRO and PDF.
11287 2012-03-21  Dmitry Gutov  <dgutov@yandex.ru>
11289         * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
11290         (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
11291         (ruby-beginning-of-indent): Be more careful with the difference
11292         between word-boundary and symbol boundary.
11293         (ruby-mode-syntax-table): Make : a symbol constituent.
11295 2012-03-21  Andreas Politz  <politza@fh-trier.de>
11297         * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
11299 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11301         * progmodes/etags.el (tags-completion-at-point-function):
11302         Improve last fix.
11304         * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
11306 2012-03-21  Sam Steingold  <sds@gnu.org>
11308         * progmodes/etags.el (tags-completion-at-point-function):
11309         Avoid the error when point is inside the pattern.
11311 2012-03-21  John Yates  <john@yates-sheets.org>  (tiny change)
11313         * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
11314         line (Bug#10855).
11316 2012-03-21  Drew Adams  <drew.adams@oracle.com>
11318         * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
11320 2012-03-21  Anmol Khirbat  <anmol@khirbat.net>  (tiny change)
11322         * ido.el (ido-set-current-directory, ido-read-internal)
11323         (ido-choose-completion-string, ido-completion-help): Handle nil
11324         value of ido-completion-buffer (Bug#11008).
11326 2012-03-21  Sam Steingold  <sds@gnu.org>
11328         * window.el (switch-to-prev-buffer): Do not switch to a visible
11329         window previous buffer, just like with the frame previous buffers.
11331 2012-03-21  Chong Yidong  <cyd@gnu.org>
11333         * faces.el (make-face, make-empty-face, copy-face):
11334         * face-remap.el (face-remap-add-relative, face-remap-set-base):
11335         Doc fixes.
11337 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11339         * wid-edit.el (widget-complete-field): Remove (bug#11051).
11340         (widget-complete): Remove broken use of it.
11342 2012-03-20  Chong Yidong  <cyd@gnu.org>
11344         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
11345         Use string-width and truncate-string-width to handle arbitrary
11346         characters.
11348 2012-03-20  Tassilo Horn  <tassilo@member.fsf.org>
11350         * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
11351         to draw rectangles, not squares.  (Regression introduced by revno
11352         2011-03-02T03:48:01Z!cyd@stupidchicken.com)
11354 2012-03-18  Chong Yidong  <cyd@gnu.org>
11356         * faces.el (face-spec-reset-face): Don't call display-graphic-p if
11357         it is not yet defined (for temacs).
11359 2012-03-18  Leo Liu  <sdl.web@gmail.com>
11361         * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
11362         prefix.
11364 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
11366         * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
11367         (ispell-choices-win-default-height, ispell-silently-savep)
11368         (ispell-dictionary-alist, ispell-encoding8-command)
11369         (ispell-check-version, ispell-aspell-find-dictionary)
11370         (ispell-valid-dictionary-list, ispell-words-keyword)
11371         (ispell-get-word, ispell-internal-change-dictionary)
11372         (ispell-region, ispell-skip-region-list)
11373         (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
11374         (ispell-process-line, ispell-minor-mode, ispell-minor-check)
11375         (ispell-message-text-end, ispell-message)
11376         (ispell-buffer-local-parsing): Doc fix.
11378 2012-03-13  Jambunathan K  <kjambunathan@gmail.com>
11380         * htmlfontify.el: Add support for code block fontification for ODT
11381         export (Bug #9914).
11382         (hfy-optimisations): Define new option
11383         `body-text-only'
11384         (hfy-fontify-buffer): Honor above setting.
11385         (hfy-begin-span, hfy-end-span): New routines factored out form
11386         `hfy-fontify-buffer'.
11387         (hfy-begin-span-handler, hfy-end-span-handler): New variables
11388         that permit insertion of custom tags.
11389         (hfy-fontify-buffer): Use above handlers.
11390         (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
11391         (hfy-face-to-css): Re-defined to be a variable.
11392         (hfy-compile-stylesheet): Modify.  Allow stylesheet to be built
11393         over multiple runs.  This is made possible by having the caller let
11394         bind a special variable `hfy-user-sheet-assoc'.
11395         (htmlfontify-string): New defun.
11396         (hfy-compile-face-map): Make sure that the last char in the
11397         buffer is correctly fontified.
11398         (hfy-face-resolve-face): Whitespace only change.
11400 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
11402         * textmodes/ispell.el (ispell-get-decoded-string): Make the error
11403         message more clear.
11405 2012-03-16  Leo Liu  <sdl.web@gmail.com>
11407         * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
11409 2012-03-16  Alan Mackenzie  <acm@muc.de>
11411         Further optimise the handling of large macros.
11413         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
11414         limit to a call of `c-literal-limits'.
11415         (c-determine-+ve-limit): New function.
11416         (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
11417         (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
11418         In CASE 5B, restrict a search limit to 500.
11419         (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
11421         * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
11422         Restrict macro bounds to +-500 from after-change's BEG END.
11424 2012-03-16  Leo Liu  <sdl.web@gmail.com>
11426         * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
11428 2012-03-16  Aaron S. Hawley  <Aaron.S.Hawley@gmail.com>
11430         * tar-mode.el (tar-mode): Fix saving by conditionally undoing
11431         `special-mode' setting of `buffer-read-only'.  (Bug#11010)
11433 2012-03-16  Glenn Morris  <rgm@gnu.org>
11435         * view.el (view-buffer, view-buffer-other-window)
11436         (view-buffer-other-frame): Doc fixes re special mode-class.
11438         * subr.el (eval-after-load): If named feature is provided not from
11439         a file, run after-load forms.  (Bug#10946)
11441         * calendar/calendar.el (calendar-insert-at-column):
11442         Handle non-unit-width characters a bit better.  (Bug#10978)
11444 2012-03-15  Chong Yidong  <cyd@gnu.org>
11446         * emacs-lisp/ring.el (ring-extend): New function.
11447         (ring-insert+extend): Extend the ring correctly (Bug#11019).
11449         * comint.el (comint-read-input-ring)
11450         (comint-add-to-input-history): Grow comint-input-ring lazily.
11452 2012-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11454         * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
11455         Fix up parsing of multiline twoarg non-paired elements (bug#11014).
11457         * imenu.el: Fix multiple inheritance breakage (bug#9199).
11458         (imenu-add-to-menubar): Don't add a redundant index.
11459         (imenu-update-menubar): Handle a dynamically composed keymap.
11461 2012-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11463         * mail/sendmail.el (mail-encode-header):
11464         Bind rfc2047-encode-encoded-words to nil.
11466 2012-03-13  Glenn Morris  <rgm@gnu.org>
11468         * calendar/calendar.el (calendar-string-spread):
11469         Handle non-unit-width characters a bit better.  (Bug#10978)
11471 2012-03-13  Leo Liu  <sdl.web@gmail.com>
11473         * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
11474         directory and file as argument (Bug#10822).
11476 2012-03-13  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
11478         * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
11479         For dynamically generated code, follow $PC.
11480         (gdb-disassembly-handler-custom): Handle no function name case.
11482 2012-03-13  Tim Landscheidt  <tim@tim-landscheidt.de>  (tiny change)
11484         * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
11485         * emulation/ws-mode.el (ws-query-replace):
11486         * sort.el (sort-regexp-fields):
11487         Fix missing trailing whitespace in interactive prompts.  (Bug#11002)
11489 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11491         * dabbrev.el: Fix cycle completion order (bug#10963).
11492         (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
11493         (dabbrev-completion): Don't use an obarray; provide
11494         a cycle-sort-function.
11496 2012-03-12  Leo Liu  <sdl.web@gmail.com>
11498         * simple.el (kill-new): Use equal-including-properties for comparison.
11499         (kill-do-not-save-duplicates): Doc fix.
11501 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11503         * dabbrev.el: Fix cycle completion (bug#10963).
11504         Use lexical binding and wrap to 80 columns.
11505         (dabbrev-completion): Delay computing the list of completions.
11507 2012-03-12  Kenichi Handa  <handa@m17n.org>
11509         * international/quail.el (quail-insert-kbd-layout): Surround each
11510         row by LRO and PDF instead of inserting many LRMs.  Pad the left
11511         and right of each non-spacing marks.  Insert invisible space
11512         between lower and upper characters to prevent composition.
11514 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11516         * minibuffer.el (minibuffer-complete): Don't get confused when the
11517         function is run twice via different commands (bug#10958).
11518         (complete-with-action): Fix docstring.
11520 2012-03-12  Chong Yidong  <cyd@gnu.org>
11522         * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
11523         (nxml-completion-at-point-function): New function.
11524         (nxml-mode): Use it.
11525         (nxml-bind-meta-tab-to-complete-flag): Default to t.
11527         * emacs-lisp/package.el (package-unpack, package-unpack-single):
11528         Load generated autoloads file before byte compiling (Bug#10970).
11529         (package--make-autoloads-and-compile): New helper fun.
11531 2012-03-12  Christopher Schmidt  <christopher@ch.ristopher.com>
11533         * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
11535 2012-03-11  Michael Albinus  <michael.albinus@gmx.de>
11537         * autorevert.el (auto-revert-handler): Ensure, that
11538         file-readable-p is applied only for local files or in
11539         auto-revert-tail-mode.
11541 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
11543         * server.el (server-eval-at): Handle non-tcp connections.
11544         Decode result string.
11546         * server.el (server-msg-size): New constant.
11547         (server-reply-print): New function.
11548         (server-eval-and-print): Use it.
11549         (server-eval-at): Use server-quote-arg and server-unquote-arg.
11550         Handle -print-nonl.
11552 2012-03-11  Christopher Schmidt  <christopher@ch.ristopher.com>
11554         * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
11555         (Bug#10987).
11557 2012-03-11  Chong Yidong  <cyd@gnu.org>
11559         * simple.el (goto-line): Doc fix (Bug#9938).
11561         * subr.el (save-window-excursion): Doc fix (Bug#9979).
11563         * dabbrev.el (dabbrev--find-expansion): Update progress reporter
11564         when finished (Bug#10963).
11566 2012-03-11  Martin Rudalics  <rudalics@gmx.at>
11568         * window.el (split-window-below): Fix bug in case where
11569         split-window-keep-point is nil (Bug#10971).
11571 2012-03-11  Juri Linkov  <juri@jurta.org>
11573         * replace.el (replace-highlight): Set isearch-word to nil
11574         unconditionally.  (Bug#10887)
11576 2012-03-10  Eli Zaretskii  <eliz@gnu.org>
11578         * net/mairix.el (mairix-replace-invalid-chars): Rename from
11579         mairix-replace-illegal-chars; all callers changed.  Don't remove
11580         ^, ~, and = characters: they are meaningful in mairix search specs.
11581         (mairix-widget-create-query): Add usage information about mairix
11582         search forms: negating words, searching for substrings, etc.
11584 2012-03-10  Jae-hyeon Park  <jae-hyeon.park@desy.de>  (tiny change)
11586         * international/fontset.el (font-encoding-alist): Add an entry for
11587         ksx1001 (Bug#5667).
11589 2012-03-10  Richard Stallman  <rms@gnu.org>
11591         * mail/sendmail.el (mail-encode-header):
11592         Set rfc2047-encode-encoded-words.
11594         * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
11596         * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
11597         view buffer means not swapped.
11598         (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
11599         (rmail-write-region-annotate): Error if real text has disappeared.
11601         * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
11603 2012-03-10  Chong Yidong  <cyd@gnu.org>
11605         * emulation/cua-rect.el (cua--init-rectangles):
11606         * emulation/cua-base.el (cua--init-keymaps):
11607         Add delete-forward-char to remappings (Bug#9666).
11609 2012-03-10  Martin Rudalics  <rudalics@gmx.at>
11611         * speedbar.el (speedbar-unhighlight-one-tag-line):
11612         Avoid unhighlighting due to frame switching (Bug#10275).
11614 2012-03-10  Chong Yidong  <cyd@gnu.org>
11616         * minibuffer.el (completion-in-region, completion-help-at-point):
11617         Give the completion field overlay a high priority (Bug#6830).
11619         * dired.el (dired-goto-file): Recognize absolute file name
11620         listings (Bug#7126).
11621         (dired-goto-file-1): New helper function.
11622         (dired-toggle-read-only): Inhibit warnings.
11624 2012-03-09  Michael Albinus  <michael.albinus@gmx.de>
11626         * net/dbus.el (dbus-property-handler): Return empty array if
11627         there are no properties.
11629 2012-03-09  Leo Liu  <sdl.web@gmail.com>
11631         * savehist.el (savehist-printable): Stricter check for string
11632         value (Bug#10937).
11634 2012-03-09  Eli Zaretskii  <eliz@gnu.org>
11636         * mail/smtpmail.el (smtpmail-send-it):
11637         Bind coding-system-for-write to *-unix, so that FCC files are kept in
11638         valid mbox format.
11640 2012-03-09  Glenn Morris  <rgm@gnu.org>
11642         * files.el (dir-locals-find-file):
11643         Don't check result is regular, readable.
11644         (dir-locals-read-from-file): Demote errors.
11646 2012-03-08  Eli Zaretskii  <eliz@gnu.org>
11648         * international/quail.el (quail-insert-kbd-layout):
11649         Insert invisible LRM characters before each character in a keyboard
11650         layout cell, to prevent their reordering by bidi display engine.
11651         For details, see the discussion in
11652         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
11654 2012-03-08  Alan Mackenzie  <acm@muc.de>
11656         * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
11657         the starting position; make it extend the marked region when
11658         invoked repeatedly - all under appropriate circumstances.
11659         Fixes bugs #5525, #10906.
11661 2012-03-08  Glenn Morris  <rgm@gnu.org>
11663         * files.el (locate-dominating-file, dir-locals-find-file):
11664         Undo 2012-03-06 change.
11666 2012-03-07  Eli Zaretskii  <eliz@gnu.org>
11668         * international/quail.el (quail-help):
11669         Force bidi-paragraph-direction be left-to-right.  See discussion in
11670         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
11671         for the reason.
11673 2012-03-07  Michael Albinus  <michael.albinus@gmx.de>
11675         Avoid superfluous registering of signals.  (Bug#10807)
11677         * notifications.el (notifications-on-action-object)
11678         (notifications-on-close-object): New defvars.
11679         (notifications-on-action-signal, notifications-on-closed-signal):
11680         Unregister the signal if not needed any longer.
11681         (notifications-notify): Register `notifications-action-signal' or
11682         `notifications-closed-signal', if :on-action or :on-close has been
11683         passed as argument.
11685 2012-03-07  Chong Yidong  <cyd@gnu.org>
11687         * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
11688         non-X platforms.
11690 2012-03-06  Glenn Morris  <rgm@gnu.org>
11692         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
11693         (x-disown-selection-internal, x-get-selection-internal):
11694         Doc fix (add arglist signatures).  (Bug#10783)
11696 2012-03-06  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
11698         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
11699         Handle breakpoints with no "type".
11701 2012-03-06  Glenn Morris  <rgm@gnu.org>
11703         * files.el (locate-dominating-file): Add optional predicate argument.
11704         (dir-locals-find-file): Make use of above change.
11706 2012-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>
11708         * info.el (Info-insert-dir): Also try "dir.gz".
11710 2012-03-06  Glenn Morris  <rgm@gnu.org>
11712         * files.el (dir-locals-find-file):
11713         Ignore non-readable or non-regular files.  (Bug#10928)
11715         * files.el (locate-dominating-file): Doc fix.
11717 2012-03-06  Adam Spiers  <emacs@adamspiers.org>  (tiny change)
11719         * calendar/calendar.el (calendar-set-mode-line):
11720         `getenv' returns a string.  (Bug#10951)
11722 2012-03-05  Leo Liu  <sdl.web@gmail.com>
11724         * simple.el (backward-delete-char-untabify): Constrain point to
11725         field (Bug#10939).
11727         * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
11729 2012-03-05  Chong Yidong  <cyd@gnu.org>
11731         * simple.el (count-words): If called from Lisp, return the word
11732         count, for symmetry with `count-lines'.  Arglist changed.
11733         (count-words--message): Args changed.  Consolidate counting code
11734         from count-words and count-words-region.
11735         (count-words-region): Caller changed.
11736         (count-lines-region): Make it an obsolete alias.
11738 2012-03-04  Tassilo Horn  <tassilo@member.fsf.org>
11740         * saveplace.el (save-place-to-alist)
11741         (save-place-ignore-files-regexp): Allow value nil to disable this
11742         feature.
11744 2012-03-04  Chong Yidong  <cyd@gnu.org>
11746         * faces.el (face-spec-reset-face): For the default face, reset the
11747         attributes to default values (Bug#10748).
11749 2012-03-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11751         * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
11752         previous patch: Check `message-send-mail-function', and not the
11753         default function (bug#10897).
11755 2012-03-04  Michael Albinus  <michael.albinus@gmx.de>
11757         * notifications.el (notifications-on-action-signal)
11758         (notifications-on-closed-signal): Check for unique service name of
11759         incoming event.  Fix error in removing entry.
11760         (top): Register for signals with wildcard service name.
11761         (notifications-notify): Use daemon unique service name for map entries.
11763 2012-03-04  Chong Yidong  <cyd@gnu.org>
11765         * cus-start.el: Make x-select-enable-clipboard-manager customizable.
11767 2012-03-04  Glenn Morris  <rgm@gnu.org>
11769         * abbrev.el (copy-abbrev-table, abbrev-table-p)
11770         (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
11771         (expand-abbrev, define-abbrev-table): Doc fixes.
11773 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11775         * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
11776         `message-default-send-mail-function' and not `send-mail-function'
11777         when doing the prompting for `sendmail-query-once' before sending
11778         in Message buffers (bug#10897).
11780         * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
11781         This is inconsistent with all the other stream functions, which leave
11782         the setting up to the higher levels (if so wanted) (bug#10931).
11784 2012-03-02  Alan Mackenzie  <acm@muc.de>
11786         Depessimize the handling of very large macros.
11788         * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
11789         (c-macro-cache-syntactic): New variables to implement a one
11790         element macro cache.
11791         (c-invalidate-macro-cache): New function.
11792         (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
11793         Adapt to use the new cache.
11794         (c-state-safe-place): Use better the cache of safe positions.
11795         (c-state-semi-nonlit-pos-cache)
11796         (c-state-semi-nonlit-pos-cache-limit):
11797         New variables for...
11798         (c-state-semi-safe-place): New function.  Here, in a macro is "safe".
11799         (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
11800         (c-in-literal, c-literal-limits, c-determine-limit-get-base):
11801         Use c-state-semi-safe-place.
11803         * progmodes/cc-langs.el (c-get-state-before-change-functions):
11804         Add c-invalidate-macro-cache to the C, C++, Obj entries.
11806 2012-03-02  Michael Albinus  <michael.albinus@gmx.de>
11808         * jka-compr.el (jka-compr-call-process):
11809         Apply `file-accessible-directory-p' only when the default directory is
11810         not remote.
11812 2012-03-01  Michael Albinus  <michael.albinus@gmx.de>
11814         * files.el (file-equal-p): Fix docstring.  Avoid unnecessary
11815         access of FILE2, if FILE1 does not exist.
11817         * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
11818         Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
11820         * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
11821         Add "PAGER=" to `process-environment'.
11823 2012-03-01  Michael R. Mauger  <mmaug@yahoo.com>
11825         * progmodes/sql.el: Bug fix
11826         (sql-get-login-ext): Save login values in globals.
11827         (sql-get-login): Use new version of `sql-get-login-ext'.
11828         (sql-interactive-mode): Set global `sql-connection' to nil.
11829         (sql-connect): Set global values for connection.
11830         (sql-product-interactive): Save global values as buffer local.
11832 2012-02-29  Leo Liu  <sdl.web@gmail.com>
11834         * abbrev.el (define-abbrevs): Reset sys to nil.
11836 2012-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11838         * files.el (file-equal-p): Rename from `files-equal-p'.
11839         Return nil when one or both files don't exist.
11840         (file-subdir-of-p): Now only top directory must exists,
11841         return nil if it doesn't.
11842         (copy-directory): No need to test with `file-subdir-of-p' after
11843         creating dir.
11844         * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
11845         to `file-equal-p'.
11847 2012-02-28  Glenn Morris  <rgm@gnu.org>
11849         * shell.el (shell-mode):
11850         * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
11851         * play/landmark.el (landmark-font-lock-face-O):
11852         * play/handwrite.el (handwrite):
11853         * play/gomoku.el (gomoku-O):
11854         * net/browse-url.el (browse-url-browser-display):
11855         * international/mule.el (define-charset):
11856         * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
11857         * filesets.el (filesets-find-file-delay):
11858         * eshell/em-xtra.el (eshell-xtra):
11859         * eshell/em-unix.el (eshell-grep):
11860         * emulation/viper.el (viper-mode):
11861         * emacs-lisp/regexp-opt.el (regexp-opt-group):
11862         * emacs-lisp/easymenu.el (easy-menu-define):
11863         * calendar/timeclock.el (timeclock-use-display-time):
11864         * bs.el (bs-mode):
11865         * bookmark.el (bookmark-save-flag):
11866         Doc fix (standardize possessive apostrophe usage).
11868 2012-02-27  Chong Yidong  <cyd@gnu.org>
11870         * emulation/viper-cmd.el (viper-intercept-ESC-key):
11871         Fix key-binding lookup for ESC key (Bug#9146).
11873         * font-lock.el (font-lock-specified-p): Rename from
11874         font-lock-spec-present.  Callers changed.
11876 2012-02-27  Daniel Hackney  <dan@haxney.org>
11878         * emacs-lisp/package.el (package-compute-transaction):
11879         Handle holding a package version to t in package-load-list.
11881 2012-02-26  Michael Albinus  <michael.albinus@gmx.de>
11883         * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
11884         (tramp-get-inode, tramp-get-device): Use cached values.
11886 2012-02-26  Alan Mackenzie  <acm@muc.de>
11888         Check there is a font-lock specification before doing initial
11889         fontification.
11891         * font-core.el (font-lock-mode): Move the conditional from
11892         :after-hook to font-lock-initial-fontify.
11893         (font-lock-default-function): Move the check for a specification
11894         to font-lock-spec-present.
11896         * font-lock.el (font-lock-initial-fontify): Call ...
11897         (font-lock-spec-present): New function.
11899 2012-02-26  Jim Blandy  <jimb@red-bean.com>
11901         * progmodes/gdb-mi.el (gdb-mi-quote): New function.
11902         (gdb-send): Apply it to the operand of the '-interpreter-exec
11903         console' command, so that we can pass arguments with (say) quotes
11904         in them.  Store exact string sent in gdb-debug-log (Bug#10765).
11906 2012-02-26  Chong Yidong  <cyd@gnu.org>
11908         * help-fns.el (describe-function-1): Clarify description of
11909         remapping (Bug#10844).
11911         * files.el (files-equal-p): Doc fix.
11912         (file-subdir-of-p): Doc fix.  Convert loop macro to plain Lisp,
11913         and quit the loop once a mismatch is found.
11915 2012-02-25  Juanma Barranquero  <lekktu@gmail.com>
11917         * bs.el (bs--show-with-configuration): Don't throw an error
11918         if the window cannot be split; otherwise, subsequent calls to
11919         bs-show fail, restoring a stale window config.  (Bug#10882)
11921 2012-02-25  Jan Djärv  <jan.h.d@swipnet.se>
11923         * term/ns-win.el (global-map): Bind ns-drag-file to
11924         ns-find-file (Bug#5855, Bug#10050).
11926 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
11928         * calendar/parse-time.el (parse-time-string): Allow extractor to
11929         return nil.
11931 2012-02-25  Michael Albinus  <michael.albinus@gmx.de>
11933         * net/tramp.el (tramp-file-name-for-operation):
11934         Add `files-equal-p' and `file-subdir-of-p'.
11936         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
11937         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
11938         Add COPY-CONTENTS argument.
11940 2012-02-25  Chong Yidong  <cyd@gnu.org>
11942         Add custom groups for VC backends, for consistency with vc-bzr.
11944         * vc/vc-arch.el (vc-arch):
11945         * vc/vc-cvs.el (vc-cvs):
11946         * vc/vc-git.el (vc-git):
11947         * vc/vc-hg.el (vc-hg):
11948         * vc/vc-mtn.el (vc-mtn):
11949         * vc/vc-rcs.el (vc-rcs):
11950         * vc/vc-sccs.el (vc-sccs):
11951         * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
11952         All relevant defcustoms reassigned.
11954 2012-02-25  Chong Yidong  <cyd@gnu.org>
11956         * newcomment.el (comment-styles): Add autoload (Bug#10868).
11958         * term/x-win.el (x-initialize-window-system): Reduce default for
11959         x-selection-timeout to 5 seconds (Bug#8869).
11961 2012-02-24  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11963         * files.el (files-equal-p, file-subdir-of-p): New functions.
11964         (copy-directory): Error when trying to copy a directory on itself.
11965         Add missing copy-contents arg to tramp handler.
11966         * dired-aux.el (dired-copy-file-recursive): Same.
11967         (dired-create-files): Modify destination when source is equal to
11968         dest when copying files.
11969         Return also when dest is a subdir of source.  (Bug#10489)
11971 2012-02-24  Michael Albinus  <michael.albinus@gmx.de>
11973         * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
11974         (Bug#10874)
11976 2012-02-23  Alan Mackenzie  <acm@muc.de>
11978         * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
11979         parameter "after-hook:" to allow the expansion to run code after
11980         the execution of the mode hooks.
11982         * font-lock.el (font-lock-initial-fontify): New function extracted
11983         from font-lock-mode-internal.
11985         * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
11986         :after-hook.
11988 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11990         * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
11991         (completion--cache-all-sorted-completions): New function.
11992         (completion-all-sorted-completions): Use it.
11993         (completion--do-completion, minibuffer-force-complete):
11994         Use it to re-instate the flush hook.
11996         * icomplete.el (icomplete-completions): Replace last fix with a better
11997         one (bug#10850).
11999 2012-02-23  Dmitry Gutov  <dgutov@yandex.ru>
12001         * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
12002         when it might call us back infinitely (bug#10797).
12004 2012-02-23  Glenn Morris  <rgm@gnu.org>
12006         * minibuffer.el (completion-category-overrides): Doc fix.
12008 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12010         * minibuffer.el (completion-table-with-context): Fix inf-loop.
12011         Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
12013 2012-02-23  Glenn Morris  <rgm@gnu.org>
12015         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
12016         (authors-obsolete-files-regexps, authors-ignored-files)
12017         (authors-ambiguous-files, authors-renamed-files-alist):
12018         Add more entries.
12020 2012-02-23  Juri Linkov  <juri@jurta.org>
12022         * isearch.el (isearch-occur): Sync interactive spec with occur's
12023         new feature in `occur-read-primary-args'.  Doc fix.  (Bug#10705)
12025         * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
12027 2012-02-22  Juri Linkov  <juri@jurta.org>
12029         * international/mule-cmds.el (read-char-by-name): Use \` and \'.
12030         (ucs-insert): Doc fix.  Check for hex digits in the string.
12031         Don't display `nil' in the error message.  (Bug#10857)
12033 2012-02-22  Alan Mackenzie  <acm@muc.de>
12035         * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
12037 2012-02-22  Glenn Morris  <rgm@gnu.org>
12039         * ffap.el (ffap-c-path):
12040         * man.el (Man-header-file-path): Handle multiarch.  (Bug#10702)
12042 2012-02-22  Chong Yidong  <cyd@gnu.org>
12044         * custom.el (load-theme): Doc fix.
12046 2012-02-22  Glenn Morris  <rgm@gnu.org>
12048         * dired-x.el (dired-guess-shell-alist-default):
12049         Remove escape sequences from nroff output.  (Bug#172)
12051 2012-02-21  Glenn Morris  <rgm@gnu.org>
12053         * vc/emerge.el (emerge-defvar-local):
12054         Set `permanent-local' property rather than unused `preserved'.
12056         * textmodes/picture.el (picture-delete-char): New alias.
12057         (picture-mode-map): Use it.  (Bug#10860)
12058         (picture-mode): Doc fix.
12060 2012-02-21  Juanma Barranquero  <lekktu@gmail.com>
12062         * newcomment.el (uncomment-region-default): Remove unused binding.
12064 2012-02-21  Glenn Morris  <rgm@gnu.org>
12066         * textmodes/picture.el (picture-motion, picture-motion-reverse)
12067         (picture-self-insert, picture-tab-chars): Doc fix.
12068         (picture-mode-map): Fix C-a, C-e.
12070 2012-02-20  Glenn Morris  <rgm@gnu.org>
12072         * emacs-lisp/authors.el (authors-aliases): Add another entry.
12074 2012-02-20  Leo Liu  <sdl.web@gmail.com>
12076         * icomplete.el (icomplete-completions): Check FROM arg before
12077         passing to substring (Bug#10850).
12079 2012-02-19  Chong Yidong  <cyd@gnu.org>
12081         * comint.el: Require ansi-color.
12082         (comint-output-filter-functions): Add ansi-color-process-output.
12084         * ansi-color.el: Don't set comint-output-filter-functions; it is
12085         now in the initial value defined in comint.el.
12086         (ansi-color-apply-face-function): New variable.
12087         (ansi-color-apply-on-region): Use it.
12088         (ansi-color-apply-overlay-face): New function.
12090         * shell.el (shell): No need to require ansi-color.
12091         (shell-mode): Use ansi-color-apply-face-function to highlight
12092         color escapes using font-lock-face property (Bug#10835).
12094 2012-02-19  Chong Yidong  <cyd@gnu.org>
12096         * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
12097         mode-line formats (Bug#10839).
12099 2012-02-18  Glenn Morris  <rgm@gnu.org>
12101         * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
12103         * mail/undigest.el (unforward-rmail-message): Doc fix.
12105         * saveplace.el (save-place-ignore-files-regexp): Add :version.
12107 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
12109         * international/characters.el (script-list): Sync with the latest
12110         Unicode Character Database.
12112 2012-02-18  Andreas Schwab  <schwab@linux-m68k.org>
12114         * international/titdic-cnv.el: Remove duplicate coding tag.
12115         * language/cham.el: Likewise.
12116         * language/tai-viet.el: Likewise.
12118 2012-02-18  Glenn Morris  <rgm@gnu.org>
12120         * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
12121         * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
12122         (calendar-bahai-all-holidays-flag, calendar-other-dates):
12123         * calendar/diary-lib.el (diary-abbreviated-year-flag):
12124         * calendar/holidays.el (holiday-bahai-holidays)
12125         (calendar-holidays, list-holidays):
12126         Use utf-8 Bahá'í in doc-strings, menus, etc.
12128 2012-02-17  Tassilo Horn  <tassilo@member.fsf.org>
12130         * saveplace.el (save-place-ignore-files-regexp): New variable
12131         allowing for excluding files from saving their location of point.
12132         The default value matches the temporary commit message editing
12133         files from Git, SVN, Bazaar, and Mercurial.
12134         (save-place-to-alist): Use it.
12136 2012-02-17  Lawrence Mitchell  <wence@gmx.li>
12137             Stefan Monnier  <monnier@iro.umontreal.ca>
12139         * newcomment.el (uncomment-region-default): Don't leave extra space
12140         when an arg is provided (bug#8150).
12142 2012-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
12144         * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
12146 2012-02-17  Glenn Morris  <rgm@gnu.org>
12148         * net/socks.el: Require network-stream.  (Bug#10599)
12150 2012-02-17  Kenichi Handa  <handa@m17n.org>
12152         * international/charprop.el:
12153         * international/uni-name.el:
12154         * international/uni-old-name.el:
12155         * international/uni-comment.el: Regenerate.
12157 2012-02-16  Glenn Morris  <rgm@gnu.org>
12159         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
12160         Interactively in calendar buffer, give an error if not on a date.
12162 2012-02-15  Glenn Morris  <rgm@gnu.org>
12164         * shell.el (shell-delimiter-argument-list):
12165         Revert 2011-02-17 change.  (Bug#8027)
12167 2012-02-15  Chong Yidong  <cyd@gnu.org>
12169         * minibuffer.el (completion-at-point-functions): Doc fix.
12171         * custom.el (defcustom): Doc fix; note use of defvar.
12173 2012-02-15  Glenn Morris  <rgm@gnu.org>
12175         * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
12176         Doc fixes.
12178 2012-02-14  Glenn Morris  <rgm@gnu.org>
12180         * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
12182 2012-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
12184         * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
12185         way the ports list is computed.
12186         (smtpmail-query-smtp-server): Prompt the user for a port number if
12187         we can't connect to any of the standard ports (bug#10810).
12189 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
12191         * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
12193 2012-02-13  Glenn Morris  <rgm@gnu.org>
12195         * minibuffer.el (read-file-name): Doc fix.  (Bug#10798)
12197 2012-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
12199         * net/gnutls.el (gnutls-trustfiles): New variable.
12200         (gnutls-negotiate): Use it.
12202 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
12204         * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
12205         does its stuff if Gnus is running.
12207 2012-02-13  Alan Mackenzie  <acm@muc.de>
12209         Fix a loop in c-set-fl-decl-start.
12211         * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
12212         c-backward-syntactic-ws actually moves backwards.
12214 2012-02-13  Leo Liu  <sdl.web@gmail.com>
12216         * net/rcirc.el (rcirc-markup-attributes): Move point to the
12217         beginning so that all \C-o chars are removed.
12219 2012-02-12  Teodor Zlatanov  <tzz@lifelogs.com>
12221         * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
12223 2012-02-12  Alan Mackenzie  <acm@muc.de>
12225         Fix infinite loop with long macros.
12226         * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
12228 2012-02-12  Chong Yidong  <cyd@gnu.org>
12230         * window.el (display-buffer): Doc fix (Bug#10785).
12232 2012-02-12  Glenn Morris  <rgm@gnu.org>
12234         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
12235         (x-disown-selection-internal, x-get-selection-internal):
12236         Sync docs with the xselect.c versions.
12238         * allout-widgets.el: Add missing license notice.
12240 2012-02-11  Glenn Morris  <rgm@gnu.org>
12242         * select.el (x-get-selection-internal, x-own-selection-internal)
12243         (x-disown-selection-internal):
12244         * x-dnd.el (x-get-selection-internal): Update declarations.
12246         * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
12248         * window.el (window-sides-slots):
12249         * tool-bar.el (tool-bar-position):
12250         * term/xterm.el (xterm-extra-capabilities):
12251         * ses.el (ses-self-reference-early-detection):
12252         * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
12253         (verilog-auto-wire-type)
12254         (verilog-auto-delete-trailing-whitespace)
12255         (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
12256         (verilog-auto-tieoff-declaration):
12257         * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
12258         (sql-oracle-statement-starters, sql-oracle-scan-on):
12259         * progmodes/prolog.el (prolog-align-comments-flag)
12260         (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
12261         (prolog-left-indent-regexp, prolog-paren-indent-p)
12262         (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
12263         (prolog-types, prolog-mode-specificators)
12264         (prolog-determinism-specificators, prolog-directives)
12265         (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
12266         (prolog-electric-dot-flag)
12267         (prolog-electric-dot-full-predicate-template)
12268         (prolog-electric-underscore-flag, prolog-electric-tab-flag)
12269         (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
12270         (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
12271         (prolog-program-switches, prolog-prompt-regexp)
12272         (prolog-debug-on-string, prolog-debug-off-string)
12273         (prolog-trace-on-string, prolog-trace-off-string)
12274         (prolog-zip-on-string, prolog-zip-off-string)
12275         (prolog-use-standard-consult-compile-method-flag)
12276         (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
12277         (prolog-imenu-max-lines, prolog-info-predicate-index)
12278         (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
12279         (prolog-char-quote-workaround):
12280         * progmodes/cc-vars.el (c-defun-tactic):
12281         * net/tramp.el (tramp-encoding-command-interactive)
12282         (tramp-local-end-of-line):
12283         * net/soap-client.el (soap-client):
12284         * net/netrc.el (netrc-file):
12285         * net/gnutls.el (gnutls):
12286         * minibuffer.el (completion-category-overrides)
12287         (completion-cycle-threshold)
12288         (completion-pcm-complete-word-inserts-delimiters):
12289         * man.el (Man-name-local-regexp):
12290         * mail/feedmail.el (feedmail-display-full-frame):
12291         * international/characters.el (glyphless-char-display-control):
12292         * eshell/em-ls.el (eshell-ls-date-format):
12293         * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
12294         (lisp-lambda-list-keyword-parameter-indentation)
12295         (lisp-lambda-list-keyword-parameter-alignment):
12296         * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
12297         * dired-x.el (dired-omit-verbose):
12298         * cus-theme.el (custom-theme-allow-multiple-selections):
12299         * calc/calc.el (calc-highlight-selections-with-faces)
12300         (calc-lu-field-reference, calc-lu-power-reference)
12301         (calc-note-threshold):
12302         * battery.el (battery-mode-line-limit):
12303         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
12304         (archive-7z-update):
12305         * allout.el (allout-prefixed-keybindings)
12306         (allout-unprefixed-keybindings)
12307         (allout-inhibit-auto-fill-on-headline)
12308         (allout-flattened-numbering-abbreviation):
12309         * allout-widgets.el (allout-widgets-auto-activation)
12310         (allout-widgets-icons-dark-subdir)
12311         (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
12312         (allout-widgets-theme-dark-background)
12313         (allout-widgets-theme-light-background)
12314         (allout-widgets-item-image-properties-emacs)
12315         (allout-widgets-item-image-properties-xemacs)
12316         (allout-widgets-run-unit-tests-on-load)
12317         (allout-widgets-time-decoration-activity)
12318         (allout-widgets-hook-error-post-time)
12319         (allout-widgets-track-decoration):
12320         Add missing :version tags to new defcustoms and defgroups.
12322         * progmodes/sql.el (sql-ansi-statement-starters)
12323         (sql-oracle-statement-starters): Add custom type.
12325         * progmodes/prolog.el: Remove leading '*' from defcustom docs.
12326         (prolog-system-version): Give it a type.
12328 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
12330         * term/pc-win.el (x-select-text, x-selection-owner-p)
12331         (x-own-selection-internal, x-disown-selection-internal)
12332         (x-get-selection-internal): Sync doc strings and argument lists
12333         with xselect.c, common-win.el and x-win.el.  (Bug#10783)
12335 2012-02-11  Leo Liu  <sdl.web@gmail.com>
12337         * progmodes/python.el (python-end-of-statement): Fix infinite
12338         loop.  (Bug#10788)
12340 2012-02-10  Glenn Morris  <rgm@gnu.org>
12342         * international/mule-cmds.el (unify-8859-on-encoding-mode)
12343         (unify-8859-on-decoding-mode): Properly mark as obsolete.
12345 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
12347         * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
12348         about SMTP before checking the From header.
12350         * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
12351         into own function for reuse by emacsbug.el.
12353 2012-02-10  Leo Liu  <sdl.web@gmail.com>
12355         * subr.el (condition-case-unless-debug): Rename from
12356         condition-case-no-debug.  All callers changed.
12357         (with-demoted-errors): Fix caller.
12359         * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
12360         * nxml/rng-valid.el (rng-do-some-validation):
12361         * emacs-lisp/package.el (package-refresh-contents)
12362         (package-menu-execute):
12363         * desktop.el (desktop-create-buffer):
12364         * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
12366 2012-02-10  Glenn Morris  <rgm@gnu.org>
12368         * textmodes/bibtex.el:
12369         Add missing :version tags for new/changed defcustoms.
12371         * files.el (remote-file-name-inhibit-cache): Doc fixes.
12373 2012-02-09  Lars Ingebrigtsen  <larsi@rusty>
12375         * mail/smtpmail.el (smtpmail-user-mail-address): New function.
12376         (smtpmail-via-smtp): Use it, or fall back on the From address.
12377         (smtpmail-send-it): Ditto.
12379 2012-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12381         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
12382         Don't fallback on byte-compile-defvar.  Optimize (defvar foo) away.
12383         (byte-compile-tmp-var): New const.
12384         (byte-compile-defvar): Use it to minimize .elc size.
12385         Just use `defvar' rather than simulate it (bug#10761).
12387 2012-02-09  Glenn Morris  <rgm@gnu.org>
12389         * files.el (rename-uniquely): Doc fix.  (Bug#3806)
12391         * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
12392         Add :version tags.
12394         * progmodes/compile.el (compilation-error-screen-columns)
12395         (compilation-first-column, compilation-filter-start): Doc fixes.
12397         * vc/log-view.el (log-view-toggle-entry-display):
12398         * vc/vc.el (vc-merge, vc-pull): Doc fixes.
12400         * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
12401         (report-emacs-bug-can-use-xdg-email):
12402         (report-emacs-bug-insert-to-mailer): Doc fixes.
12403         (report-emacs-bug): Message fix.
12405         * net/browse-url.el (browse-url-can-use-xdg-open)
12406         (browse-url-xdg-open): Doc fixes.
12408         * electric.el (electric-indent-mode, electric-pair-mode)
12409         (electric-layout-rules, electric-layout-mode): Doc fixes.
12410         (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
12412 2012-02-08  Martin Rudalics  <rudalics@gmx.at>
12414         * server.el (server-unselect-display): Don't inadvertently kill
12415         the current buffer.  (Bug#10729)
12417 2012-02-08  Glenn Morris  <rgm@gnu.org>
12419         * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
12420         (sql-list-table): Doc fixes.
12422         * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
12423         Comment out (does nothing).
12425         * completion.el (dynamic-completion-mode):
12426         * dirtrack.el (dirtrack-debug-mode):
12427         * electric.el (electric-layout-mode):
12428         * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
12429         * face-remap.el (text-scale-mode, buffer-face-mode):
12430         * iimage.el (iimage-mode):
12431         * image-mode.el (image-transform-mode):
12432         * minibuffer.el (completion-in-region-mode):
12433         * scroll-lock.el (scroll-lock-mode):
12434         * simple.el (next-error-follow-minor-mode):
12435         * tar-mode.el (tar-subfile-mode):
12436         * tooltip.el (tooltip-mode):
12437         * vcursor.el (vcursor-use-vcursor-map):
12438         * wid-browse.el (widget-minor-mode):
12439         * emulation/tpu-edt.el (tpu-edt-mode):
12440         * emulation/tpu-extras.el (tpu-cursor-free-mode):
12441         * international/iso-ascii.el (iso-ascii-mode):
12442         * language/thai-util.el (thai-word-mode):
12443         * mail/supercite.el (sc-minor-mode):
12444         * net/goto-addr.el (goto-address-mode):
12445         * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
12446         * progmodes/cwarn.el (cwarn-mode):
12447         * progmodes/flymake.el (flymake-mode):
12448         * progmodes/glasses.el (glasses-mode):
12449         * progmodes/hideshow.el (hs-minor-mode):
12450         * progmodes/pascal.el (pascal-outline-mode):
12451         * textmodes/enriched.el (enriched-mode):
12452         * vc/smerge-mode.el (smerge-mode):
12453         Doc fixes (minor mode argument).
12455 2012-02-07  Eli Zaretskii  <eliz@gnu.org>
12457         * ls-lisp.el (ls-lisp-sanitize): New function.
12458         (ls-lisp-insert-directory): Use it to fix or remove any elements
12459         in file-alist with missing attributes.  (Bug#4673)
12461 2012-02-07  Alan Mackenzie  <acm@muc.de>
12463         Fix spurious recognition of c-in-knr-argdecl.
12465         * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
12466         putative K&R region.
12468 2012-02-07  Alan Mackenzie  <acm@muc.de>
12470         * progmodes/cc-engine.el (c-forward-objc-directive):
12471         Prevent looping in "#pragma mark @implementation".
12473 2012-02-07  Michael Albinus  <michael.albinus@gmx.de>
12475         * notifications.el (notifications-on-closed-signal): Make `reason'
12476         optional.  (Bug#10744)
12478 2012-02-07  Glenn Morris  <rgm@gnu.org>
12480         * emacs-lisp/easy-mmode.el (define-minor-mode):
12481         Doc fixes for the macro and the mode it defines.
12483         * image.el (imagemagick-types-inhibit): Doc fix.
12485         * cus-start.el (imagemagick-render-type): Add it.
12487 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
12489         * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
12490         Set the default at load time, too, so that `font-lock-fontify-buffer'
12491         can be called without setting up the entire mode first.  This fixes
12492         a bug in `mm-inline-text' with C MIME parts.
12494 2012-02-06  Chong Yidong  <cyd@gnu.org>
12496         * simple.el (list-processes--refresh): Delete exited processes
12497         (Bug#8094).
12499         * comint.el (comint-next-prompt): next-single-char-property-change
12500         and prev-single-char-property-change never return nil (Bug#8657).
12502         * custom.el (defcustom): Doc fix (Bug#9711).
12504 2012-02-05  Chong Yidong  <cyd@gnu.org>
12506         * cus-edit.el (custom-variable-reset-backup): Quote the value
12507         before storing it in the customized-value property (Bug#6712).
12508         (custom-display): Add a customization type tag.
12509         (custom-buffer-create-internal): Improve tooltip message.
12511         * wid-edit.el (widget-field-value-get): New optional arg to
12512         suppress trailing whitespace truncation.
12513         (character): Use it (Bug#2689).
12515 2012-02-05  Andreas Schwab  <schwab@linux-m68k.org>
12517         * progmodes/gud.el (gud-pv): Use pv instead of pv1.
12518         * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
12520 2012-02-05  Chong Yidong  <cyd@gnu.org>
12522         * cus-edit.el (custom-variable-value-create): For mismatched
12523         types, show the current value (Bug#7600).
12525         * custom.el (defcustom): Doc fix.
12527 2012-02-05  Glenn Morris  <rgm@gnu.org>
12529         * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
12531 2012-02-05  Juanma Barranquero  <lekktu@gmail.com>
12533         * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
12534         (pp-buffer): Use `ignore-errors', `looking-at-p'.
12535         (pp-last-sexp): Use `looking-at-p'.
12537 2012-02-04  Glenn Morris  <rgm@gnu.org>
12539         * files.el (revert-buffer):
12540         Doc fix (mention revert-buffer-in-progress-p).
12542         * emacs-lisp/ert-x.el (ert-simulate-command):
12543         Check deferred-action-list (which is obsolete) is bound.
12545         * subr.el (with-wrapper-hook): Doc fixes.
12547         * simple.el (filter-buffer-substring-functions)
12548         (buffer-substring-filters, filter-buffer-substring): Doc fixes.
12550 2012-02-04  Lars Ljung  <lars@matholka.se>  (tiny change)
12552         * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
12553         anywhere in shell-file-name, not just at the beginning.  (Bug#10523)
12555 2012-02-04  Leo Liu  <sdl.web@gmail.com>
12557         * emacs-lisp/smie.el: Fix dead link (Bug#10711).
12559 2012-02-04  Glenn Morris  <rgm@gnu.org>
12561         * image.el (image-extension-data): Add obsolete alias.
12563         * isearch.el (isearch-update): Doc fix.
12565         * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
12567         * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
12569 2012-02-03  Glenn Morris  <rgm@gnu.org>
12571         * image.el (image-animated-p): Doc fix.  Use image-animated-types.
12572         (image-animate-timeout): Doc fix.
12574         * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
12576 2012-02-02  Glenn Morris  <rgm@gnu.org>
12578         * server.el (server-auth-dir): Doc fix.
12579         (server-eval-at): Doc fix.  Give an explicit error if !server-use-tcp.
12581         * subr.el (run-mode-hooks): Doc fix.
12583 2012-02-02  Juri Linkov  <juri@jurta.org>
12585         * image-mode.el (image-toggle-display-image): Remove tautological
12586         `major-mode' from the `derived-mode-p' test.
12588 2012-02-02  Kenichi Handa  <handa@m17n.org>
12590         * composite.el (compose-region): Cancel previous change.
12592 2012-02-02  Kenichi Handa  <handa@m17n.org>
12594         * composite.el (compose-region, compose-string): Signal error for
12595         a null string component (Bug#6988).
12597 2012-02-01  Chong Yidong  <cyd@gnu.org>
12599         * view.el (view-buffer-other-window, view-buffer-other-frame):
12600         Handle special modes like view-buffer (Bug#10650).
12601         (view-buffer): Simplify.
12603         * frame.el (set-frame-font): Tweak meaning of third argument.
12605         * dynamic-setting.el (font-setting-change-default-font):
12606         Use set-frame-font (Bug#9982).
12608 2012-02-01  Glenn Morris  <rgm@gnu.org>
12610         * progmodes/compile.el (compilation-internal-error-properties):
12611         Respect compilation-first-column in the "*compilation*" buffer.
12613         * emacs-lisp/easy-mmode.el (define-minor-mode):
12614         Relax :variable's test for a named function.
12616 2012-01-31  Alan Mackenzie  <acm@muc.de>
12618         * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
12619         off by one error.
12621 2012-01-31  Chong Yidong  <cyd@gnu.org>
12623         * frame.el (set-frame-font): New arg ALL-FRAMES.
12625         * menu-bar.el (menu-set-font): Use set-frame-font.
12627         * faces.el (face-spec-reset-face): Don't apply unspecified
12628         attribute values to the default face.
12630 2012-01-31  Juanma Barranquero  <lekktu@gmail.com>
12632         * progmodes/cwarn.el (cwarn): Remove dead link.
12633         (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
12634         Remove * from defcustom docstrings.
12635         (turn-on-cwarn-mode): Make obsolete.
12636         (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
12637         (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
12639 2012-01-31  Glenn Morris  <rgm@gnu.org>
12641         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
12642         Fix :variable handling of mode a symbol not equal to modefun.
12643         Allow named functions to be used as the cdr of :variable.
12645 2012-01-30  Glenn Morris  <rgm@gnu.org>
12647         * emacs-lisp/authors.el (authors-fixed-entries):
12648         Remove reference to deleted file rnewspost.el.
12650 2012-01-29  Juanma Barranquero  <lekktu@gmail.com>
12652         * window.el (window-with-parameter): Remove unused variable `windows'.
12653         (window--side-check): Remove unused variable `code'.
12654         (window--resize-siblings): Remove unused variable `first'.
12655         (adjust-window-trailing-edge): Remove unused variable `failed'.
12656         (window-deletable-p, window--delete): Remove unused variable `buffer'.
12657         Use `let', not `let*'.
12658         (balance-windows-2): Remove unused variable `found'.
12659         (window--state-put-2): Remove unused variable `splits'.
12660         (window-state-put): Remove unused variable `selected'.
12661         (same-window-p): Use `string-match-p'.
12662         (display-buffer-assq-regexp): Remove unused variable `value'.
12663         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
12664         Mark argument ALIST as ignored.
12665         (pop-to-buffer): Remove unused variable `old-window'.
12667 2012-01-29  Eli Zaretskii  <eliz@gnu.org>
12669         * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
12670         and .lzma compressed files.
12672 2012-01-29  Chong Yidong  <cyd@gnu.org>
12674         * frame.el (window-system-default-frame-alist): Doc fix.
12676         * dynamic-setting.el (font-setting-change-default-font): Don't
12677         change the default face if SET-FONT argument is non-nil (Bug#9982).
12679 2012-01-29  Samuel Bronson  <naesten@gmail.com>
12681         * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
12683 2012-01-29  Syver Enstad  <syver.enstad@cisco.com>  (tiny change)
12685         * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
12686         breakpoints in files outside current directory (Bug#6098).
12688 2012-01-29  Chong Yidong  <cyd@gnu.org>
12690         * progmodes/python.el: Require ansi-color at top-level.
12692         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
12693         Define and use in Emacs Lisp mode (Bug#9360).
12694         (lisp-mode-abbrev-table): Add doc.
12695         (lisp-mode-variables): Don't set local-abbrev-table.
12696         (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
12698 2012-01-28  Roland Winkler  <winkler@gnu.org>
12700         * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
12702 2012-01-28  Roland Winkler  <winkler@gnu.org>
12704         * textmodes/bibtex.el (bibtex-entry-alist): New function.
12705         (bibtex-set-dialect): Use it.  Either set global values of
12706         dialect-dependent variables or bind these variables buffer-locally
12707         (Bug#10254).
12708         (bibtex-mode): Call bibtex-set-dialect via
12709         hack-local-variables-hook.
12710         (bibtex-dialect): Update docstring.
12711         Add safe-local-variable predicate.
12712         (bibtex-entry-alist, bibtex-field-alist): Initialize via
12713         bibtex-set-dialect.
12714         (bibtex-mode-map): Define menu for each dialect.
12715         (bibtex-entry): Fix docstring.
12717 2012-01-28  Chong Yidong  <cyd@gnu.org>
12719         * eshell/esh-arg.el (eshell-quote-argument): New function.
12721         * eshell/esh-ext.el (eshell-invoke-batch-file):
12722         * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
12723         first arg to eshell-parse-command (Bug#10523).
12725 2012-01-28  Drew Adams  <drew.adams@oracle.com>
12727         * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
12728         `default-directory' is non-nil.
12730 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
12732         * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
12733         line that displays system-configuration-options.  (Bug#9924)
12735 2012-01-28  Drew Adams  <drew.adams@oracle.com>
12737         * descr-text.el (describe-char): Show information about POS, in
12738         addition to information about the character at POS.  Improve and
12739         update the doc string.  Change "code point" to "code point in
12740         charset", to avoid confusion with the character's Unicode code
12741         point shown above that.  (Bug#10129)
12743 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
12745         * descr-text.el (describe-char): Show the raw character, not only
12746         its display form at POS.  Suggested by Kenichi Handa <handa@m17n.org>.
12747         See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
12748         for the reasons.
12750 2012-01-28  Phil Hagelberg  <phil@hagelb.org>
12752         * emacs-lisp/package.el (package-install):
12753         Run package-refresh-contents if there is no archive yet (Bug#9798).
12755 2012-01-28  Chong Yidong  <cyd@gnu.org>
12757         * emacs-lisp/package.el (package-maybe-load-descriptor):
12758         New function, split from package-maybe-load-descriptor.
12759         (package-maybe-load-descriptor): Use it.
12760         (package-download-transaction): Fully load required packages
12761         inside the loop, so that `require' calls work (Bug#10593).
12762         (package-install): No need to call package-initialize now.
12764 2012-01-28  Chong Yidong  <cyd@gnu.org>
12766         * simple.el (deactivate-mark): Doc fix (Bug#8614).
12768         * tooltip.el (tooltip-mode): Doc fix.
12769         (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
12771         * frame.el (set-cursor-color): Doc fix (Bug#352).
12773         * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
12774         (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
12776         * cus-edit.el (custom-buffer-create-internal): Fix search button
12777         action (Bug#10542).
12778         (customize-unsaved, customize-saved): Doc fix (Bug#10541).
12780 2012-01-27  Eduard Wiebe  <usenet@pusto.de>
12782         * dired.el (dired-mark-files-regexp):
12783         Include any subdirectory components.  (Bug#10445)
12785 2012-01-27  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
12787         * pcmpl-unix.el (pcmpl-ssh-known-hosts):
12788         Handle [host]:port syntax.  (Bug#10533)
12790 2012-01-27  Alex Harsanyi  <harsanyi@mac.com>
12792         * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
12794 2012-01-26  Glenn Morris  <rgm@gnu.org>
12796         * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
12797         * term.el (term-raw-escape-map): Use Control-X-prefix.
12798         * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map.  (Bug#10566)
12800 2012-01-25  Martin Rudalics  <rudalics@gmx.at>
12802         * window.el (window-state-get, window--state-get-1): Don't deal
12803         with fixed-sizeness of windows.  Simplify code.
12805 2012-01-25  Jérémy Compostella  <jeremy.compostella@gmail.com>
12807         * window.el (window--state-get-1, window--state-put-2):
12808         Don't save and restore the mark.
12810 2012-01-25  Chong Yidong  <cyd@gnu.org>
12812         * custom.el (custom-variable-p): Doc fix.
12814 2012-01-25  Glenn Morris  <rgm@gnu.org>
12816         * dired.el (dired-goto-file): Handle some of the more common
12817         characters that `ls -b' escapes.  (Bug#10596)
12819         * progmodes/compile.el (compilation-next-error-function):
12820         Respect compilation-first-column in the "*compilation*" buffer.
12821         * progmodes/grep.el (grep-first-column): New variable.  (Bug#10594)
12823         * vc/vc.el (vc-modify-change-comment): Scoping fix.  (Bug#10513)
12825 2012-01-24  Glenn Morris  <rgm@gnu.org>
12827         * pcmpl-gnu.el (pcomplete/tar): Handle " - ".  (Bug#10457)
12829 2012-01-24  Julien Danjou  <julien@danjou.info>
12831         * color.el (color-rgb-to-hsl): Fix value computing.
12832         (color-hue-to-rgb): New function.
12833         (color-hsl-to-rgb): New function.
12834         (color-clamp, color-saturate-hsl, color-saturate-name)
12835         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
12836         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
12838 2012-01-24  Glenn Morris  <rgm@gnu.org>
12840         * vc/vc-rcs.el (vc-rcs-create-tag):
12841         * vc/vc-sccs.el (vc-sccs-create-tag):
12842         Fix argument spec to be what vc-create-tag expects.  (Bug#10515)
12844 2012-01-23  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
12846         * eshell/esh-util.el (eshell-read-hosts-file):
12847         Skip comment lines.  (Bug#10549)
12849         * eshell/em-unix.el (pcomplete/ssh): Remove.  (Bug#10548)
12851 2012-01-23  Juanma Barranquero  <lekktu@gmail.com>
12853         * subr.el (display-delayed-warnings): Doc fix.
12854         (collapse-delayed-warnings): New function to collapse identical
12855         adjacent warnings.
12856         (delayed-warnings-hook): Add it.
12858 2012-01-22  Michael Albinus  <michael.albinus@gmx.de>
12860         * net/tramp.el (tramp-action-login): Set connection property "login-as".
12862         * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
12863         (tramp-default-user-alist): Don't add "pscp".
12864         (tramp-do-copy-or-rename-file-out-of-band): Use connection
12865         property "login-as", if set.  (Bug#10530)
12867 2012-01-21  Michael Albinus  <michael.albinus@gmx.de>
12869         * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
12870         "plink1" and "psftp".  (Bug#10530)
12872 2012-01-21  Kenichi Handa  <handa@m17n.org>
12874         * international/mule-cmds.el (prefer-coding-system): Show a
12875         warning message if the default value of file-name-coding-system
12876         was not changed.
12878 2012-01-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
12880         * windmove.el (windmove-reference-loc):
12881         Fix windmove-reference-loc miscalculation.
12883 2012-01-21  Jay Belanger  <jay.p.belanger@gmail.com>
12885         * calc/calc-units.el (math-put-default-units): Don't use "1" as a
12886         default unit.
12888 2012-01-21  Glenn Morris  <rgm@gnu.org>
12890         * international/mule.el (auto-coding-alist): Add .tbz.
12892         * files.el (local-enable-local-variables): Doc fix.
12893         (inhibit-local-variables-regexps): Rename from
12894         inhibit-first-line-modes-regexps.  Keep old name as obsolete alias.
12895         Doc fix.  Add some extensions from auto-coding-alist.
12896         (inhibit-local-variables-suffixes):
12897         Rename from inhibit-first-line-modes-suffixes.  Doc fix.
12898         (inhibit-local-variables-p):
12899         New function, extracted from set-auto-mode-1.
12900         (set-auto-mode): Doc fix.  Respect inhibit-local-variables-regexps.
12901         (set-auto-mode-1): Doc fix.  Use inhibit-local-variables-p.
12902         (hack-local-variables): Doc fix.  Make the mode-only case
12903         respect enable-local-variables and friends.
12904         Respect inhibit-local-variables-regexps for file-locals, but
12905         not for directory-locals.
12906         (set-visited-file-name):
12907         Take account of inhibit-local-variables-regexps.
12908         Whether it applies may change as the file name is changed.
12909         * jka-cmpr-hook.el (jka-compr-install):
12910         * jka-compr.el (jka-compr-uninstall):
12911         Update for inhibit-first-line-modes-suffixes name change.
12913 2012-01-20  Martin Rudalics  <rudalics@gmx.at>
12915         * help-macro.el (make-help-screen): Temporarily restore original
12916         binding for minor-mode-map-alist (Bug#10454).
12918 2012-01-19  Julien Danjou  <julien@danjou.info>
12920         * color.el (color-name-to-rgb): Use the white color to find the max
12921         color component value and return correctly computed values.
12922         (color-name-to-rgb): Add missing float conversion for max value.
12924 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
12926         * window.el (window--state-get-1, window-state-get): Do not use
12927         special state value for window-persistent-parameters.
12928         Rename argument IGNORE to WRITABLE.  Rewrite doc-string.
12929         (window--state-put-2): Reset all window parameters to nil before
12930         assigning values of persistent parameters.
12932 2012-01-18  Alan Mackenzie  <acm@muc.de>
12934         Eliminate sluggishness and hangs in fontification of "semicolon
12935         deserts".
12937         * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
12938         Change value 10000 -> 3000.
12939         (c-state-safe-place): Reformulate so it doesn't stack up an
12940         infinite number of wrong entries in c-state-nonlit-pos-cache.
12941         (c-determine-limit-get-base, c-determine-limit): New functions to
12942         determine backward search limits disregarding literals.
12943         (c-find-decl-spots): Amend commenting.
12944         (c-cheap-inside-bracelist-p): New function which detects "={".
12946         * progmodes/cc-fonts.el
12947         (c-make-font-lock-BO-decl-search-function): Give a limit to a
12948         backward search.
12949         (c-font-lock-declarations): Fix an occurrence of point being
12950         undefined.  Check additionally for point being in a bracelist or
12951         near a macro invocation without a semicolon so as to avoid a
12952         fruitless time consuming search for a declarator.  Give a more
12953         precise search limit for declarators using the new
12954         c-determine-limit.
12956 2012-01-18  Glenn Morris  <rgm@gnu.org>
12958         * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
12959         (set-auto-mode): Doc fixes.
12961 2012-01-17  Glenn Morris  <rgm@gnu.org>
12963         * isearch.el (search-nonincremental-instead): Fix doc typo.
12965         * dired.el (dired-insert-directory): Handle newlines in directory name.
12966         (dired-build-subdir-alist): Unescape newlines in directory name.
12968 2012-01-17  Michael Albinus  <michael.albinus@gmx.de>
12970         * net/tramp.el (tramp-local-end-of-line): New defcustom.
12971         (tramp-action-login, tramp-action-yesno, tramp-action-yn)
12972         (tramp-action-terminal): Use it.  (Bug#10530)
12974 2012-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12976         * minibuffer.el (completion--replace): Strip properties (bug#10062).
12978 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
12980         * window.el (window-state-ignored-parameters): Remove variable.
12981         (window--state-get-1): Rename argument MARKERS to IGNORE.
12982         Handle persistent window parameters.  Make copy of clone-of
12983         parameter only if requested.  (Bug#10348)
12984         (window--state-put-2): Install a window parameter only if it has
12985         a non-nil value or an existing parameter shall be overwritten.
12987 2012-01-15  Michael Albinus  <michael.albinus@gmx.de>
12989         * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
12991 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
12993         * info.el (Info-toc-build): If the Info file has no "Up" pointer,
12994         don't pass the (nil) value of `upnode' to string-match.
12996 2012-01-14  Chong Yidong  <cyd@gnu.org>
12998         * startup.el (command-line): Fix X resource class for cursorColor.
12999         Fix values recognized by the cursorBlink resource.
13001 2012-01-14  Paul Eggert  <eggert@cs.ucla.edu>
13003         * epg.el (epg--make-temp-file): Avoid permission race condition
13004         when running on old Emacs versions (bug#10403).
13006 2012-01-14  Glenn Morris  <rgm@gnu.org>
13008         * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
13010 2012-01-13  Alan Mackenzie  <acm@muc.de>
13012         Fix filling for when filladapt mode is enabled.
13014         * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
13015         c-mask-paragraph, pass in `fill-paragraph' rather than
13016         `fill-region-as-paragraph'.  (This is a reversion of a previous
13017         change.)
13018         * progmodes/cc-mode.el (c-basic-common-init):
13019         Make fill-paragraph-handle-comment buffer local and set it to nil.
13021 2012-01-13  Glenn Morris  <rgm@gnu.org>
13023         * dired.el (dired-switches-escape-p): New function.
13024         (dired-insert-directory): Use dired-switches-escape-p.
13025         (dired-get-filename): Undo "\ " quoting if needed.  (Bug#10469)
13027         * find-dired.el (find-ls-option): Doc fix.  (Bug#10262)
13029 2012-01-12  Glenn Morris  <rgm@gnu.org>
13031         * mail/sendmail.el (mail-mode): Update paragraph-separate for
13032         changes in adaptive-fill-regexp.  (Bug#10276)
13034 2012-01-11  Alan Mackenzie  <acm@muc.de>
13036         Fix Emacs bug #10463 - put `widen's around the critical spots.
13038         * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
13039         widen around each invocation of c-state-pp-to-literal.  Remove an
13040         unused let variable.
13042 2012-01-11  Glenn Morris  <rgm@gnu.org>
13044         * dired-aux.el (dired-do-shell-command): Fix */? logic.  (Bug#6561)
13045         Doc fix.
13047 2012-01-10  Chong Yidong  <cyd@gnu.org>
13049         * net/network-stream.el (network-stream-open-starttls):
13050         Avoid emitting a confusing error message when the server gives a bad
13051         response to the capability command.
13053 2012-01-10  Glenn Morris  <rgm@gnu.org>
13055         * mail/unrmail.el (unrmail): Tweak previous change.
13057 2012-01-09  Chong Yidong  <cyd@gnu.org>
13059         * custom.el (custom-safe-themes): Use SHA-256 for hashing.
13061 2012-01-08  Alan Mackenzie  <acm@muc.de>
13063         Optimise font locking in long enum definitions.
13065         * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
13066         arm to a cond form to handle enums.
13067         * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
13068         * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
13070 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
13072         * files.el (move-file-to-trash): Preserve default file modes on error.
13073         (Bug#10401)
13075 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13077         * faces.el (set-face-attribute): Clarify the meaning of the nil
13078         frame (bug#10294).
13080         * subr.el (with-selected-frame): Mention that the selected frame
13081         is restored (bug#9980).
13083         * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
13084         (bug#9759).
13086         * mail/smtpmail.el (password-cache-add): Remove unused declaration.
13087         (password-read): Don't autoload unused function.
13089 2012-01-07  Juanma Barranquero  <lekktu@gmail.com>
13091         * progmodes/which-func.el (which-func-mode): Turn into a
13092         non-interactive function and mark as obsolete (bug#10428).
13094 2012-01-06  Chong Yidong  <cyd@gnu.org>
13096         * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
13097         (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
13098         functions, along with 1 and -1.
13100 2012-01-06  Eli Zaretskii  <eliz@gnu.org>
13102         * time.el (display-time-load-average)
13103         (display-time-default-load-average): Doc fixes.  See the thread
13104         starting at
13105         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
13106         for the details.
13108 2012-01-06  Glenn Morris  <rgm@gnu.org>
13110         * mail/unrmail.el (unrmail): Give an explicit error if the input file
13111         has no messages.  (Bug#10377)
13113         * info.el (Info-mode-map): Bind e to end-of-buffer, rather
13114         than Info-edit.  (Bug#10385)
13116         * time.el (display-time-load-average, display-time-next-load-average):
13117         Doc fixes.
13119         * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
13120         local setting of buffer-read-only to the input buffer.  (Bug#10419)
13122         * calendar/calendar.el (calendar-mode):
13123         Locally set scroll-margin to 0.  (Bug#10379)
13125 2012-01-06  Ulrich Mueller  <ulm@gentoo.org>
13127         * play/doctor.el (doctor-death): Escape "," characters.  (Bug#10370)
13129 2012-01-05  Glenn Morris  <rgm@gnu.org>
13131         * eshell/em-unix.el (diff-no-select): Autoload it.
13132         (eshell/diff): Use diff-no-select.  (Bug#10420)
13134 2012-01-05  Chong Yidong  <cyd@gnu.org>
13136         * shell.el (shell-dynamic-complete-functions): Revert last change.
13137         (shell-command-completion-function): New function.
13138         (shell-completion-vars): Use it to implement
13139         shell-completion-execonly (Bug#10417).
13141         * custom.el (enable-theme): Don't set custom-safe-themes.
13143         * cus-theme.el (custom-theme-merge-theme):
13144         Ignore custom-enabled-themes and custom-safe-themes.
13146 2012-01-05  Michael R. Mauger  <mmaug@yahoo.com>
13148         * progmodes/sql.el (sql-login-hook): Add hook to respond to the
13149         first prompt in `sql-interacive-mode'.
13150         (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
13151         keywords.
13152         (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
13153         (sql-product-interactive): Bug fix: Set `sql-buffer' in
13154         context of original buffer.  Invoke `sql-login-hook'.
13156 2012-01-04  Eli Zaretskii  <eliz@gnu.org>
13158         * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
13159         letters in cite-prefix.
13161 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13163         * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
13165 2012-01-03  Chong Yidong  <cyd@gnu.org>
13167         * shell.el (shell-dynamic-complete-functions):
13168         Put pcomplete-completions-at-point, so as to try
13169         comint-filename-completion first (Bug#10417).
13171 2012-01-02  Richard Stallman  <rms@gnu.org>
13173         * battery.el (battery-status-function):
13174         Detect when to use battery-yeeloong-sysfs.
13175         (battery-echo-area-format): Add string for Yeeloong.
13176         (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
13177         (battery-yeeloong-sysfs): New function.
13179 2012-01-02  Chong Yidong  <cyd@gnu.org>
13181         * dirtrack.el (dirtrack-list): Eliminate unused third element.
13182         (dirtrack): Merge code for handling relative filenames in prompt
13183         from shell-dir-cookie-watcher.
13184         (dirtrack-debug-message): New arg to avoid excess format calls.
13186         * shell.el (shell-dir-cookie-re): Variable deleted.
13187         (shell-dir-cookie-watcher): Function deleted.
13188         (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
13189         with dirtrack-mode.
13191 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
13193         * term/w32-win.el (dynamic-library-alist) <gnutls>:
13194         Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
13195         libgnutls-26.dll.
13197 2011-12-31  Andreas Schwab  <schwab@linux-m68k.org>
13199         * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
13201 2011-12-31  Eli Zaretskii  <eliz@gnu.org>
13203         * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
13204         headers of non-MIME messages, when rmail-enable-mime is non-nil.
13206 2011-12-29  Michael Albinus  <michael.albinus@gmx.de>
13208         * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
13209         also for alternative shells.
13210         (tramp-open-connection-setup-interactive-shell): Check, whether
13211         the shell is a busybox.
13212         (tramp-send-command): Don't suppress multiple prompts for
13213         busyboxes, it hurts.
13215 2011-12-28  Chong Yidong  <cyd@gnu.org>
13217         * progmodes/gdb-mi.el (gdb-get-source-file-list)
13218         (gdb-get-source-file): Move mode line update to
13219         gdb-get-source-file (Bug#10087).
13221 2011-12-25  Chong Yidong  <cyd@gnu.org>
13223         * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
13224         gud-gdb-marker-filter without taking it as an argument.
13225         (gud-gdb-run-command-fetch-lines): Caller changed.
13226         (gud-gdb-completion-function): New variable.
13227         (gud-gdb-completion-at-point): Use it.
13228         (gud-gdb-completions-1): Split from gud-gdb-completions.
13230         * progmodes/gdb-mi.el (gdb-input): Accept command and handler
13231         function as separate arguments.
13232         (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
13233         (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
13234         (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
13235         (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
13236         (gdb-stopped, def-gdb-auto-update-trigger)
13237         (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
13238         (gdb-get-changed-registers, gdb-get-main-selected-frame):
13239         Callers changed.
13240         (gud-gdbmi-completions): New function.
13241         (gdb): Use it for generating the completion table.
13243 2011-12-24  Alan Mackenzie  <acm@muc.de>
13245         Introduce a mechanism to widen the region used in context font
13246         locking.  Use this to protect declarations from losing their contexts.
13248         * progmodes/cc-langs.el (c-before-font-lock-functions):
13249         Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
13250         (c-before-context-fontification-functions): New defvar, a list of
13251         functions to be run just before context (etc.) font locking.
13253         * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
13254         New, functionality extracted from
13255         c-neutralize-syntax-in-and-mark-CPP.
13256         (c-in-after-change-fontification): New variable.
13257         (c-after-change): Set c-in-after-change-fontification.
13258         (c-set-fl-decl-start): Rejig its interface, so it can be called
13259         from both after-change and context fontifying.
13260         (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
13261         New functions.
13262         (c-standard-font-lock-fontify-region-function): New variable.
13263         (c-font-lock-fontify-region): New function.
13265 2011-12-24  Juri Linkov  <juri@jurta.org>
13267         * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
13268         (Bug#10348)
13270 2011-12-23  Michael Albinus  <michael.albinus@gmx.de>
13272         * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
13273         existence of source file.  (Bug#10325)
13275 2011-12-23  Alan Mackenzie  <acm@muc.de>
13277         Fix unstable fontification inside templates.
13279         * progmodes/cc-langs.el (c-before-font-lock-functions):
13280         Newly created from the singular version.  The (c c++ objc) entry now
13281         additionally has c-set-fl-decl-start.  The other languages (apart
13282         from AWK) have that as a single entry.
13284         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
13285         The functionality for "local" declarations has been extracted to
13286         c-set-fl-decl-start.
13288         * progmodes/cc-mode.el (c-common-init, c-after-change):
13289         Changes due to pluralisation of c-before-font-lock-functions.
13290         (c-set-fl-decl-start): New function, extracted from
13291         c-font-lock-enclosing-decls and enhanced.
13293 2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
13295         * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
13297 2011-12-22  Juri Linkov  <juri@jurta.org>
13299         * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)
13301 2011-12-22  Chong Yidong  <cyd@gnu.org>
13303         * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
13305 2011-12-21  Drew Adams  <drew.adams@oracle.com>
13307         * files.el (file-remote-p): Fix docstring.  (Bug#10319)
13309 2011-12-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
13311         * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
13313 2011-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
13315         * progmodes/cfengine.el: Add Version.  Improve CFEngine 3.x syntax
13316         highlighting and support.  Fix up comments for capitalization.
13317         (cfengine-mode-debug): New var.
13318         (cfengine3-mode): Change the modeline indicator to "CFE3".
13319         (cfengine3-font-lock-keywords): Improve defun highlighting.
13320         (cfengine2-actions): Rename from `cfengine-actions'.
13321         (cfengine2-font-lock-keywords): Rename from
13322         `cfengine-font-lock-keywords'.
13323         (cfengine2-imenu-expression): Rename from
13324         `cfengine-imenu-expression'.
13325         (cfengine2-outline-level): Rename from `cfengine-outline-level'.
13326         (cfengine2-beginning-of-defun): Rename from
13327         `cfengine-beginning-of-defun'.
13328         (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
13329         (cfengine2-indent-line): Rename from `cfengine-indent-line'.
13330         (cfengine2-mode): Rename from `cfengine-mode'.  Change the
13331         modeline indicator to "CFE2".
13332         (cfengine-mode): Defalias to `cfengine-auto-mode'.
13333         (cfengine-mode-abbrevs): Mark obsolete.
13335 2011-12-21  Chong Yidong  <cyd@gnu.org>
13337         * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
13338         filename argument.
13340 2011-12-20  Martin Rudalics  <rudalics@gmx.at>
13342         * window.el (window-normalize-buffer-to-display): Remove.
13343         (display-buffer): Handle buffer-or-name argument as in Emacs 23.
13345 2011-12-19  Chong Yidong  <cyd@gnu.org>
13347         * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
13348         Don't signal an error in a predicate function; return non-nil.
13349         (vc-dir-mark-file): Move the error here.
13350         (vc-dir-mark-unmark): If acting on the region, keep going if one
13351         of the entries cannot be marked/unmarked.
13352         (vc-dir-mark-all-files): If current entry is a directory, mark
13353         only child files, as documented.
13355 2011-12-19  Vincent Belaïche  <vincentb1@users.sourceforge.net>
13357         * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
13358         branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
13359         addition.
13361 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
13363         * term/ns-win.el (ns-get-selection-internal)
13364         (ns-store-selection-internal): Declare.
13365         (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
13366         Declare as obsolete.
13367         (ns-get-pasteboard, ns-paste-secondary):
13368         Use ns-get-selection-internal.
13369         (ns-set-pasteboard, ns-copy-including-secondary):
13370         Use ns-store-selection-internal.
13372 2011-12-17  Chong Yidong  <cyd@gnu.org>
13374         * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
13375         (vc-deduce-fileset): Doc fix.
13377 2011-12-16  Andreas Schwab  <schwab@linux-m68k.org>
13379         * calc/calc-misc.el (calc-help): Avoid wrapping help message.
13381 2011-12-13  Sam Steingold  <sds@gnu.org>
13383         * man.el (Man-getpage-in-background): When running under a
13384         window-system, ignore $MANWIDTH and $COLUMNS.
13386 2011-12-15  Kenichi Handa  <handa@m17n.org>
13388         * language/ethio-util.el: Change coding tag to utf-8-emacs.
13389         (setup-ethiopic-environment-internal): Comment out key-binding for
13390         ethio-toggle-punctuation.
13392 2011-12-13  Alan Mackenzie  <acm@muc.de>
13394         Add the switch statement to AWK Mode.
13396         * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
13397         "default" to the keywords regexp.
13399         * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
13400         expression as the rest.
13401         (c-nonlabel-token-key): Allow string literals for AWK.
13402         Refactor for the other modes.
13404         Large brace-block initialisation makes CC Mode slow: Fix.
13405         Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13406         routines.  Limit backward searching in c-font-lock-enclosing.decl.
13408         * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
13409         pp-state and literal type in addition to the limits.
13410         (c-state-safe-place): New defun, extracted from c-state-literal-at.
13411         (c-state-literal-at): Use the above new defun.
13412         (c-slow-in-literal, c-fast-in-literal): Remove.
13413         (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13415         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
13416         being in a literal.  Add a limit for backward searching.
13418         * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
13419         c-slow-in-literal.
13421 2011-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13423         * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
13425 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
13427         * window.el (delete-other-windows): Use correct frame in call to
13428         window-with-parameter.
13430 2011-12-12  Daniel Pfeiffer  <occitan@t-online.de>
13432         * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
13433         (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
13434         (makefile-gmake-statements, makefile-makepp-statements):
13435         Use it and add new makepp keywords.
13436         (makefile-makepp-font-lock-keywords): Add new patterns.
13437         (makefile-match-function-end): Match new [...] and [[...]].
13439 2011-12-11  Juanma Barranquero  <lekktu@gmail.com>
13441         * ses.el (ses-call-printer-return, ses-cell-property-get)
13442         (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
13443         (ses-create-cell-variable, ses-reset-header-string)
13444         (ses-cell-set-formula, ses-repair-cell-reference-all)
13445         (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
13446         (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
13447         (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
13448         (ses-aset-with-undo, ses-load, ses-truncate-cell)
13449         (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
13450         (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
13451         (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
13452         (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
13453         (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
13454         (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
13455         (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
13456         (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
13458 2011-12-11  Vincent Belaïche  <vincentb1@users.sourceforge.net>
13460         * ses.el: The overall change is to add cell renaming, that is
13461         setting fancy names for cell symbols other than name matching
13462         "\\`[A-Z]+[0-9]+\\'" regexp .
13463         (ses-create-cell-variable): New defun.
13464         (ses-relocate-formula): Relocate formulas only for cells the
13465         symbols of which are not renamed, i.e. symbols whose names do not
13466         match regexp "\\`[A-Z]+[0-9]+\\'".
13467         (ses-relocate-all): Relocate values only for cells the symbols of
13468         which are not renamed.
13469         (ses-load): Create cells variables as the (ses-cell ...) are read,
13470         in order to check row col consistency with cell symbol name only
13471         for cells that are not renamed.
13472         (ses-replace-name-in-formula): New defun.
13473         (ses-rename-cell): New defun.
13475 2011-12-11  Chong Yidong  <cyd@gnu.org>
13477         * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
13478         for completion via gud-gdb-fetch-lines-filter (Bug#10274).
13480 2011-12-11  Eric Hanchrow  <eric.hanchrow@gmail.com>
13482         * window.el (other-window): Fix docstring.
13484 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
13486         * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
13487         `from' or `to' address before taking its substring.
13488         Fixes incorrect display in Rmail summary buffer whereby an RFC2047
13489         encoded name is chopped in the middle of the encoded string, and
13490         thus displayed encoded.
13492 2011-12-10  Juanma Barranquero  <lekktu@gmail.com>
13494         * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
13496 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
13498         * textmodes/texnfo-upd.el: Update commentary.  Add a warning not
13499         to use texinfo-update-node and commands that call it if the
13500         Texinfo file uses @node lines without next/prev/up pointers.
13501         Correct outdated description about texinfo-master-menu.
13502         (texinfo-all-menus-update, texinfo-master-menu)
13503         (texinfo-update-node, texinfo-every-node-update)
13504         (texinfo-multiple-files-update): Doc fix.  Warn against updating
13505         all the @node lines.
13506         (texinfo-master-menu): Only call texinfo-update-node if the prefix
13507         argument is numeric.  Explain better in the doc string what the
13508         function really does.
13509         (texinfo-insert-master-menu-list): Improve the error message
13510         displayed if there's no menu in the Top node.
13511         (Bug#2975)  See also this thread:
13512         http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
13514 2011-12-09  Manuel Gómez  <mgrojo@gmail.com>  (tiny change)
13516         * speedbar.el (speedbar-supported-extension-expressions):
13517         Add .adb and .ads, commonly used for Ada source code (bug#10256).
13519 2011-12-09  Juanma Barranquero  <lekktu@gmail.com>
13521         * printing.el (pr-mode-alist):
13522         * simple.el (filter-buffer-substring-functions)
13523         (completion-list-insert-choice-function):
13524         * window.el (window-with-parameter, window-atom-root)
13525         (window-sides-slots, window-size-fixed, window-min-delta)
13526         (window-max-delta, window--resize-mini-window)
13527         (window--resize-child-windows-normal, window-tree)
13528         (delete-other-windows, quit-window, split-window)
13529         (display-buffer-record-window, special-display-buffer-names)
13530         (special-display-regexps, special-display-popup-frame)
13531         (same-window-p, split-window-sensibly)
13532         (display-buffer-overriding-action, display-buffer-alist)
13533         (display-buffer-base-action, display-buffer, switch-to-buffer)
13534         (switch-to-buffer-other-window, switch-to-buffer-other-frame)
13535         (fit-window-to-buffer, recenter-positions)
13536         (mouse-autoselect-window-state, mouse-autoselect-window-select):
13537         * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
13538         and remove unneeded backslashes in docstrings.
13540 2011-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13542         * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
13544         * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
13545         (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
13546         end in ".mk".
13547         (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
13548         when reading the makefile (bug#10116).
13550 2011-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13552         * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
13553         (bug#10116).
13555 2011-12-06  Glenn Morris  <rgm@gnu.org>
13557         * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
13559 2011-12-06  Chong Yidong  <cyd@gnu.org>
13561         * progmodes/cc-fonts.el (c-annotation-face): Use defface.
13563 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
13565         * textmodes/table.el (table-shorten-cell): Fix typo.
13567 2011-12-05  Christopher Genovese  <genovese.cr@gmail.com>  (tiny change)
13569         * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
13571 2011-12-05  Eli Zaretskii  <eliz@gnu.org>
13573         * descr-text.el (describe-char): Fix display of strong
13574         right-to-left characters and directional embeddings and overrides.
13576         * simple.el (what-cursor-position): Fix display of codepoints of
13577         strong right-to-left characters.
13579 2011-12-05  Chong Yidong  <cyd@gnu.org>
13581         * faces.el (read-color): Doc fix.
13583 2011-12-05  Glenn Morris  <rgm@gnu.org>
13585         * align.el (align--set-marker): Add doc-string.
13586         Don't try to move something that is not a marker.  (Bug#10216)
13588 2011-12-04  Glenn Morris  <rgm@gnu.org>
13590         * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
13591         overly zealous deletion of trailing whitespace.
13593 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
13595         * server.el (server-delete-client): On Windows, do not try to delete
13596         the only terminal.
13597         (server-process-filter): On Windows, treat requests for a tty frame as
13598         if they were for a GUI frame if the running server is in GUI mode.
13600 2011-12-03  Glenn Morris  <rgm@gnu.org>
13602         * textmodes/texinfmt.el (batch-texinfo-format): Doc fix.  (Bug#10207)
13604 2011-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13606         * electric.el: Streamline electric-indent's hook.
13607         (electric-indent-chars): Revert to simple list.
13608         (electric-indent-functions): New var.
13609         (electric-indent-post-self-insert-function): Use it.
13611         * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
13612         there's no inferior buffer (bug#10196).
13613         (prolog-consult-compile): Don't use toggle-read-only.
13615 2011-12-02  Michael Albinus  <michael.albinus@gmx.de>
13617         * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
13618         interrupt.  (Bug#10187)
13620 2011-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13622         * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
13623         (bug#9160).
13625         * dired-aux.el (dired-query): Don't assume help-char is modifier-free
13626         (bug#10191).
13628 2011-12-02  Juri Linkov  <juri@jurta.org>
13630         * info.el (Info-search): Display "end of manual" when Isearch
13631         reaches the end of single-file Info manual.  (Bug#9918)
13633 2011-12-02  Eli Zaretskii  <eliz@gnu.org>
13635         * isearch.el (isearch-message-prefix): Run the input method part
13636         of the prompt through bidi-string-mark-left-to-right.  (Bug#10183)
13638 2011-12-02  Juri Linkov  <juri@jurta.org>
13640         * isearch.el (isearch-occur): Use `word-search-regexp' for
13641         `isearch-word'.
13642         (isearch-search-and-update): Add condition for `isearch-word' and
13643         call `word-search-regexp'.  (Bug#10145)
13645 2011-12-01  Glenn Morris  <rgm@gnu.org>
13647         * eshell/em-hist.el (eshell-hist-initialize):
13648         Handle eshell-history-size nil and HISTSIZE set or unset.
13649         (eshell-history-file-name, eshell-history-size): Fix custom type.
13651 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13653         * man.el (Man-completion-table): Fix the lambda case (bug#10168).
13655 2011-12-01  Michael McNamara  <mac@mail.brushroad.com>
13657         * progmodes/verilog-mode.el (verilog-pretty-expr):
13658         Rework verilog-pretty-expr to handle new assignment operators in system
13659         verilog, such as += *= and the like.
13660         (verilog-assignment-operator-re): Regular expression to find the
13661         assigment operator in a verilog assignment.
13662         (verilog-assignment-operation-re): Regular expression to find an
13663         assignment statement for pretty-expr.
13664         (verilog-in-attribute-p): Query returns true if point is in an
13665         attribute context; used to skip these for expression line up from
13666         pretty-expr.
13667         (verilog-in-parameter-p): Query returns true if point is in an
13668         parameter definition context; used to skip these for expression
13669         line up from pretty-expr.
13670         (verilog-in-parenthesis-p): Query returns true if point is in a
13671         parenthetical expression, specifically ( ) but not [ ] or { };
13672         used by pretty-expr.
13673         (verilog-just-one-space): If there is no space, don't add one.
13674         (verilog-get-lineup-indent-2): Specifically skip just attribute
13675         contexts for expression lineup, rather than skipping all
13676         parenthetical expressions.
13677         (verilog-calculate-indent): Fix comment, and fix indent.
13678         (verilog-do-indent): Indent declarations in lists (suggested by
13679         Joachim Lechner).
13680         (verilog-mode-abbrev-table): Populate abbrev mode with the various
13681         skeleton items.
13682         (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
13683         by Alain Mellan).
13685 2011-12-01  Wilson Snyder  <wsnyder@wsnyder.org>
13687         * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
13688         parameters with embedded comments.  Reported by Ray Stevens.
13689         (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
13690         verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
13691         Reported by Tim Holt.
13692         (verilog-auto): Fix AUTOing a upper module then AUTOing module
13693         instantiated by upper module causing wrong expansion until AUTOed a
13694         second time.  Reported by K C Buckenmaier.
13695         (verilog-diff-auto): Fix showing .* as a difference when
13696         `verilog-auto-star-save' off.  Reported by Dan Dever.
13697         (verilog-auto-reset, verilog-read-always-signals)
13698         (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
13699         temporary signals in reset list if
13700         verilog-auto-reset-blocking-in-non is nil, and match assignment
13701         style to each signal's assignment type, bug381.
13702         Reported by Thomas Esposito.
13703         (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
13704         (verilog-uvm-statement-re): Support UVM indentation and
13705         highlighting, with old OVM keywords only.
13706         (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
13707         Support AUTOTIEOFF creating non-wire data types.
13708         Suggested by Jonathan Greenlaw.
13709         (verilog-auto-insert-lisp, verilog-delete-to-paren)
13710         (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
13711         (verilog-inject-sense, verilog-read-inst-pins)
13712         (verilog-read-sub-decls, verilog-read-sub-decls-line):
13713         Fix mismatching parenthesis inside commented out code when deleting
13714         AUTOINST, bug383.  Reported by Jonathan Greenlaw.
13715         (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
13716         non-numeric vector width.  Reported by Alex Reed.
13717         (verilog-auto-ascii-enum): Add "onehot" option to work around not
13718         detecting signals with parameter widths.  Reported by Alex Reed.
13719         (verilog-auto-delete-trailing-whitespace):
13720         With `verilog-auto-delete-trailing-whitespace' remove trailing
13721         whitespace in auto expansion, bug371.  Reported by Brad Dobbie.
13722         (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
13723         Fix verilog-scan-cache corruption when running user AUTO expansion
13724         hooks that call indentation routines.
13725         (verilog-simplify-range-expression): Fix typo ignoring lower case
13726         identifiers.
13727         (verilog-delete-auto): Fix delete-autos to also remove user created
13728         automatics, as long as they start with AUTO.
13729         (verilog-batch-diff-auto, verilog-diff-auto)
13730         (verilog-diff-function): Add `verilog-diff-auto' and bind to
13731         "C-c?"  to report differences in AUTO expansion, ignoring spaces.
13732         (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
13733         (verilog-in-paren-quick, verilog-re-search-backward-quick)
13734         (verilog-re-search-forward-quick, verilog-syntax-ppss):
13735         Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
13736         is disabled and its cache will get corrupt, causing AUTOS not to
13737         expand.  Instead use only -quick functions.
13738         (verilog-scan-region): Fix scanning over escaped quotes.
13739         (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
13740         (verilog-re-search-backward-quick)
13741         (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
13742         related functions now ignore strings, to fix misparsing of strings
13743         with magic comments embedded in them.
13744         (verilog-read-auto-template):
13745         Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
13746         Reported by Brad Dobbie.
13747         (verilog-read-auto-template):
13748         Fix 'verilog-auto-inst-template-numbers' with comments.
13749         Reported by Brad Dobbie.
13750         (verilog-auto-inst, verilog-auto-inst-param)
13751         (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
13752         merge conflicts with AUTOINST, bug358.  Reported by Brad Dobbie.
13753         (verilog-auto-inst-template-numbers): Add 'lhs' policy for
13754         debugging templates without merge conflicts, bug357.
13755         Reported by Brad Dobbie.
13756         (verilog-read-auto-template):
13757         Fix verilog-auto-inst-template-numbers with multiple templates.
13758         Reported by Brad Dobbie.
13759         (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
13760         abbrevs so user won't be asked to save.
13761         (verilog-read-auto-lisp-present): Fix to start at beginning of
13762         buffer in case called outside of verilog-auto.
13763         (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
13764         to "X-2".  Reported by Matthew Myers.
13765         (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
13766         all inputs from module templates.  Reported by Leith Johnson.
13767         (verilog-module-inside-filename-p): Fix locating programs as with
13768         modules.
13769         (verilog-auto-inst-port): Fix vl-width expressions when using
13770         verilog-auto-inst-param-value, bug331.  Reported by Julian Gorfajn.
13771         (verilog-decls-get-regs, verilog-decls-get-signals,
13772         verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
13773         verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
13774         verilog-read-decls): Combine reg and wire structures into one var
13775         structure to represent SystemVerilog concepts.
13776         (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
13777         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
13778         (verilog-auto-wire-type, verilog-insert-definition):
13779         Add verilog-auto-wire-type and AUTOLOGIC to support using
13780         SystemVerilog "logic" keyword instead of "wire"/"reg".
13781         (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
13782         to declares outputs that also have assignments (presumably in an
13783         ifdef or generate if so there's not a driver conflict).
13784         Reported by Matthew Myers.
13785         (verilog-auto-declare-nettype, verilog-insert-definition):
13786         Add verilog-auto-declare-nettype to fix declarations using
13787         `default_nettype none.  Reported by Julian Gorfajn.
13788         (verilog-read-always-signals-recurse, verilog-read-decls)
13789         (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
13790         malformed end statement, bug325.  Reported by Joshua Wise and
13791         Andrew Drake.
13792         (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
13793         (verilog-inst-comment-re): Fix not deleting Interfaced comment
13794         when expanding .* in interfaces, bug320.
13795         Reported by Pierre-David Pfister.
13796         (verilog-read-module-name): Fix import statements between module
13797         name and open parenthesis, bug317.
13798         Reported by Pierre-David Pfister.
13799         (verilog-simplify-range-expression): Fix simplification of
13800         multiplications inside AUTOWIRE connections, bug303.
13801         (verilog-auto-inst-port): Support parameter expansion in
13802         multidimensional arrays.
13803         (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
13804         after "assert property".  Reported by Julian Gorfajn.
13805         (verilog-simplify-range-expression): Fix "couldn't merge" errors
13806         with multiplication, bug303.
13807         (verilog-read-decls): Fix parsing of unsigned data types, bug302.
13808         Reported by Jan Frode Lonnum.
13810 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
13812         * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
13813         (hfy-shell-file-name, hfy-shell):
13814         * international/fontset.el (x-decompose-font-name): Fix typos.
13816 2011-11-29  Ken Brown  <kbrown@cornell.edu>
13818         * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
13819         (gdb-version): Remove defvar.
13820         (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
13821         (gdb-gud-context-command, gdb-non-stop-handler)
13822         (gdb-current-context-command, gdb-stopped): Use it.
13823         (gdb-init-1): Enable pretty printing here.
13824         (gdb-non-stop-handler): Don't enable pretty-printing here.
13825         Check to see if the target supports non-stop mode; if not, turn off
13826         non-stop mode.  Use the following.
13827         (gdb-check-target-async): New defun.
13828         (gud-watch, gdb-stopped): Fix whitespace.
13829         (gdb-get-source-file): Don't try to display the source file if
13830         `gdb-main-file' is nil.
13832 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13834         * align.el: Try to generate fewer markers (bug#10047).
13835         (align--set-marker): New macro.
13836         (align-region): Use it.
13838 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13840         * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
13842 2011-11-29  Chong Yidong  <cyd@gnu.org>
13844         * indent.el (indent-for-tab-command, indent-according-to-mode):
13845         Doc fix.
13846         (indent-region): Doc fix.  Switch nested ifs to equivalent cond.
13848 2011-11-29  Michael Albinus  <michael.albinus@gmx.de>
13850         * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
13851         aware of remote file names.  (Bug#10124)
13853 2011-11-29  Chong Yidong  <cyd@gnu.org>
13855         * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
13857 2011-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13859         * files.el (find-file): Don't use force-same-window (bug#10144).
13860         * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
13861         use pop-to-buffer if the selected window can't be used.
13862         (pop-to-buffer-same-window): Use display-buffer--same-window-action.
13864 2011-11-28  Eli Zaretskii  <eliz@gnu.org>
13866         * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
13867         special-mode-map.
13869 2011-11-28  Chong Yidong  <cyd@gnu.org>
13871         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
13873 2011-11-27  Nick Roberts  <nickrob@snap.net.nz>
13875         * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
13876           gdb-get-source-file-list on gdb-create-source-file-list.
13878 2011-11-26  Eli Zaretskii  <eliz@gnu.org>
13880         * whitespace.el (whitespace-newline): Use a different foreground
13881         color for 16-color light-background displays.
13883 2011-11-24  Chong Yidong  <cyd@gnu.org>
13885         * window.el (display-buffer--special-action): Doc fix.
13887 2011-11-25  Juanma Barranquero  <lekktu@gmail.com>
13889         * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
13890         (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
13891         (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
13892         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
13893         (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
13894         (avl-tree-stack-first):
13895         * emacs-lisp/cconv.el (cconv--analyse-use):
13896         * net/gnutls.el (gnutls-negotiate): Fix typos.
13898 2011-11-24  Glenn Morris  <rgm@gnu.org>
13900         * lpr.el (lpr-windows-system, lpr-lp-system):
13901         * mail/binhex.el (binhex-begin-line):
13902         * progmodes/grep.el (grep-history, grep-find-history):
13903         * textmodes/flyspell.el:
13904         * vc/pcvs-defs.el (cvs-global-menu):
13905         * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
13906         * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
13907         * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
13909         * net/tls.el: Fix case of "GnuTLS".
13911         * paths.el (rmail-file-name): Format doc-string for make-docfile.
13913         * version.el (emacs-build-system): Give it a doc-string.
13915 2011-11-24  Juri Linkov  <juri@jurta.org>
13917         * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
13919 2011-11-24  Glenn Morris  <rgm@gnu.org>
13921         * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
13922         if called on a non-mime message just toggle the headers.  (Bug#8006)
13924 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
13926         * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
13927         (allout-lead-with-comment-string, allout-structure-deleted-hook)
13928         (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
13929         (allout-rebullet-heading, allout-open-sibtopic)
13930         (allout-toggle-current-subtree-encryption)
13931         (allout-toggle-subtree-encryption, allout-encrypt-string)
13932         (allout-next-topic-pending-encryption, allout-adjust-file-variable)
13933         (allout-distinctive-bullets-string, allout-auto-activation):
13934         * window.el (window-normalize-buffer-to-display):
13935         * progmodes/verilog-mode.el (verilog-batch-indent):
13936         * textmodes/bibtex.el (bibtex-field-braces-opt)
13937         (bibtex-field-strings-opt):
13938         * vc/cvs-status.el (cvs-tree-merge):
13939         Fix typos.
13941 2011-11-23  Michael Albinus  <michael.albinus@gmx.de>
13943         * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
13944         `non-essential' to t, in order to avoid remote connections.
13946 2011-11-23  Eli Zaretskii  <eliz@gnu.org>
13948         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
13949         On MS-DOS and MS-Windows, compare with loaddefs.el
13950         case-insensitively.
13952 2011-11-23  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
13954         * mail/unrmail.el (unrmail): Always add blank line.  (Bug#7743)
13956 2011-11-23  Glenn Morris  <rgm@gnu.org>
13958         * paths.el (rmail-file-name): Reformat the doc-string so that it
13959         is picked up.
13961         * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
13962         (rmail-auto-file): Ignore case in the "special" field names,
13963         as mail-fetch-field does for all others.
13965         * mail/rmail.el (rmail-forward):
13966         * mail/rmailkwd.el (rmail-set-label):
13967         * mail/rmailout.el (rmail-output, rmail-output-as-seen)
13968         (rmail-output-body-to-file): Give error if no message.  (Bug#10082)
13970         * mail/rmail.el (rmail-current-message): Doc fix.
13972         * mail/rmail.el (rmail-message-filter): Mark as obsolete.  (Bug#2624)
13974 2011-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13976         * server.el (server-eval-and-print): Allow C-g (bug#6585).
13978 2011-11-22  Glenn Morris  <rgm@gnu.org>
13980         * mail/rmailmm.el (test-rmail-mime-handler)
13981         (test-rmail-mime-bulk-handler)
13982         (test-rmail-mime-multipart-handler): Move tests to test/ directory.
13984 2011-11-21  Juri Linkov  <juri@jurta.org>
13986         * calc/calc.el (calc-read-key-sequence):
13987         Let-bind `input-method-function' to nil.  (Bug#10018)
13989 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13991         * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
13992         Tell the caller that the next line needs recomputation, even
13993         though it doesn't start a sexp (bug#10094).
13995 2011-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13997         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
13999 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14001         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
14002         Use force-same-window.
14004 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
14006         * descr-text.el (describe-char-unicode-data):
14007         * json.el (json-string-escape):
14008         * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
14009         (Footnote-unicode, Footnote-style-p):
14010         * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
14012 2011-11-20  Chong Yidong  <cyd@gnu.org>
14014         * window.el (replace-buffer-in-windows): Restore interactive spec.
14016 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14018         * electric.el (electric-indent-mode): Fix last change (too optimistic).
14020         * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
14021         (byte-compile-global-not-obsolete-vars): New var.
14022         (byte-compile-check-variable, byte-compile-make-obsolete-variable):
14023         Use it.
14024         (byte-compile-warn-obsolete): Align text with the one in *Help*.
14026 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
14028         * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
14029         * progmodes/pascal.el (electric-pascal-equal):
14030         * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
14031         * xml.el (xml-substitute-special): Fix typos.
14033 2011-11-20  Glenn Morris  <rgm@gnu.org>
14035         * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
14036         (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
14037         Doc fixes.
14038         (rmail-decode-mime-charset): Mark as obsolete.
14040         * mail/rmailsum.el (rmail-message-regexp-p-1):
14041         * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
14042         Before using mime functions, check they are set.  (Bug#10077)
14044 2011-11-19  Juri Linkov  <juri@jurta.org>
14046         * info.el (Info-finder-find-node): Use `package--builtins' instead
14047         of `package-alist'.  Use node names formed by the pattern "Keyword "
14048         and the keyword name.
14050 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
14052         * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
14054 2011-11-19  Juri Linkov  <juri@jurta.org>
14056         * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
14057         that calls `revert-buffer' on all Info buffers.  (Bug#9915)
14058         (Info-revert-find-node): Remove let-bindings `old-buffer-name',
14059         `old-history', `old-history-forward'.  Add let-binding
14060         `window-selected'.  Remove calls to `kill-buffer',
14061         `switch-to-buffer' and `Info-mode'.  Set `Info-current-file' to nil
14062         before calling `Info-find-node', so `Info-find-node-2' will reread
14063         the Info file.  Restore window positions only when `window-selected'
14064         is non-nil.
14066 2011-11-19  Juri Linkov  <juri@jurta.org>
14068         * isearch.el (isearch-lazy-highlight-new-loop):
14069         Remove condition `(not isearch-error)'.  (Bug#9918)
14071         * misearch.el (multi-isearch-search-fun): Add condition
14072         `(not bound)' to ignore lazy-highlighting search.
14073         Add the search-failed message "end of multi" when the end of
14074         multi-sequence is reached.  Uncapitalize the search-failed
14075         message "Repeat for next buffer".
14077         * info.el (Info-search): Add the search-failed message
14078         "end of the manual" when the end of the manual is reached
14079         in Isearch mode.
14081 2011-11-19  Juri Linkov  <juri@jurta.org>
14083         * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
14084         Use non-destructive `remove' instead of `delete' because
14085         `Info-history-list' stored to `Info-isearch-initial-history-list' in
14086         `Info-isearch-start' might need to be restored in `Info-isearch-end'.
14088 2011-11-19  Juri Linkov  <juri@jurta.org>
14090         * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
14091         to nil instead of binding `search-ring' and `regexp-search-ring'.
14092         (Bug#9185)
14094 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
14096         * simple.el (line-move): Force movement by logical lines for any
14097         hscrolled window, not only when auto-hscroll-mode is on.
14098         (line-move-visual): Update doc string to that effect.  (Bug#10076)
14100 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
14102         * language/european.el (macintosh): Define as alias for mac-roman.
14104 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
14106         * mail/rmailmm.el (rmail-mime-display-header)
14107         (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
14108         (rmail-mime-entity-segment, rmail-mime-toggle-raw)
14109         (rmail-mime-toggle-hidden, rmail-mime-insert-text)
14110         (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
14111         (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
14112         of a raw aref.
14113         (rmail-mime-entity-segment): To get past the tagline, move forward
14114         2 more lines, to account for the 2 empty lines that precede and
14115         follow the line with the buttons.
14116         (rmail-mime-update-tagline): Move one more line, to get past the
14117         empty line that follows the buttons in the tagline.  (Bug#9520)
14119 2011-11-19  Martin Rudalics  <rudalics@gmx.at>
14121         * window.el (window-max-delta-1, window-min-delta-1)
14122         (window-min-size-1, window-state-get-1, window-state-put-1)
14123         (window-state-put-2): Use "window--" prefix.
14125 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14127         * emacs-lisp/smie.el: Improve warnings and conflict detection.
14128         (smie-warning-count): New var.
14129         (smie-set-prec2tab): Use it.
14130         (smie-bnf->prec2): Improve warnings.  Add docstring.
14131         (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
14132         (smie-bnf--set-class): New function.
14133         (smie-bnf--classify): Rename from smie-bnf-classify.  Rewrite to fix
14134         corner case.
14136         * progmodes/compile.el: Obey compilation-first-column in dest buffer.
14137         (compilation-error-properties, compilation-move-to-column):
14138         Handle compilation-first-column while in the target buffer.
14140         * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
14141         Don't hardcode point-min==1.
14143         * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
14144         (eshell-rewrite-for-command): Remove workaround.
14145         (eshell-do-pipelines, eshell-do-pipelines-synchronously)
14146         (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
14147         * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
14149         * files-x.el (modify-file-local-variable): Obey commenting conventions.
14151 2011-11-17  Glenn Morris  <rgm@gnu.org>
14153         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
14154         Ignore buffer-local generated-autoload-file if it is the same
14155         as the global value.  (Bug#10049)
14157 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
14159         * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
14160         (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
14161         (reftex-toc-previous-heading, reftex-toc-max-level)
14162         (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
14163         (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
14164         (reftex-toc-do-promote, reftex-toc-promote-prepare)
14165         (reftex-toc-promote-action, reftex-toc-extract-section-number)
14166         (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
14167         (reftex-toc-rename-label, reftex-toc-visit-location)
14168         (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
14169         (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
14170         (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
14171         leaving "*toc*" only for references to the buffer.
14173 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
14175         * window.el (window-resize, delete-window, split-window):
14176         Replace window-splits by window-combination-resize.
14177         * cus-start.el (window-splits): Replace by window-combination-resize.
14179 2011-11-17  Glenn Morris  <rgm@gnu.org>
14181         * progmodes/sh-script.el (sh-font-lock-keywords-var):
14182         Make bash entry derive from sh entry, not shell entry.
14184 2011-11-16  Michael Albinus  <michael.albinus@gmx.de>
14186         * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
14187         local file name.
14189 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
14191         * menu-bar.el (menu-bar-file-menu):
14192         * printing.el (pr-ps-utility):
14193         * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
14194         (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
14195         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
14196         (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
14197         (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
14198         (icalendar--convert-cyclic-to-ical)
14199         (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
14200         (icalendar--convert-ical-to-diary)
14201         (icalendar--convert-recurring-to-diary)
14202         (icalendar--convert-non-recurring-all-day-to-diary)
14203         (icalendar-import-format-sample):
14204         * progmodes/idlw-shell.el (idlwave-shell-mode):
14205         * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
14206         (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
14207         (vhdl-ps-print-init): Fix typos.
14209 2011-11-16  Ken Manheimer  <ken.manheimer@gmail.com>
14211         * allout.el, allout-widgets.el (file metadata): Attribute copyright to
14212         FSF and collapse date sequence, obscure author/maintainer email address
14213         better, remove extra version line, track relocation of author's webpage.
14215         * progmodes/python.el (python-pdbtrack-input-prompt)
14216         (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
14217         regular python pdb prompts.  Adjustments shamelessly taken exactly as
14218         suggested in EmacsWiki page (tiny change):
14219         http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
14221 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
14223         * expand.el (expand-pos, expand-index, expand-point):
14224         Remove redundant info from docstring.
14225         (expand-add-abbrevs): Doc fix.
14226         (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
14227         (expand-sample-perl-mode-expand-list): Fix typos.
14229         * net/dbus.el (dbus-event-member-name):
14230         * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
14231         * term/pc-win.el (msdos-create-frame-with-faces):
14232         * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
14234 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
14236         * window.el (split-window, window-state-get-1)
14237         (window-state-put-1, window-state-put-2): Rename occurrences of
14238         window-nest to window-combination-limit.
14239         * cus-start.el (window-nest): Rename to window-combination-limit.
14241 2011-11-16  Chong Yidong  <cyd@gnu.org>
14243         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
14244         regexp (Bug#10033).
14246 2011-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14248         * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
14249         `completing-read' will remove *Completions* and will preserve
14250         current-buffer for us.
14251         (tmm-add-prompt): Users of *Completions* will always (re)set its
14252         major mode.
14253         (tmm-old-comp-map): Remove.
14255 2011-11-16  Glenn Morris  <rgm@gnu.org>
14257         * mail/rmailedit.el: Require rmailmm when compiling.
14258         (rmail-old-mime-state): New declaration.
14259         (rmail-edit-current-message): If editing a mime message,
14260         edit the "raw" message from the mbox buffer.
14261         (rmail-cease-edit): Handle mime messages.  (Bug#9840)
14263 2011-11-15  Glenn Morris  <rgm@gnu.org>
14265         * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
14266         which wasn't being used.  Add optional arg to force given state.
14267         (rmail-mime): Add optional arg to force given state.
14269 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
14271         * allout.el (allout-encryption-plaintext-sanitization-regexps):
14272         * frame.el (display-mm-dimensions-alist):
14273         * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
14274         (outline-move-subtree-down):
14275         * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
14276         (newsticker--treeview-do-get-node):
14277         * net/quickurl.el (quickurl-list-buffer-name):
14278         * progmodes/dcl-mode.el (dcl-mode):
14279         * progmodes/gdb-mi.el (gdb-mapcar*):
14280         * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
14282 2011-11-15  Glenn Morris  <rgm@gnu.org>
14284         * mail/rmail.el (rmail-file-coding-system): It's only ever used
14285         in a boolean sense, so just make it a boolean, and fix the doc.
14286         (rmail-show-mime-function, rmail-mime-feature)
14287         (rmail-require-mime-maybe): Doc fixes.
14288         (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
14290         * mail/rmailmm.el (rmail-show-mime): Doc fix.
14292 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
14294         * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
14295         (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
14296         (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
14297         (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
14299 2011-11-15  Glenn Morris  <rgm@gnu.org>
14301         * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
14302         (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
14303         (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
14304         (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
14305         (rmail-mime, rmail-show-mime): Doc fixes.
14307         * term/ns-win.el (mode-line-frame-identification):
14308         Leave it alone.  (Bug#10051)
14310         * simple.el (mark-whole-buffer): Doc fix.  (Bug#10023)
14312         * mail/rmailout.el (rmail-output-to-rmail-buffer):
14313         Handle empty buffers.  (Bug#9978)
14315 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
14317         * international/mule.el (define-charset):
14318         * mail/rmailmm.el (rmail-mime-find-header-encoding):
14319         * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
14320         * progmodes/verilog-mode.el (verilog-backward-token):
14321         * textmodes/ispell.el (lookup-words):
14322         * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
14324 2011-11-14  Glenn Morris  <rgm@gnu.org>
14326         * progmodes/executable.el
14327         (executable-make-buffer-file-executable-if-script-p):
14328         Handle file-modes returning nil.
14330         * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
14331         message - not necessary, and causes problems.  (Bug#9831)
14333         * mail/rmailsum.el (rmail-new-summary): Preserve message number.
14335         * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
14337         * mail/rmailsum.el (rmail-summary, rmail-new-summary)
14338         (rmail-new-summary-1): Allow empty summaries.  (Bug#9964)
14339         (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
14341 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
14343         * window.el (window-resize, delete-window): Use window-splits
14344         variable instead of function.
14345         (window-state-get-1, window-state-put-2, window-state-put):
14346         Don't deal with windows' splits status.
14348 2011-11-12  Glenn Morris  <rgm@gnu.org>
14350         * apropos.el (apropos-do-all, apropos-library, apropos-value)
14351         (apropos-documentation): Doc fixes.
14353 2011-11-11  Juanma Barranquero  <lekktu@gmail.com>
14355         * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
14356         * textmodes/sgml-mode.el (html-tag-help): Fix typos.
14358 2011-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14360         * electric.el (electric-indent-post-self-insert-function): Make it
14361         possible for a char to only indent in some circumstances.
14362         (electric-indent-mode): Simplify.
14364 2011-11-11  Martin Rudalics  <rudalics@gmx.at>
14366         * window.el (windows-with-parameter): Remove unused function.
14367         (windows-at-side): Rename to window-at-side-list.
14368         (window-check, window-atom-check, window-atom-check-1)
14369         (window-side-check, window-size-ignore, window-size-fixed-1)
14370         (window-in-direction-2): Prefix with "window--".
14371         (window-tree-1): Rename to window--subtree, fix doc-string.
14373 2011-11-11  Glenn Morris  <rgm@gnu.org>
14375         * subr.el (eval-after-load): If FILE is already loaded,
14376         evaluate FORM before it gets wrapped in more stuff.  (Bug#10009)
14378 2011-11-10  Glenn Morris  <rgm@gnu.org>
14380         * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
14381         Call svn via vc-svn-command rather than vc-do-command.
14382         (vc-svn-command): Add --non-interactive.  (Bug#9993)
14383         (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
14385         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
14386         Add toggle-read-only.  (Bug#7292)
14387         * files.el (toggle-read-only): Mention that it should only
14388         be used interactively.  (Bug#10006)
14390 2011-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
14392         * progmodes/compile.el (compilation-error-regexp-alist-alist):
14393         Adjust regexp for OCaml warnings.
14395         * electric.el (electric-pair-post-self-insert-function): Let user
14396         turn it off buffer-locally (bug#9932).
14398         * progmodes/python.el (python-beginning-of-statement):
14399         Rewrite (bug#2703).
14401         * progmodes/compile.el: Better handle TABs (bug#9749).
14402         (compilation-internal-error-properties)
14403         (compilation-next-error-function): Obey the target buffer's
14404         compilation-error-screen-columns.
14406 2011-11-09  Juanma Barranquero  <lekktu@gmail.com>
14408         * progmodes/meta-mode.el: Remove obsolete comments.
14409         (meta-right-comment-regexp, meta-ignore-comment-regexp):
14410         Fix typos in docstrings.
14412 2011-11-09  Martin Rudalics  <rudalics@gmx.at>
14414         * window.el (window-size-fixed-p): Rewrite doc-string.
14415         (window-resizable-p): Rename to window--resizable-p.  Update callers.
14416         (window--resizable): New function.  Make all callers of
14417         window-resizable call window--resizable instead.
14418         (window-resizable): Rewrite in terms of window--resizable.
14420 2011-11-08  Glenn Morris  <rgm@gnu.org>
14422         * progmodes/delphi.el (delphi-mode-syntax-table):
14423         Let define-derived-mode define a proper syntax table.  (Bug#9994)
14425 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14427         * window.el: Stay away from defsubst.
14428         (window-list-no-nils): Remove.
14429         (window-state-get-1, window-state-get): Use backquote instead.
14431 2011-11-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14433         * emacs-lisp/find-func.el (find-function-read):
14434         Fix incorrect use of default argument in `completing-read'.
14436 2011-11-08  Martin Rudalics  <rudalics@gmx.at>
14438         * window.el (display-buffer-function, special-display-function):
14439         Mention display-buffer-record-window but do not mention
14440         help-setup parameter in doc-strings.
14441         (window-min-delta): Fix doc-string typo.
14443 2011-11-08  Chong Yidong  <cyd@gnu.org>
14445         * window.el (window-total-height, window-total-width): Doc fix.
14446         (window-body-size): Move from C.
14447         (window-body-height, window-body-width): Move to C.
14449 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14451         * window.el: Make special-display like display-buffer-alist (bug#9532).
14452         (display-buffer--special-action): New function, morphed
14453         from display-buffer--special.
14454         (display-buffer): Use it to handle special-display-buffers at higher
14455         priority (just after display-buffer-alist).
14456         (display-buffer-fallback-action, display-buffer--other-frame-action)
14457         (pop-to-buffer-same-window): Remove display-buffer--special.
14459 2011-11-07  Glenn Morris  <rgm@gnu.org>
14461         * calendar/cal-menu.el (cal-menu-set-date-title):
14462         Do nothing if not in a calendar.  (Bug#9976)
14464 2011-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
14466         * files.el (find-file): Always use selected-window.
14468 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
14470         * window.el (window-combinations): Make WINDOW argument
14471         mandatory.  Rewrite doc-string.
14472         (walk-window-subtree, window-atom-check, window-min-delta)
14473         (window-max-delta, window--resize-this-window)
14474         (window--resize-root-window-vertically, window-tree)
14475         (balance-windows, window-state-put): Rewrite doc-strings as to
14476         not mention the term "subwindow".
14477         (window--resize-subwindows-skip-p): Rename to
14478         window--resize-child-windows-skip-p.
14479         (window--resize-subwindows-normal): Rename to
14480         window--resize-child-windows-normal.
14481         (window--resize-subwindows): Rename to
14482         window--resize-child-windows.
14483         (window-or-subwindow-p): Rename to window--in-subtree-p.
14485 2011-11-07  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
14487         * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
14488         Ensure that mbox format messages end in two newlines (Bug#9974).
14490 2011-11-06  Chong Yidong  <cyd@gnu.org>
14492         * window.el (window-combination-p): Function deleted; its
14493         side-effect is not used in any existing code.
14494         (window-combinations, window-combined-p): Call window-*-child
14495         directly.
14497 2011-11-05  Chong Yidong  <cyd@gnu.org>
14499         * window.el (window-valid-p): Rename from window-any-p.
14500         (window-size-ignore, window-state-get): Callers changed.
14501         (window-normalize-window): Rename from window-normalize-any-window.
14502         New arg LIVE-ONLY, replacing window-normalize-live-window.
14503         (window-normalize-live-window): Delete.
14504         (window-combination-p, window-combined-p, window-combinations)
14505         (walk-window-subtree, window-atom-root, window-min-size)
14506         (window-sizable, window-sizable-p, window-size-fixed-p)
14507         (window-min-delta, window-max-delta, window-resizable)
14508         (window-resizable-p, window-full-height-p, window-full-width-p)
14509         (window-current-scroll-bars, window-point-1, set-window-point-1)
14510         (window-at-side-p, window-in-direction, window-resize)
14511         (adjust-window-trailing-edge, maximize-window, minimize-window)
14512         (window-deletable-p, delete-window, delete-other-windows)
14513         (record-window-buffer, unrecord-window-buffer)
14514         (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
14515         (quit-window, split-window, window-state-put)
14516         (set-window-text-height, fit-window-to-buffer)
14517         (shrink-window-if-larger-than-buffer): Callers changed.
14519 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
14521         * mail/rmail.el (rmail-simplified-subject): Decode subject with
14522         rfc2047-decode-string.
14523         (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
14524         warnings.
14526         * window.el (window-body-height, window-body-width): Mention in
14527         the doc string that the return values are in frame's canonical
14528         units.  (Bug#9949)
14530 2011-11-03  Alan Mackenzie  <acm@muc.de>
14532         * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
14533         change in cc-engine.el.
14535 2011-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14537         * window.el (switch-to-buffer): Use `force-same-window' interactively.
14539 2011-11-02  Martin Rudalics  <rudalics@gmx.at>
14541         * window.el (quit-window): Call unrecord-window-buffer after
14542         showing another buffer in the window.  (Bug#9937)
14543         (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
14545 2011-11-02  Juanma Barranquero  <lekktu@gmail.com>
14547         * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
14548         Accept status with more than 9 shelves.  (Bug#9935)
14549         Reported by Colin D Bennett <colin@gibibit.com>.
14551 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
14553         * help.el (with-help-window): Don't reference
14554         temp-buffer-show-specifiers in doc-string.
14556 2011-10-31  Andreas Schwab  <schwab@linux-m68k.org>
14558         * subr.el (keymap--menu-item-with-binding): Ignore item if not a
14559         menu-item.
14561 2011-10-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
14563         * whitespace.el: New version 13.2.2.
14564         (whitespace-newline-mode): Disable properly.  Reported by Sarah
14565         <EmacsWiki>.
14567 2011-10-30  Ulf Jasper  <ulf.jasper@web.de>
14569         * net/newst-treeview.el: Remove "Time-stamp".
14570         (newsticker--group-manage-orphan-feeds): Do not call
14571         newsticker--treeview-tree-update.
14572         (newsticker-treeview-update, newsticker-treeview):
14573         Call newsticker--treeview-tree-update if necessary.
14575 2011-10-30  Martin Rudalics  <rudalics@gmx.at>
14577         * window.el (window-iso-combination-p, window-iso-combined-p)
14578         (window-iso-combinations): Remove "iso-" infix.
14579         Suggested by Chong Yidong.
14580         (window-min-size-1, window-size-fixed-1, window-min-delta-1)
14581         (window-max-delta-1, window-resize, window--resize-siblings)
14582         (window--resize-this-window, adjust-window-trailing-edge)
14583         (split-window, balance-windows-1)
14584         (shrink-window-if-larger-than-buffer):
14585         * calendar/calendar.el (calendar-generate-window):
14586         * help.el (resize-temp-buffer-window): Adjust callers accordingly.
14588 2011-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14590         * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
14591         in place (bug#9907).
14592         (eshell-subcommand-arg-values, eshell-rewrite-named-command)
14593         (eshell-rewrite-if-command, eshell-rewrite-for-command)
14594         (eshell-structure-basic-command, eshell-rewrite-while-command)
14595         (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
14596         (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
14597         (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
14598         (eshell-do-pipelines-synchronously, eshell-eval-command):
14599         Use backquotes and prefer setq to set.
14600         (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
14601         (eshell-macrop): Use functionp.
14602         (eshell-do-eval): Handle multiple expressions in `while' body.
14604 2011-10-30  Chong Yidong  <cyd@gnu.org>
14606         * emulation/viper-cmd.el (viper-exec-change): Use push-mark
14607         instead of set-mark (Bug#9810).
14609 2011-10-30  Chong Yidong  <cyd@gnu.org>
14611         * window.el (split-window-below, split-window-right): Rename from
14612         split-window-above-each-other and split-window-side-by-side
14613         respectively.  All callers changed.
14614         (split-window-sensibly, split-window-sensibly): Use them.
14615         (split-window-keep-point): Doc fix.
14617         * isearch.el: Add isearch-scroll property to split-window-below
14618         and split-window-right.
14620         * follow.el (follow-mode):
14621         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
14622         * progmodes/ada-xref.el (ada-gdb-application):
14623         * emulation/vip.el (vip-buffer-in-two-windows):
14624         * image-dired.el (image-dired-dired-with-window-configuration):
14625         * dired-x.el (dired-do-find-marked-files):
14626         * dired.el (dired-pop-to-buffer):
14627         * bs.el (bs--show-with-configuration):
14628         * vc/emerge.el (emerge-setup-windows):
14629         * textmodes/two-column.el (2C-two-columns):
14630         * textmodes/reftex-toc.el (reftex-toc):
14631         * progmodes/gdb-mi.el (gdb-setup-windows):
14632         * progmodes/fortran.el (fortran-window-create):
14633         * net/newst-treeview.el (newsticker--treeview-window-init):
14634         * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
14635         * emulation/tpu-edt.el (tpu-gold-map):
14636         * emulation/crisp.el (crisp-mode-map):
14637         * calendar/calendar.el (calendar-basic-setup): Callers changed.
14639 2011-10-29  Chong Yidong  <cyd@gnu.org>
14641         * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
14643         * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
14645         * textmodes/flyspell.el (flyspell-word): Fix char offset for
14646         forged Ispell output (Bug#7904).
14648         * emacs-lisp/package.el (package-refresh-contents): Add autoload.
14650 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14652         * doc-view.el: Avoid ugly errors about not finding nil.
14653         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
14654         (doc-view-dvipdf-program, doc-view-unoconv-program)
14655         (doc-view-ps2pdf-program, doc-view-pdftotext-program):
14656         Avoid nil or absolute file name as default value.
14657         (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
14659 2011-10-28  Alan Mackenzie  <acm@muc.de>
14661         * progmodes/cc-defs.el (c-version): -> 5.32.2.
14663 2011-10-28  Alan Mackenzie  <acm@muc.de>
14665         Amend the handling of c-beginning/end-of-defun in nested declaration
14666         scopes.
14668         * progmodes/cc-vars.el (c-defun-tactic): Move here from
14669         cc-langs.el.  Change it to a defcustom.
14671         * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
14672         cc-vars.el.
14674         * progmodes/cc-engine.el (c-beginning-of-statement-1):
14675         Prevent "class foo : bar" being spuriously recognized as a label.
14677         * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
14678         Add parameter `inclusive' (to include enclosing braces in the region).
14679         (c-widen-to-enclosing-decl-scope): New function.
14680         (c-while-widening-to-decl-block): New macro.
14681         (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
14682         outward for defun boundaries, and correspondingly change symbol
14683         `respect-enclosure' to `go-outward'.
14684         (c-declaration-limits): Change algorithm to report only the "innermost"
14685         defun's boundaries.
14687 2011-10-28  Deniz Dogan  <deniz@dogan.se>
14689         * net/rcirc.el (rcirc-mode): Use hard newlines.
14691 2011-10-28  Alan Mackenzie  <acm@muc.de>
14693         Amend to indent and fontify macros "which include their own semicolon"
14694         correctly, using the "virtual semicolon" mechanism.
14696         * progmodes/cc-defs.el: Update "virtual semicolon" comments.
14698         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
14699         Recode to scan one line at a time rather than having \n and \r
14700         explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
14701         (c-forward-label): Amend for virtual semicolons.
14702         (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
14704         * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
14705         of the new C macros.
14707         * progmodes/cc-langs.el (c-at-vsemi-p-fn):
14708         (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
14709         (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
14710         (c-opt-cpp-macro-define): Make into a full language variable.
14711         (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
14712         AWK Mode (including \n, \r) removed, no longer needed.
14714         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
14715         Invoke c-make-macro-with-semi-re.
14717         * progmodes/cc-vars.el (c-macro-with-semi-re):
14718         (c-macro-names-with-semicolon): New variables.
14719         (c-make-macro-with-semi-re): New function.
14721 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14723         * vc/log-edit.el: Fill empty field rather than adding new one.
14724         (log-edit-add-field): New function.
14725         (log-edit-insert-changelog): Use it.
14727 2011-10-28  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
14729         * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
14731 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14733         * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
14734         (gdb--check-interpreter): New function.
14735         (gdb): Use it.
14737 2011-10-27  Glenn Morris  <rgm@gnu.org>
14739         * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
14740         (least-positive-float, least-negative-float)
14741         (least-positive-normalized-float, least-negative-normalized-float)
14742         (float-epsilon, float-negative-epsilon):
14743         Remove unnecessary declarations.
14745         * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
14746         * emacs-lisp/cl.el (most-positive-float, most-negative-float)
14747         (least-positive-float, least-negative-float)
14748         (least-positive-normalized-float, least-negative-normalized-float)
14749         (float-epsilon, float-negative-epsilon): Add doc-strings,
14750         based on those in cl.texi.
14752         * files.el (set-visited-file-name): If the major-mode changed,
14753         reload the local variables.  (Bug#9796)
14755 2011-10-27  Chong Yidong  <cyd@gnu.org>
14757         * subr.el (change-major-mode-after-body-hook): New hook.
14758         (run-mode-hooks): Run it.
14760         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14761         Use change-major-mode-before-body-hook.
14763         * simple.el (fundamental-mode):
14764         * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
14765         change introducing fundamental-mode-hook.
14767 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
14769         * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
14771 2011-10-26  Michael Albinus  <michael.albinus@gmx.de>
14773         * ido.el (ido-file-name-all-completions-1): Do not require
14774         tramp.el explicitly.  (Bug#7583)
14776 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14778         * progmodes/octave-mod.el:
14779         * progmodes/octave-inf.el: Update maintainer.
14781 2011-10-26  Chong Yidong  <cyd@gnu.org>
14783         * subr.el (with-wrapper-hook): Rewrite doc.
14785 2011-10-25  Michael Albinus  <michael.albinus@gmx.de>
14787         * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
14788         filenames "/method:foo:".  (Bug#9793)
14790 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
14792         * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
14793         (bug#9865).
14795 2011-10-24  Glenn Morris  <rgm@gnu.org>
14797         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.  (Bug#9819)
14799 2011-10-24  Michael Albinus  <michael.albinus@gmx.de>
14801         * notifications.el: Add the requirement of a running D-Bus session
14802         bus to the Commentary.
14804 2011-10-24  Juri Linkov  <juri@jurta.org>
14806         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
14807         `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
14808         (Bug#9364)
14810 2011-10-24  Juri Linkov  <juri@jurta.org>
14812         * info.el (Info-following-node-name-re): Add newline to the list
14813         of allowed characters for leading space.  (Bug#9824)
14815 2011-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14817         * progmodes/octave-inf.el (inferior-octave-mode-map):
14818         Fix C-c C-h binding.
14819         * progmodes/octave-mod.el (octave-help): Remove.
14821 2011-10-23  Michael Albinus  <michael.albinus@gmx.de>
14823         Sync with Tramp 2.2.3.
14825         * net/tramp-cache.el (top): Pacify byte-compiler using
14826         `init-file-user' and `site-run-file'.
14828         * net/trampver.el: Update release number.
14830 2011-10-23  Chong Yidong  <cyd@gnu.org>
14832         * files.el (toggle-read-only): Remove obsolete comment about
14833         version control.
14835         * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
14836         for toggle-read-only.  Note that this hasn't called vc-next-action
14837         since 2008-05-02, though it wasn't documented at the time.
14839         * vc/ediff-init.el (ediff-toggle-read-only-function):
14840         Use toggle-read-only.
14842 2011-10-22  Alan Mackenzie  <bug-cc-mode@gnu.org>
14844         Fix bug #9560, sporadic wrong indentation; improve instrumentation
14845         of c-parse-state.
14847         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
14848         correct faulty logical expression.
14849         (c-parse-state-state, c-record-parse-state-state):
14850         (c-replay-parse-state-state): New defvar/defuns.
14851         (c-debug-parse-state): Use new functions.
14853 2011-10-22  Martin Rudalics  <rudalics@gmx.at>
14855         * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
14856         last fix.  Use window-in-direction correctly.
14858 2011-10-21  Chong Yidong  <cyd@gnu.org>
14860         * progmodes/idlwave.el (idlwave-mode):
14861         * progmodes/vera-mode.el (vera-mode): No need to set
14862         require-final-newline; that's done in prog-mode.
14863         Suggested by Stefan Monnier.
14865 2011-10-21  Martin Rudalics  <rudalics@gmx.at>
14867         * mouse.el (mouse-drag-window-above)
14868         (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
14869         (mouse-drag-mode-line-1, mouse-drag-header-line)
14870         (mouse-drag-vertical-line-rightward-window): Remove.
14871         (mouse-drag-line): New function.
14872         (mouse-drag-mode-line, mouse-drag-header-line)
14873         (mouse-drag-vertical-line): Call mouse-drag-line.
14874         * window.el (window-at-side-p, windows-at-side): New functions.
14876 2011-10-21  Ulrich Mueller  <ulm@gentoo.org>
14878         * tar-mode.el (tar-grind-file-mode):
14879         Fix handling of setuid/setgid, handle sticky bit.  (Bug#9817)
14881 2011-10-21  Chong Yidong  <cyd@gnu.org>
14883         * progmodes/idlwave.el (idlwave-mode):
14884         * progmodes/vera-mode.el (vera-mode):
14885         Use mode-require-final-newline.
14887 2011-10-20  Glenn Morris  <rgm@gnu.org>
14889         * vc/vc.el (vc-next-action): Handle removed directories.  (Bug#9781)
14891 2011-10-20  Christoph Scholtes  <cschol2112@googlemail.com>
14893         * emulation/cua-base.el (cua-set-mark): Fix case of string.
14895 2011-10-20  Chong Yidong  <cyd@gnu.org>
14897         * emulation/cua-base.el (cua-mode):
14898         * mail/footnote.el (footnote-mode):
14899         * mail/mailabbrev.el (mail-abbrevs-mode):
14900         * net/xesam.el (xesam-minor-mode):
14901         * progmodes/bug-reference.el (bug-reference-mode):
14902         * progmodes/cap-words.el (capitalized-words-mode):
14903         * progmodes/compile.el (compilation-minor-mode)
14904         (compilation-shell-minor-mode):
14905         * progmodes/gud.el (gud-tooltip-mode):
14906         * progmodes/hideif.el (hide-ifdef-mode):
14907         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
14908         * progmodes/subword.el (subword-mode):
14909         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
14910         * progmodes/which-func.el (which-function-mode):
14911         * term/tvi970.el (tvi970-set-keypad-mode):
14912         * term/vt100.el (vt100-wide-mode):
14913         * textmodes/flyspell.el (flyspell-mode):
14914         * textmodes/ispell.el (ispell-minor-mode):
14915         * textmodes/nroff-mode.el (nroff-electric-mode):
14916         * textmodes/paragraphs.el (use-hard-newlines):
14917         * textmodes/refill.el (refill-mode):
14918         * textmodes/reftex.el (reftex-mode):
14919         * textmodes/rst.el (rst-minor-mode):
14920         * textmodes/sgml-mode.el (html-autoview-mode)
14921         (sgml-electric-tag-pair-mode):
14922         * textmodes/tex-mode.el (latex-electric-env-pair-mode):
14923         * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
14924         * emulation/crisp.el (crisp-mode):
14925         * emacs-lisp/eldoc.el (eldoc-mode):
14926         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
14927         minor mode behavior.
14929 2011-10-19  Juri Linkov  <juri@jurta.org>
14931         * descr-text.el (describe-char): Add #x2010 and #x2011 to
14932         the list of hard-coded chars with escape-glyph face.
14934 2011-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14936         * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
14938 2011-10-19  Michael Albinus  <michael.albinus@gmx.de>
14940         * net/tramp.el (tramp-connectable-p): Make a stronger check on a
14941         running process.
14943 2011-10-19  Glenn Morris  <rgm@gnu.org>
14945         * vc/vc-bzr.el (vc-bzr-after-dir-status):
14946         Ignore ignored files.  (Bug#9726)
14948 2011-10-19  Chong Yidong  <cyd@gnu.org>
14950         Doc fix for minor modes, stating that an omitted argument enables
14951         the mode unconditionally when called from Lisp.
14953         * abbrev.el (abbrev-mode):
14954         * allout.el (allout-mode):
14955         * autoinsert.el (auto-insert-mode):
14956         * autoarg.el (autoarg-mode, autoarg-kp-mode):
14957         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
14958         (global-auto-revert-mode):
14959         * battery.el (display-battery-mode):
14960         * composite.el (global-auto-composition-mode)
14961         (auto-composition-mode):
14962         * delsel.el (delete-selection-mode):
14963         * desktop.el (desktop-save-mode):
14964         * dired-x.el (dired-omit-mode):
14965         * dirtrack.el (dirtrack-mode):
14966         * doc-view.el (doc-view-minor-mode):
14967         * double.el (double-mode):
14968         * electric.el (electric-indent-mode, electric-pair-mode):
14969         * emacs-lock.el (emacs-lock-mode):
14970         * epa-hook.el (auto-encryption-mode):
14971         * follow.el (follow-mode):
14972         * font-core.el (font-lock-mode):
14973         * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
14974         * help.el (temp-buffer-resize-mode):
14975         * hilit-chg.el (highlight-changes-mode)
14976         (highlight-changes-visible-mode):
14977         * hi-lock.el (hi-lock-mode):
14978         * hl-line.el (hl-line-mode, global-hl-line-mode):
14979         * icomplete.el (icomplete-mode):
14980         * ido.el (ido-everywhere):
14981         * image-file.el (auto-image-file-mode):
14982         * image-mode.el (image-minor-mode):
14983         * iswitchb.el (iswitchb-mode):
14984         * jka-cmpr-hook.el (auto-compression-mode):
14985         * linum.el (linum-mode):
14986         * longlines.el (longlines-mode):
14987         * master.el (master-mode):
14988         * mb-depth.el (minibuffer-depth-indicate-mode):
14989         * menu-bar.el (menu-bar-mode):
14990         * minibuf-eldef.el (minibuffer-electric-default-mode):
14991         * mouse-sel.el (mouse-sel-mode):
14992         * msb.el (msb-mode):
14993         * mwheel.el (mouse-wheel-mode):
14994         * outline.el (outline-minor-mode):
14995         * paren.el (show-paren-mode):
14996         * recentf.el (recentf-mode):
14997         * reveal.el (reveal-mode, global-reveal-mode):
14998         * rfn-eshadow.el (file-name-shadow-mode):
14999         * ruler-mode.el (ruler-mode):
15000         * savehist.el (savehist-mode):
15001         * scroll-all.el (scroll-all-mode):
15002         * scroll-bar.el (scroll-bar-mode):
15003         * server.el (server-mode):
15004         * shell.el (shell-dirtrack-mode):
15005         * simple.el (auto-fill-mode, transient-mark-mode)
15006         (visual-line-mode, overwrite-mode, binary-overwrite-mode)
15007         (line-number-mode, column-number-mode, size-indication-mode)
15008         (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
15009         * strokes.el (strokes-mode):
15010         * time.el (display-time-mode):
15011         * t-mouse.el (gpm-mouse-mode):
15012         * tool-bar.el (tool-bar-mode):
15013         * tooltip.el (tooltip-mode):
15014         * type-break.el (type-break-mode-line-message-mode)
15015         (type-break-query-mode):
15016         * view.el (view-mode):
15017         * whitespace.el (whitespace-mode, whitespace-newline-mode)
15018         (global-whitespace-mode, global-whitespace-newline-mode):
15019         * xt-mouse.el (xterm-mouse-mode): Doc fix.
15021         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
15022         Fix autogenerated docstring.
15024 2011-10-19  Juri Linkov  <juri@jurta.org>
15026         * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
15027         by checking environment variables "DESKTOP_SESSION" and
15028         "XDG_CURRENT_DESKTOP".  (Bug#9779)
15030 2011-10-19  Juri Linkov  <juri@jurta.org>
15032         * net/browse-url.el (browse-url-browser-function): Add "Chromium".
15033         (browse-url-chromium-program, browse-url-chromium-arguments):
15034         New defcustoms.
15035         (browse-url-default-browser): Check for `browse-url-chromium' and
15036         call `browse-url-chromium-program'.
15037         (browse-url-chromium): New command.  (Bug#9779)
15039 2011-10-18  Juanma Barranquero  <lekktu@gmail.com>
15041         * facemenu.el (list-colors-duplicates): On Windows, detect more
15042         duplicates by assuming that only colors matching "^System" are
15043         special "system colors".  (Bug#9722)
15045 2011-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
15047         * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
15048         to distinguish the author from the committer.
15050 2011-10-18  Michael Albinus  <michael.albinus@gmx.de>
15052         * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
15054 2011-10-18  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
15056         * international/mule.el (sgml-html-meta-auto-coding-function):
15057         Add support for detecting encoding in HTML5 specified only as
15058         <meta charset="UTF-8">.  Implementation just makes http-equiv and
15059         content-type parts from HTML4 encoding string optional.  (Bug#9716)
15061 2011-10-18  Glenn Morris  <rgm@gnu.org>
15063         * vc/vc.el (vc-initial-comment): Mark as obsolete.  (Bug#9745)
15065 2011-10-18  Chong Yidong  <cyd@gnu.org>
15067         * faces.el (cursor): Doc fix.
15069 2011-10-17  Chong Yidong  <cyd@gnu.org>
15071         * font-lock.el (font-lock-maximum-size): Mark as obsolete.
15073 2011-10-17  Ryan Barrett  <emacs@ryanb.org>  (tiny change)
15075         * dirtrack.el (dirtrack): Support shell buffers with path
15076         prefixes, e.g. tramp-based remote shells.  (Bug#9647)
15078 2011-10-17  Teodor Zlatanov  <tzz@lifelogs.com>
15080         * json.el: Bump version to 1.3 and note change in History.
15081         (json-alist-p, json-plist-p): Rewrite to avoid recursion.
15083 2011-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
15085         * comint.el (comint-insert-input, comint-send-input)
15086         (comint-get-old-input-default, comint-backward-matching-input)
15087         (comint-next-prompt): Use nil instead of `input' for field property of
15088         past user input (bug#114).
15090         * minibuffer.el (completion--replace): Inherit surrounding properties
15091         (bug#114).
15092         (minibuffer-complete-and-exit): Use it.
15094         * comint.el (comint--table-subvert): Quote the all-completions output
15095         (bug#9160).
15097 2011-10-17  Martin Rudalics  <rudalics@gmx.at>
15099         * ido.el (ido-default-buffer-method): Remove redundant :type entry.
15101         * menu-bar.el (menu-bar-file-menu): Add entry for making new
15102         window on right of selected.  (Bug#9350) Reword other window
15103         entries and separate them from frame entries.
15105 2011-10-15  Glenn Morris  <rgm@gnu.org>
15107         * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
15108         Doc fixes.
15110 2011-10-15  Chong Yidong  <cyd@stupidchicken.com>
15112         * net/network-stream.el (network-stream-open-starttls):
15113         Improve detection of failure due to lack of TLS support.
15115         * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
15116         putting the input text in front and in bold.
15118 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
15120         * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
15122         * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
15123         empty buffer.
15125         * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
15126         unread-command-events rather than pushing yet-another event.
15128 2011-10-14  Eli Zaretskii  <eliz@gnu.org>
15130         * mail/sendmail.el (sendmail-query-once): Improve the wording of
15131         the explanation of the possible choices.  Make the options passed
15132         to completing-read shorter.
15134 2011-10-13  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
15136         * textmodes/flyspell.el (flyspell-large-region): Make sure
15137         extended character mode is used if defined (Bug#1339).
15139 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
15141         * simple.el (what-cursor-position): Fix the display of the
15142         character info for LRE, LRO, RLE, and RLO characters by appending
15143         an invisible PDF.
15145 2011-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15147         * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
15148         even in case of error; add debug spec; simplify data flow.
15149         (with-timeout-handler): Remove.
15151 2011-10-12  Michael Albinus  <michael.albinus@gmx.de>
15153         Fix Bug#6019, Bug#9315.
15155         * files.el (set-auto-mode): Call `file-name-sans-versions' for the
15156         complete `buffer-file-name', the local file name part could look
15157         remotely (for example on VMS).
15159         * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
15160         `tramp-run-real-handler'.
15161         (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
15162         already quoted by '"'.
15164         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
15165         Let `file-name-handler-alist' be nil, the local file name part
15166         could look remotely (for example on VMS).
15168 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15170         * textmodes/flyspell.el (flyspell-word): Move with-local-quit
15171         from here...
15172         (flyspell-post-command-hook): ...to here.
15174 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
15176         * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
15177         if not needed.
15178         (sendmail-query-once): Remove OS dependencies.  Make it a 3-way choice
15179         using completion.  Protect against "slow" callers.
15180         Remove the "message hack".
15182 2011-10-11  Juri Linkov  <juri@jurta.org>
15184         * isearch.el (isearch-lazy-highlight-word): New variable.
15185         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
15186         Use it.  (Bug#9727)
15188 2011-10-11  Glenn Morris  <rgm@gnu.org>
15190         * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
15191         like f90-previous-statement does.
15193 2011-10-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
15195         * eshell/eshell.el (eshell-command): History should be saved
15196         only in interactive use, to avoid error.
15198 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
15200         * minibuffer.el (completion-file-name-table): Fix last change,
15201         i.e. ignore normal errors but not the other ones.
15203 2011-10-10  Martin Rudalics  <rudalics@gmx.at>
15205         * window.el (special-display-buffer-names)
15206         (special-display-regexps): Remove some remnants of earlier
15207         changes from doc-strings.
15208         (quit-windows-on): New function.
15210         * vc/vc.el (vc-revert, vc-rollback):
15211         * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
15212         instead of deleting windows.  (Bug#4557) (Bug#5310) (Bug#5556)
15213         (Bug#6183) (Bug#7074) (Bug#7447)
15215 2011-10-09  Martin Rudalics  <rudalics@gmx.at>
15217         * window.el (frame-auto-hide-function): Add version tag.
15218         (Bug#9699)
15220 2011-10-09  Michael Albinus  <michael.albinus@gmx.de>
15222         * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
15223         condition.
15225 2011-10-09  Leo Liu  <sdl.web@gmail.com>
15227         * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
15228         (Bug#9701)
15230 2011-10-08  Glenn Morris  <rgm@gnu.org>
15232         * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
15233         before the first code statement zero indent.  (Bug#9690)
15235 2011-10-08  Chong Yidong  <cyd@stupidchicken.com>
15237         * simple.el (count-words-region): Always count in the region.
15238         Report the number of lines and characters too.
15239         (count-words): New command, which counts in the buffer if the
15240         region is inactive, as count-words-region used to.
15241         (count-words--message): New function.  Handle plurals.
15242         (count-lines-region): Make it an alias for count-words-region.
15244         * bindings.el (esc-map): Replace count-lines-region with
15245         count-words-region.
15247 2011-10-08  Martin Rudalics  <rudalics@gmx.at>
15249         * window.el (window--delete): Delete dedicated frame
15250         unconditionally when argument KILL is non-nil.  (Bug#9699)
15251         (switch-to-buffer): Fix doc-string typo.
15253 2011-10-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
15255         * eshell/eshell.el (eshell-command): Avoid using hooks.
15257 2011-10-07  Chong Yidong  <cyd@stupidchicken.com>
15259         * bindings.el ([M-left],[M-right]): Bind to left-word and
15260         right-word respectively.
15262 2011-10-07  Glenn Morris  <rgm@gnu.org>
15264         * cus-start.el (debug-on-quit): Fix custom type.
15266 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15268         * subr.el (define-key-after): Clarify that the function is not
15269         useful for non-menu keymaps.
15271         * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
15273 2011-10-06  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
15275         * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
15276         in current minibuffer (Fix bug with recursive minibuffers).
15278 2011-10-06  Chong Yidong  <cyd@stupidchicken.com>
15280         * progmodes/gdb-mi.el (gdb): Doc fix.
15282 2011-10-05  Martin Rudalics  <rudalics@gmx.at>
15284         * window.el (frame-auto-hide-function): New option replacing
15285         frame-auto-delete.  Suggested by Stefan Monnier.
15286         (window--delete): Call frame-auto-hide-function instead of
15287         investigating frame-auto-delete.
15288         (window-point-1, set-window-point-1): New functions.
15289         (window-in-direction, record-window-buffer, window-state-get-1)
15290         (display-buffer-record-window): Use window-point-1 instead of
15291         window-point.
15292         (set-window-buffer-start-and-point): Use set-window-point-1.
15294 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15296         * emacs-lisp/edebug.el: Heed checkdoc recommendations.
15298 2011-10-05  Glenn Morris  <rgm@gnu.org>
15300         * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
15301         (perl-calculate-indent): Suppress scan errors.  (Bug#2205)
15303 2011-10-05  Leo Liu  <sdl.web@gmail.com>
15305         * subr.el (read-char-choice): Fix argument to buffer-live-p which
15306         works with buffer object.
15308 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15310         * mpc.el (mpc-tool-bar-map): Add labels.
15312 2011-10-04  Glenn Morris  <rgm@gnu.org>
15314         * calendar/holidays.el (calendar-check-holidays): Doc fix.
15316 2011-10-04  Martin Rudalics  <rudalics@gmx.at>
15318         * window.el (window--delete): New function.
15319         (frame-auto-delete): Resuscitate option.
15320         (bury-buffer, replace-buffer-in-windows)
15321         (quit-window): Rewrite using window--delete.
15322         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15323         Pass display-buffer-mark-dedicated to window--display-buffer-2
15324         (Bug#9639).
15326 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15328         * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
15329         returns a list (bug#9554).  Add remote file name completion.
15330         * comint.el (comint--table-subvert): Curry and get quote&unquote
15331         functions as arguments.
15332         (comint--complete-file-name-data): Adjust call accordingly.
15333         * pcomplete.el (pcomplete--table-subvert): Remove.
15334         (pcomplete-completions-at-point): Use comint--table-subvert instead.
15336         * minibuffer.el (completion-table-case-fold): Use currying.
15337         (completion--styles-type, completion--cycling-threshold-type):
15338         New constants.
15339         (completion-styles, completion-category-overrides)
15340         (completion-cycle-threshold): Use them.
15341         * pcomplete.el (pcomplete-completions-at-point): Adjust call to
15342         completion-table-case-fold.
15344 2011-10-03  Stephen Berman  <stephen.berman@gmx.net>
15346         * minibuffer.el (completion-category-overrides): Fix type of styles
15347         and add more user friendly tags (bug#9660).
15349 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15351         * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
15352         (mule-input-method-string): New widget.
15353         (default-input-method, language-info-custom-alist): Use it.
15355 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15357         * pcomplete.el: Require comint.
15358         (pcomplete--common-suffix): Remove.
15359         (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
15360         (pcomplete--table-subvert): Sync with comint--table-subvert.
15361         (pcomplete--entries): Use comint-completion-file-name-table.
15362         * comint.el (comint-unquote-filename): Simplify.
15363         (comint-completion-file-name-table): New function (bug#9616).
15364         (comint--complete-file-name-data): Use it.
15366         * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
15367         (pcmpl-gnu-tar-buffer): Remove.
15368         (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
15369         around.  Make sure pcomplete-suffix-list is only changed temporarily.
15370         Don't look inside the tar's file if it's too large.
15372 2011-10-01  Chong Yidong  <cyd@stupidchicken.com>
15374         * cus-edit.el (custom-mode-map):
15375         * epa.el (epa-key-list-mode-map):
15376         * man.el (Man-mode-map):
15377         * startup.el (splash-screen-keymap):
15378         * simple.el (special-mode-map): Use scroll-up-command and
15379         scroll-down-command.
15381         * progmodes/idlw-help.el (idlwave-help-mode-map):
15382         * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
15383         * net/newst-plainview.el (newsticker-mode-map):
15384         * emulation/ws-mode.el (wordstar-mode-map):
15385         * emulation/vi.el (vi-com-map):
15386         * calc/calc-graph.el (calc-graph-show-dumb):
15387         * term/sun.el (terminal-init-sun):
15388         * term/ns-win.el (global-map):
15389         * progmodes/grep.el (grep-mode-map):
15390         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
15391         * mail/rmail.el (rmail-mode-map):
15392         * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
15394         * custom.el (custom-safe-themes, load-theme): Treat value of t for
15395         custom-safe-themes as special.
15397 2011-10-01  Julien Danjou  <julien@danjou.info>
15399         * notifications.el (notifications-notify): Fix docstring.
15401 2011-10-01  Per Starbäck  <per@starback.se>
15403         * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call.  (Bug#9643)
15405 2011-09-30  Martin Rudalics  <rudalics@gmx.at>
15407         * startup.el (command-line-1): Fix last fix by inserting
15408         initial-scratch-message into *scratch* before displaying it.
15409         (Bug#9605) and (Bug#9636)
15411 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
15413         * simple.el (line-move): If auto-hscroll-mode is disabled and the
15414         window is hscrolled, move by logical lines.  (Bug#9607)
15415         (line-move-visual): Update the doc string to the above effect.
15417 2011-09-29  Martin Rudalics  <rudalics@gmx.at>
15419         * window.el (display-buffer-record-window): When WINDOW is the
15420         selected window use `point' instead of `window-point'.  (Bug#9626)
15422         * startup.el (command-line-1): Use insert-before-markers when
15423         inserting initial-scratch-message.  (Bug#9605)
15425         * help.el (help-window): Remove variable.
15427 2011-09-29  Glenn Morris  <rgm@gnu.org>
15429         * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
15431 2011-09-29  Juanma Barranquero  <lekktu@gmail.com>
15433         * descr-text.el (describe-char-categories): Accept category
15434         descriptions more than one line long.
15436 2011-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15438         * simple.el (delete-trailing-whitespace): Fix last change.
15440         * progmodes/perl-mode.el (perl-syntax-propertize-function):
15441         Don't confuse "y => 3" as the beginning of a `y' operation.
15443         * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
15444         object has more than 4 slots (bug#9613).
15446 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
15448         * subr.el (with-output-to-temp-buffer):
15449         * net/quickurl.el (quickurl, quickurl-browse-url):
15450         Fix typos in docstrings.
15452 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
15454         * minibuffer.el (completion-styles)
15455         (completion-category-overrides): Cross reference each other in doc
15456         strings.
15458 2011-09-27  Glenn Morris  <rgm@gnu.org>
15460         * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
15461         to split-string.  (Bug#9606)
15463 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15465         * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
15466         (bug#9615).
15468 2011-09-27  Chong Yidong  <cyd@stupidchicken.com>
15470         * emacs-lisp/package.el (list-packages): Fix echo area message.
15472 2011-09-27  Leo Liu  <sdl.web@gmail.com>
15474         * ido.el (ido-read-internal): Accept cons cell HIST arg.
15476 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
15478         * net/dbus.el (dbus-unregister-object): Don't release services for
15479         registered signals.  (Bug#9581)
15481 2011-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
15483         * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
15484         function that picks between cfengine 2 and 3 support
15485         automatically.  Update docs accordingly.
15487 2011-09-22  Kenichi Handa  <handa@m17n.org>
15489         * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
15490         ZERO.
15491         (indian-itrans-v5-table-for-tamil): New variable.
15492         (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
15494 2011-09-22  Ken Manheimer  <ken.manheimer@gmail.com>
15496         * allout.el (allout-this-command-hid-stuff): Buffer-local variable
15497         that's true if the current command involved collapsing of text.
15498         It's reset to false at the beginning of the next command.
15499         (allout-post-command-business): Move the cursor to the beginning
15500         of entry if the cursor is hidden and collapsing activity just
15501         happened.
15503 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
15505         * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
15506         tracking (Bug#9541).
15508 2011-09-24  Ulf Jasper  <ulf.jasper@web.de>
15510         * net/newst-reader.el (newsticker-html-renderer)
15511         (newsticker-show-news): Automatically load html rendering package
15512         if newsticker-html-renderer is set.  Fixes "Warning: defvar ignored
15513         because w3m-fill-column is let-bound" and the error "Symbol's value
15514         as variable is void: w3m-fill-column".
15516 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
15518         * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
15519         Release services only if they are defined.  (Bug#9581)
15521 2011-09-23  Richard Stallman  <rms@gnu.org>
15523         * textmodes/paragraphs.el (forward-sentence): For backwards case,
15524         distinguish start of paragraph from start of its text.
15526         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
15528         * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
15529         (rmail-generate-viewer-buffer): Put that hook on view buffer.
15530         (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
15532 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
15534         * international/mule-diag.el (mule-diag): Insert a newline after
15535         each fontset description.
15537 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15539         * simple.el (delete-trailing-whitespace):
15540         Document last change; simplify.
15542 2011-09-23  Peter J. Weisberg  <pj@irregularexpressions.net>
15544         * simple.el (delete-trailing-whitespace): Also delete
15545         extra newlines at the end of the buffer.
15547         * textmodes/picture.el: Make motion commands obey shift-select-mode.
15548         (picture-newline): Use forward-line so as to ignore fields.
15550 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15552         * subr.el (with-wrapper-hook): Fix edebug spec.
15554 2011-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15556         * simple.el (kill-line): Note effect of `show-trailing-whitespace'
15557         (bug#4538).
15559 2011-09-23  Michael Albinus  <michael.albinus@gmx.de>
15561         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
15562         Fix nasty bug using wrong cached values.
15564 2011-09-23  Alan Mackenzie  <acm@muc.de>
15566         * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
15568 2011-09-23  Chong Yidong  <cyd@stupidchicken.com>
15570         * window.el (pop-to-buffer): Ensure right window is selected if we
15571         chose another frame.
15573 2011-09-22  Eli Zaretskii  <eliz@gnu.org>
15575         * simple.el (what-cursor-position): Use get-char-property-change
15576         and next-single-char-property-change, to be able to show display
15577         properties that come from overlays as well as text properties.
15579 2011-09-22  Chong Yidong  <cyd@stupidchicken.com>
15581         * window.el (pop-to-buffer-same-window): New (reinstated) fun.
15583         * cmuscheme.el (run-scheme, switch-to-scheme):
15584         * cus-edit.el (customize-group, custom-buffer-create)
15585         (customize-browse):
15586         * info.el (info):
15587         * shell.el (shell):
15588         * mail/sendmail.el (mail):
15589         * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
15591 2011-09-22  Richard Stallman  <rms@gnu.org>
15593         * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
15594         move back only to line beg, don't move back over blank lines.
15596 2011-09-22  Michael Albinus  <michael.albinus@gmx.de>
15598         * files.el (copy-directory): Set directory attributes only in case
15599         they could be retrieved from the source directory.  (Bug#9565)
15601 2011-09-22  Dima Kogan  <dkogan@secretsauce.net>  (tiny change)
15603         * progmodes/hideshow.el (hs-looking-at-block-start-p)
15604         (hs-find-block-beginning, hs-hide-level-recursive):
15605         Ignore strings as well as comments.  (Bug#9502)
15607 2011-09-22  Andrew Schein  <andrew@andrewschein.com>  (tiny change)
15609         * progmodes/sql.el (sql-comint-postgres):
15610         Convert port number to a string.  (Bug#9566)
15612 2011-09-22  Martin Rudalics  <rudalics@gmx.at>
15614         * window.el (quit-window): Undedicate window when switching to
15615         previous buffer.  Reported by Thierry Volpiatto
15616         <thierry.volpiatto@gmail.com>.
15617         (special-display-popup-frame): When popping up a new frame reset
15618         its previous buffers to nil.  Simplify code.
15620 2011-09-21  Michael Albinus  <michael.albinus@gmx.de>
15622         * net/tramp.el (tramp-handle-shell-command): Set process sentinel
15623         and process filter, as done also in `shell-command'.
15625 2011-09-21  Martin Rudalics  <rudalics@gmx.at>
15627         * window.el (set-window-buffer-start-and-point):
15628         Call set-window-start with NOFORCE argument t.
15629         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
15630         (quit-window): Reword doc-string.  Handle new format of
15631         quit-restore parameter.  Don't delete window if it has a
15632         previous buffer we can show instead of the present one.
15633         (display-buffer-record-window): Rewrite using a new format for
15634         the quit-restore window parameter
15635         (special-display-popup-frame, display-buffer-same-window)
15636         (display-buffer-reuse-window, display-buffer-pop-up-frame)
15637         (display-buffer-pop-up-window, display-buffer-use-some-window):
15638         Adapt symbol passed to display-buffer-record-window.
15639         * help.el (help-window-setup): Handle new format of quit-restore
15640         parameter.
15642 2011-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
15644         * faces.el (face-list): Fix docstring (bug#9564).
15646         * window.el (display-buffer--action-function-custom-type):
15647         Don't include internal functions in the Custom interface.
15649 2011-09-20  Juri Linkov  <juri@jurta.org>
15651         * info.el (Info-history-skip-intermediate-nodes): New defcustom.
15652         (Info-forward-node, Info-backward-node, Info-next-preorder)
15653         (Info-last-preorder): Use it.  (Bug#9528)
15655 2011-09-20  Juri Linkov  <juri@jurta.org>
15657         * info.el (Info-last-preorder): Visit last menu item only when
15658         `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
15660 2011-09-20  Julien Danjou  <julien@danjou.info>
15662         * password-cache.el (password-cache-remove): Remove entries even if the
15663         value is nil, so that password with a nil value (negative caching) is
15664         possible to invalidate.
15666 2011-09-20  Lawrence Mitchell  <wence@gmx.li>
15668         * progmodes/f90.el (f90-break-line): If breaking inside comment delete
15669         all whitespace around breakpoint.  (Bug#9553)
15670         (f90-find-breakpoint): Only break at whitespace inside a comment.
15672 2011-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15674         * minibuffer.el (completion-file-name-table): Keep track of errors.
15675         (completion-table-with-predicate): Handle the case where pred1 is nil.
15676         * pcomplete.el (pcomplete-completions-at-point): Simplify.
15678 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15680         * emacs-lisp/debug.el (debugger-args): Give it a docstring.
15681         (debugger-return-value): Signal an error if the debugging context does
15682         not await any return value.
15684         * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
15685         * image-mode.el (image-toggle-display-text)
15686         (image-toggle-display-image): Stay away from evil `intangible'.
15688 2011-09-19  Leo Liu  <sdl.web@gmail.com>
15690         * replace.el (occur-revert-arguments): Make it permanent-local.
15691         (occur-mode): Don't call font-lock-defontify.
15693 2011-09-19  Chong Yidong  <cyd@stupidchicken.com>
15695         * net/ldap.el (ldap-search-internal): Don't push empty search
15696         result (Bug#9508).
15698 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15700         * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
15702 2011-09-19  Michael Albinus  <michael.albinus@gmx.de>
15704         * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
15705         Suggested by Liam Stitt <stittl@cuug.ab.ca>.
15707 2011-09-18  Juri Linkov  <juri@jurta.org>
15709         * buff-menu.el (Buffer-menu-mode-map):
15710         * dired.el (dired-mode-map):
15711         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
15712         (lisp-interaction-mode-map):
15713         * emacs-lisp/package.el (package-menu-mode-map):
15714         * epa.el (epa-key-list-mode-map):
15715         * menu-bar.el (menu-bar-showhide-tool-bar-menu)
15716         (menu-bar-options-menu):
15717         * outline.el (outline-mode-menu-bar-map):
15718         * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
15719         * vc/vc-dir.el (vc-dir-menu-map):
15720         * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
15721         Capitalize non-function content words in menu item strings.
15723         * dired.el (dired-mode-map): Add menu item for
15724         `image-dired-dired-toggle-marked-thumbs'.
15726 2011-09-18  Juri Linkov  <juri@jurta.org>
15728         * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
15729         to `isearch-case-fold-search' and restore its original value
15730         after the `isearch-mode' call.
15732 2011-09-18  Juri Linkov  <juri@jurta.org>
15734         * progmodes/grep.el (grep-process-setup): Don't check code for 1
15735         because `zgrep' returns 1 for successful matches (bug#9226).
15737 2011-09-18  Juri Linkov  <juri@jurta.org>
15739         * info.el (Info-extract-menu-node-name): Check the second match
15740         for empty string (second test-case of bug#9528).
15741         (Info-last-preorder): Let-bind `Info-history' to nil to not add
15742         intermediate nodes to the history (first test-case of bug#9528).
15744 2011-09-18  Juri Linkov  <juri@jurta.org>
15746         * info.el (Info-mode-syntax-table): New variable.
15747         (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
15749 2011-09-18  Juri Linkov  <juri@jurta.org>
15751         * info.el (Info-file-supports-index-cookies):
15752         Increment line-beginning-position's arg from 3 to 4 because makeinfo
15753         outputs one more line for long file names (bug#4142).
15755 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
15757         * newcomment.el (comment-normalize-vars): If prompting for
15758         comment-start, set comment-start-skip too (Bug#8424).
15760 2011-09-18  Johan Bockgård  <bojohan@gnu.org>
15762         * icomplete.el: Fix previous fix of Bug#5849.
15763         (icomplete-mode): Don't set completion-show-inline-help.
15764         (icomplete-minibuffer-setup): Set completion-show-inline-help
15765         locally during icompletion.
15767 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
15769         * woman.el (woman2-process-escapes): Don't delete unrecognized
15770         escapes (Bug#7843).
15772         * files.el (inhibit-first-line-modes-regexps): Add image files.
15773         (hack-local-variables-prop-line): Return nil for malformed
15774         prop-lines (Bug#9044).
15776 2011-09-18  Michael Albinus  <michael.albinus@gmx.de>
15778         * net/tramp.el (top): Don't require 'shell.
15779         (tramp-methods): Fix docstring.
15780         (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
15781         Return complete remote file name.  Handle "smb" case.
15782         Use `tramp-tmpdir', if defined for the respective method.
15783         (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
15785         * net/tramp-compat.el (top): Require 'shell.
15787         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
15788         (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
15789         `tramp-current-host'.
15790         (tramp-get-remote-tmpdir): Remove.
15792         * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
15793         `tramp-tmpdir' entries.
15794         (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
15795         (tramp-smb-handle-file-attributes): Ignore errors.
15796         (tramp-smb-wait-for-output): Check also for process end.
15798 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15800         * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
15801         when sending QUIT (bug#9312).
15803 2011-09-17  Chong Yidong  <cyd@stupidchicken.com>
15805         * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
15806         (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
15807         occur-mode-display-occurrence.
15808         (occur-edit-mode): Add usage message.
15809         (occur-cease-edit): New command.
15810         (occur-after-change-function): Use text properties to find the
15811         position of the prefix text.
15812         (occur-engine): Set stickiness of prefix text properties.
15814 2011-09-17  Glenn Morris  <rgm@gnu.org>
15816         * progmodes/etags.el (complete-tag):
15817         Fix call to completion-in-region.  (Bug#9526)
15819 2011-09-17  Juri Linkov  <juri@jurta.org>
15821         * textmodes/ispell.el (ispell-word): Add to the error message
15822         the word, ispell program name and current dictionary (bug#9121).
15823         (ispell-tex-arg-end): Capitalize "error" in the error message.
15825 2011-09-17  Andreas Schwab  <schwab@linux-m68k.org>
15827         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
15828         check.  (Bug#4251)
15830 2011-09-17  Juri Linkov  <juri@jurta.org>
15832         * window.el (window-safe-min-height, window-safe-min-width):
15833         Fix typos (followup to bug#9522).
15835 2011-09-17  Sven Joachim  <svenjoac@gmx.de>
15837         * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
15839 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
15841         * simple.el (line-move): If goal-column is set, move by logical
15842         lines, not by display lines.  (Bug#971)
15843         (next-line, previous-line, goal-column, line-move-visual): Doc fix
15844         to reflect the above change.
15846 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15848         * image.el (imagemagick-register-types): Use regexp-opt.
15850 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
15852         * window.el (display-buffer-base-action): Rename from
15853         display-buffer-default-action.  Make default value empty.
15854         (display-buffer-overriding-action): Convert to defvar.
15855         (display-buffer-fallback-action): New var.
15857 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
15859         * emacs-lisp/package.el (package-alist): Fix risky-local-variable
15860         declaration.
15861         (package--add-to-archive-contents): If there is a duplicate entry
15862         with an older version, remove it.
15863         (package-menu-mark-delete, package-menu-mark-install)
15864         (package-menu-mark-unmark): Make unused args optional.
15865         (package-menu-mark-obsolete-for-deletion):
15866         Use package-menu-get-status instead of a regexp search.
15867         (package-menu-get-status): Use tabulated-list-entry.
15868         (package-menu-mark-upgrades): New command.
15869         (package-menu-mode-map): Bind it to U.  Add it to menu bar.
15870         (package-menu-execute): Do installation before deletion.
15871         (package-menu-refresh, package-menu-execute): Use derived-mode-p
15872         instead of checking major-mode.
15873         (package-menu--find-upgrades): New function.
15875 2011-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15877         * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
15878         passwords in the log buffer.
15879         (smtpmail-process-filter): Update the process marker so that the
15880         "broken by peer" status message is inserted in the right place.
15882 2011-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
15884         * textmodes/bibtex.el (bibtex-complete-string-cleanup)
15885         (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
15886         bibtex-completion-at-point-function.
15887         (bibtex-completion-at-point-function): Use them.
15889         * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
15891         * mpc.el (mpc-constraints-tag-lookup): New function.
15892         (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
15893         also to browser "album|playlist".
15895 2011-09-14  Juri Linkov  <juri@jurta.org>
15897         * isearch.el (isearch-fail-pos): Add new arg `msg'.  Doc fix.
15898         (isearch-edit-string): Use length of `isearch-string' when
15899         `isearch-fail-pos' returns nil.
15900         (isearch-message): Remove duplicate code and call
15901         `isearch-fail-pos' with arg `t'.
15903 2011-09-14  Chong Yidong  <cyd@stupidchicken.com>
15905         * replace.el (occur-mode-goto-occurrence): Don't force using other
15906         window (Bug#9499).
15908         * dired-aux.el (dired-do-chmod): Don't provide initial input.
15910 2011-09-14  Martin Rudalics  <rudalics@gmx.at>
15912         * window.el (display-buffer-window): Remove.
15913         (display-buffer-record-window): Use help-setup window parameter
15914         instead of variable display-buffer-window.
15915         (display-buffer-function, special-display-buffer-names)
15916         (special-display-function): Mention help-setup parameter instead
15917         of display-buffer-window in doc-string.
15918         * help.el (help-window-setup): New argument help-window.
15919         Use help-window-setup parameter instead of display-buffer-window.
15920         Reword some messages.
15921         (with-help-window): Pass window used for displaying the buffer
15922         to help-window-setup.  Don't set display-buffer-window.
15924 2011-09-13  Glenn Morris  <rgm@gnu.org>
15926         * emacs-lisp/debug.el (debugger-make-xrefs):
15927         Preserve point.  (Bug#9462)
15929 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
15931         * window.el (window-deletable-p): Use next-frame.
15933 2011-09-13  Martin Rudalics  <rudalics@gmx.at>
15935         * window.el (window-auto-delete): Remove.
15936         (window-deletable-p): Remove argument FORCE.  Don't deal with
15937         dedication and previous buffers.
15938         (switch-to-prev-buffer): Don't delete window.
15939         (delete-windows-on): Delete a window's frame if and only if the
15940         window is dedicated.
15941         (replace-buffer-in-windows): Delete buffer's window or frame if
15942         and only if window is dedicated.
15943         (quit-window): Handle quit-restore as before last change.
15944         (bury-buffer): Delete window only if window-deletable-p returns t.
15946 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
15948         * window.el (window-deletable-p): Never delete the last frame on a
15949         given terminal.
15951 2011-09-13  Glenn Morris  <rgm@gnu.org>
15953         * help.el (describe-key-briefly): Copy previous standard-output change.
15955 2011-09-13  PJ Weisberg  <pj@irregularexpressions.net>
15957         * help.el (where-is): Respect non-standard standard-output.  (Bug#9030)
15959 2011-09-13  Glenn Morris  <rgm@gnu.org>
15961         * emacs-lisp/lisp-mode.el (lisp-indent-function):
15962         * progmodes/scheme.el (scheme-indent-function): Doc fixes.
15964 2011-09-12  Chong Yidong  <cyd@stupidchicken.com>
15966         * dired-aux.el (dired-mark-read-string): Don't return default
15967         value on empty input (Bug#9361).
15968         (dired-do-chxxx): Treat empty input for "touch" as no -t option.
15969         Omit initial minibuffer contents.
15970         (dired-do-chmod): Signal an error on empty input.
15971         (dired-mark-read-string): Don't return default on empty input.
15973         * files.el (file-modes-symbolic-to-number): Doc fix.
15975 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15977         * international/mule-cmds.el (ucs-completions): Remove.
15978         (read-char-by-name): Use complete-with-action instead; add metadata.
15980 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
15982         * window.el (display-buffer--action-function-custom-type)
15983         (display-buffer--action-custom-type): New vars.
15984         (display-buffer-alist, display-buffer-default-action)
15985         (display-buffer-overriding-action): Add defcustom types.
15987         * frame.el (delete-other-frames): Doc fix (Bug#276).
15989 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15991         * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
15993 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
15995         Change modes that used same-window-* vars to use switch-to-buffer.
15997         * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
15998         Use switch-to-buffer.
16000         * cus-edit.el (customize-group, custom-buffer-create)
16001         (customize-browse, custom-buffer-create-other-window):
16002         Use switch-to-buffer or switch-to-buffer-other-window.
16004         * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
16005         (Info-prev, Info-up, Info-speedbar-goto-node)
16006         (info-display-manual): Use switch-to-buffer.
16007         (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
16009         * mail/sendmail.el (mail): Use switch-to-buffer.
16010         (mail-recover): Use switch-to-buffer-other-window.
16012         * cmuscheme.el (run-scheme, switch-to-scheme):
16013         * ielm.el (ielm):
16014         * shell.el (shell):
16015         * net/rlogin.el (rlogin):
16016         * net/telnet.el (telnet, rsh):
16017         * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
16019 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
16021         * dired.el (dired-sort-toggle-or-edit): Revert last changes.
16023 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16025         * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
16026         so don't mention it (bug#9301).
16027         (dired-sort-toggle-or-edit): Clarify string further.
16029         * faces.el (face-spec-set-match-display): Make `(type graphic)'
16030         match `x', `w32' and `ns', like the manual says (bug#9029).
16032         * subr.el (eval-after-load): Doc string clarification (bug#9125).
16033         (process-kill-buffer-query-function): Mention the buffer name in
16034         the query.
16036         * image-mode.el (image-next-line): The line parameter is mandatory
16037         (bug#9258).
16039         * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
16040         which can be useful (bug#9301).
16042         * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
16044         * subr.el (match-string): Mention that the current buffer should
16045         be the same as the search was done in (bug#9282).
16047         * facemenu.el: Disable the remove-* commands if the mark isn't
16048         active (bug#9162).
16050 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
16052         * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
16053         of display-buffer.
16054         (Buffer-menu-2-window): Use switch-to-buffer-other-window.
16056         * replace.el (occur-mode-goto-occurrence)
16057         (occur-mode-display-occurrence) Use second arg of pop-to-buffer
16058         and display-buffer.
16060         * mail/reporter.el (reporter-submit-bug-report): Use second arg of
16061         display-buffer.
16063         * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
16064         special-display and same-window variables.
16065         (mail-other-window): Use switch-to-buffer-other-window.
16066         (mail-other-frame): USe switch-to-buffer-other-frame.
16068         * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
16069         Use display-buffer-other-frame.
16070         (gdb-display-gdb-buffer): Use pop-to-buffer.
16072         * progmodes/gud.el (gud-goto-info): Use info-other-window.
16074         * progmodes/python.el: Don't set same-window-buffer-names.
16076         * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
16078         * window.el (display-buffer-alist): Add *Python*.
16080 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
16082         * window.el (display-buffer-alist): Add entry for buffers
16083         previously handled same-window-*.
16084         (display-buffer-alist, display-buffer-default-action)
16085         (display-buffer-overriding-action): Mark as risky.
16086         (display-buffer-alist): Document action function changes.
16087         (display-buffer--same-window-action)
16088         (display-buffer--other-frame-action): New variables.
16089         (switch-to-buffer, display-buffer-other-frame): Use them.
16090         (display-buffer): Rename reuse-frame entry to reusable-frames.
16091         (display-buffer-reuse-selected-window): Function deleted.
16092         (display-buffer-reuse-window): Handle reusable-frames alist entry.
16093         If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
16094         (display-buffer-special): New function.
16095         (display-buffer--maybe-pop-up-frame-or-window): Rename from
16096         display-buffer-reuse-or-pop-window.  Split off special-display
16097         part into display-buffer-special.
16098         (display-buffer-use-some-window): Don't perform any special
16099         pop-up-frames handling.
16100         (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
16101         (display-buffer--maybe-same-window): Rename from
16102         display-buffer-maybe-same-window.
16104         * info.el: Don't set same-window-regexps.
16105         (info-setup): New function.
16106         (info-other-window, info): Call it.
16108         * cus-edit.el: Don't set same-window-regexps.
16109         (customize-group): New argument.
16110         (customize-group-other-window): Use it.
16111         (customize-face, customize-face-other-window): Likewise.
16112         (custom-buffer-create-other-window): Use pop-to-buffer directly.
16114         * net/rlogin.el:
16115         * net/telnet.el:
16116         * progmodes/gud.el: Don't set same-window-regexps.
16118         * cmuscheme.el:
16119         * ielm.el:
16120         * shell.el:
16121         * mail/sendmail.el:
16122         * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
16124 2011-09-10  Juri Linkov  <juri@jurta.org>
16126         * isearch.el (isearch-edit-string): Remove obsolete mention of
16127         `C-w' (`isearch-yank-word-or-char') from docstring.
16128         (isearch-query-replace): Fix typo in docstring (bug#9466).
16130 2011-09-10  Juri Linkov  <juri@jurta.org>
16132         * paren.el (show-paren-function): Don't show escaped parens.
16133         Let-bind `unescaped' to `t' when paren is not escaped.  (Bug#9461)
16135 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
16137         * mail/sendmail.el (mml-to-mime, mml-attach-file)
16138         (mm-default-file-encoding): Remove autoload forms, they are
16139         replaced with autoload cookies in mml.el and mm-encode.el.
16140         (mail-add-attachment): New command.
16141         (mail-mode-map): Add a menu-bar item for mail-add-attachment.
16142         (mail-mode): Mention mail-insert-file and mail-add-attachment in
16143         the doc string.
16144         (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
16146 2011-09-10  Reuben Thomas  <rrt@sc3d.org>
16148         * simple.el (count-words-region): Use buffer if there's no region
16149         (bug#9429).
16151 2011-09-09  Juri Linkov  <juri@jurta.org>
16153         * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
16154         `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
16155         (wdired-isearch-filter-read-only): New function.  (Bug#6362)
16157 2011-09-09  Alan Mackenzie  <acm@muc.de>
16159         * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
16160         spuriously generating `awk-mode-syntax-table'.  (Bug #9448).
16162 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
16164         Fix for Savannah bug#9392.
16165         * simple.el (mail-encode-mml): New defvar.
16167         * mail/rmail.el (mail-encode-mml): Add a defvar.
16168         (rmail-enable-mime-composing): Default to t.
16169         (rmail-forward): Use MIME method of forwarding only if both
16170         rmail-enable-mime-composing and rmail-enable-mime are non-nil.
16171         Set mail-encode-mml non-nil if the MIME method was used.
16173         * mail/sendmail.el (mml-to-mime): Add autoload form.
16174         (mail-encode-mml): Add a defvar.
16175         (mail-mode): Make mail-encode-mml buffer-local and initialize it
16176         to nil.
16177         (mail-send): If mail-encode-mml is non-nil, run the outgoing
16178         message through mml-to-mime, and reset mail-encode-mml to nil.
16180 2011-09-09  Glenn Morris  <rgm@gnu.org>
16182         * woman.el (woman-if-body): When processing an .el block,
16183         do not delete the next .el block as well.  (Bug#9447)
16184         (woman-special-characters): Add oq, cq, and hy characters.
16186 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
16188         * window.el (window-deletable-p): Make sure window is live before
16189         invoking window-prev-buffers.
16191 2011-09-08  Leo Liu  <sdl.web@gmail.com>
16193         * net/rcirc.el (rcirc-cmd-invite): New rcirc command.  (Bug#9453)
16195 2011-09-08  Juri Linkov  <juri@jurta.org>
16197         * progmodes/compile.el (compilation-environment): Make it
16198         a defcustom (bug#8340).
16200 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
16202         * window.el (frame-auto-delete): Rename to window-auto-delete.
16203         Make it control auto-deletion of windows and/or frames.
16204         (window-deletable-p): New argument FORCE.  Rewrite conditions
16205         for deleting window/frame.  (Bug#9419)
16206         (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
16207         Rewrite handling of case when window/frame can be deleted.
16208         (delete-windows-on): Call window-deletable-p with new FORCE
16209         argument t.  (Bug#9456)
16211 2011-09-07  Chong Yidong  <cyd@stupidchicken.com>
16213         * help-mode.el (help-mode): Restore autoload.
16215 2011-09-07  Juri Linkov  <juri@jurta.org>
16217         * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
16218         `compilation-environment'.  Set buffer-local
16219         `compilation-environment' to `thisenv' later after (funcall mode).
16220         (Bug#8340)
16222         * vc/vc-git.el (vc-git-grep): Remove --no-color.  (Bug#9408)
16223         (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
16224         instead of replacing its value.  (Bug#8340)
16226 2011-09-07  Juri Linkov  <juri@jurta.org>
16228         * progmodes/grep.el (grep-regexp-alist): Calculate column positions
16229         based on text properties put by `grep-filter' instead of matching
16230         escape sequences.
16231         (grep-mode): Set buffer-local `compilation-error-screen-columns'
16232         to the value of `grep-error-screen-columns' (bug#9438).
16234 2011-09-07  Juri Linkov  <juri@jurta.org>
16236         * simple.el (next-error-highlight, next-error-highlight-no-select):
16237         Doc fix (bug#9432).
16239 2011-09-07  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
16241         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
16242         Check for null c-opt-block-decls-with-vars-key.  (Bug#9443)
16244 2011-09-07  Leo Liu  <sdl.web@gmail.com>
16246         * net/rcirc.el (rcirc-mode): Conditionally initialize
16247         rcirc-input-ring.
16249 2011-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
16251         * emacs-lisp/find-func.el (find-function-C-source): Only set
16252         find-function-C-source-directory after checking that we found a source
16253         file there (bug#9440).
16255 2011-09-06  Alan Mackenzie  <acm@muc.de>
16257         * isearch.el (isearch-other-meta-char): Wherever a key list is
16258         unread, "unread" the prefix arg, too.  This fixes bug #8901.
16260 2011-09-05  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
16262         * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
16264 2011-09-05  Juri Linkov  <juri@jurta.org>
16266         * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
16268 2011-09-05  Juri Linkov  <juri@jurta.org>
16270         * progmodes/grep.el (grep-filter): Avoid incomplete processing by
16271         keeping point where processing of grep matches begins, and
16272         continue to delete remaining escape sequences from the same point.
16273         (grep-filter): Make leading zero optional in "0?1;31m" because
16274         git-grep emits "\033[1;31m" escape sequences unlike expected
16275         "\033[01;31m" as GNU Grep does (bug#9408).
16276         (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
16278 2011-09-05  Juri Linkov  <juri@jurta.org>
16280         * subr.el (y-or-n-p): Capitalize "yes".
16282 2011-09-04  Michael Albinus  <michael.albinus@gmx.de>
16284         * net/tramp.el (top): Require 'shell.  Use `tramp-unload-hook' but
16285         `tramp-cache-unload-hook' where appropriate.
16286         (tramp-methods): Rename `tramp-remote-sh' to
16287         `tramp-remote-shell'.  Add `tramp-remote-shell-args'.
16288         (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
16290         * net/tramp-sh.el (top): Don't require 'shell.
16291         (tramp-methods): Add `tramp-remote-shell' and
16292         `tramp-remote-shell-args' entries.
16293         (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
16294         (tramp-sh-handle-shell-command): Remove.
16295         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
16296         Use `tramp-remote-shell'.
16298 2011-09-03  Chong Yidong  <cyd@stupidchicken.com>
16300         * mail/sendmail.el (sendmail-query-once-function): Delete.
16301         (sendmail-query-once): Save directly to send-mail-function.
16302         Update message-send-mail-function too.
16304         * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
16306 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
16308         * progmodes/python.el (python-mode-map): Use correct function to
16309         start python interpreter from menu-bar (as reported by Geert
16310         Kloosterman).
16311         (inferior-python-mode-map): Fix typo.
16312         (python-shell-map): Remove.
16314 2011-09-03  Deniz Dogan  <deniz@dogan.se>
16316         * net/rcirc.el (rcirc-print): Simplify code for
16317         rcirc-scroll-show-maximum-output.  There is no need to walk
16318         through all windows to find the right one.
16320 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
16322         * help.el (help-return-method): Doc fix.
16324 2011-09-03  Martin Rudalics  <rudalics@gmx.at>
16326         * window.el (window-deletable-p): Don't return a non-nil value
16327         when there's a buffer that was shown in the window before.
16328         (Bug#9419)
16329         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
16330         Set window's previous buffers to nil.
16332 2011-09-03  Eli Zaretskii  <eliz@gnu.org>
16334         * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
16335         newline before and after the tag line, so it doesn't interfere
16336         with determining the paragraph direction of bidirectional text.
16338 2011-09-03  Leo Liu  <sdl.web@gmail.com>
16340         * files.el (find-file-not-true-dirname-list): Remove.  (Bug#9422)
16342 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
16344         * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
16345         (pop-to-buffer): Change interactive spec.  Pass second argument
16346         directly to display-buffer.
16347         (display-buffer): Fix interactive spec.  Use functionp to
16348         distinguish between a function and a list of functions.
16350         * abbrev.el (edit-abbrevs):
16351         * arc-mode.el (archive-extract):
16352         * autoinsert.el (auto-insert):
16353         * bookmark.el (bookmark-bmenu-list):
16354         * files.el (find-file):
16355         * view.el (view-buffer):
16356         * progmodes/compile.el (compilation-goto-locus):
16357         * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
16359 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
16361         * window.el (display-buffer-alist): Doc fix.
16362         (display-buffer): Add docstring.  Don't treat
16363         display-buffer-default specially.
16364         (display-buffer-reuse-selected-window)
16365         (display-buffer-same-window, display-buffer-maybe-same-window)
16366         (display-buffer-reuse-window, display-buffer-pop-up-frame)
16367         (display-buffer-pop-up-window)
16368         (display-buffer-reuse-or-pop-window)
16369         (display-buffer-use-some-window): New functions.
16370         (display-buffer-default-action): Use them.
16371         (display-buffer-default): Delete.
16372         (pop-to-buffer-1): Fix choice of actions.
16374 2011-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
16376         * minibuffer.el (completion--insert-strings): Don't get confused by
16377         completion entries that end with an LF char.
16379 2011-09-01  Eli Zaretskii  <eliz@gnu.org>
16381         * window.el (frame-auto-delete, window-deletable-p): Doc fix.
16383 2011-09-01  Chong Yidong  <cyd@stupidchicken.com>
16385         * window.el (display-buffer): Restore interactive spec.
16386         (display-buffer-same-window, display-buffer-other-window):
16387         New functions.
16388         (pop-to-buffer-1): New function.  Use the above.
16389         (pop-to-buffer, pop-to-buffer-same-window): Use it.
16390         (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
16392         * view.el (view-buffer-other-window, view-buffer-other-frame):
16393         Just use pop-to-buffer.
16395 2011-09-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
16397         * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories.  (Bug#9391)
16399 2011-09-01  Wilfred Hughes  <wilfred@potatolondon.com>  (tiny change)
16401         * vc/vc-git.el (vc-git-grep): Use --no-color.  (Bug#9408)
16403 2011-08-31  Richard Stallman  <rms@gnu.org>
16405         * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
16406         of the separation of rmail-view-buffer from rmail-buffer.
16407         If you say no to "replace original", the decrypt is in the
16408         view buffer.  If you say yes, the decrypt goes into the
16409         rmail buffer also.
16411 2011-08-31  Martin Rudalics  <rudalics@gmx.at>
16413         * window.el (display-buffer-window): Rewrite doc-string.
16414         (display-buffer-record-window): New function.
16415         (display-buffer-macro-specifiers)
16416         (display-buffer-even-window-sizes, display-buffer-set-height)
16417         (display-buffer-set-width, display-buffer-in-window)
16418         (display-buffer-reuse-window, display-buffer-split-specifiers)
16419         (display-buffer-side-specifiers, display-buffer-split-window-1)
16420         (display-buffer-split-window, display-buffer-split-atom-window)
16421         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
16422         (display-buffer-pop-up-side-window, display-buffer-in-side-window)
16423         (display-buffer-other-window-means-other-frame)
16424         (display-buffer-normalize-special)
16425         (display-buffer-normalize-default)
16426         (display-buffer-normalize-argument)
16427         (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
16428         (display-buffer-normalize-specifiers, display-buffer-frame)
16429         (display-buffer-same-window, display-buffer-same-frame)
16430         (display-buffer-other-window)
16431         (display-buffer-same-frame-other-window)
16432         (display-buffer-other-frame, pop-to-buffer-same-window)
16433         (pop-to-buffer-same-frame, pop-to-buffer-other-window)
16434         (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
16435         (switch-to-buffer-same-frame)
16436         (switch-to-buffer-other-window-same-frame)
16437         (display-buffer-alist-of-strings-p, display-buffer-alist-add)
16438         (display-buffer-alist-set-1, display-buffer-alist-set-2)
16439         (display-buffer-alist-set): Remove.
16440         (display-buffer-function, special-display-buffer-names)
16441         (special-display-regexps, special-display-function):
16442         In doc-string refer to display-buffer-window and quit-restore
16443         parameter.
16444         (pop-up-frame-alist, pop-up-frame-function, special-display-p)
16445         (special-display-frame-alist, special-display-popup-frame)
16446         (same-window-buffer-names, same-window-regexps, same-window-p)
16447         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
16448         (split-window-preferred-function, split-height-threshold)
16449         (split-width-threshold, window-splittable-p)
16450         (split-window-sensibly, window--try-to-split-window)
16451         (window--frame-usable-p, even-window-heights)
16452         (window--even-window-heights, window--display-buffer-1)
16453         (window--display-buffer-2, display-buffer-other-frame):
16454         Restore old Emacs 23 code, order and doc-strings where applicable.
16455         (display-buffer-default, display-buffer-assq-regexp): New functions.
16456         (display-buffer-alist): Rewrite doc-string.
16457         (display-buffer-default-action)
16458         (display-buffer-overriding-action): New variables.
16459         (display-buffer, switch-to-buffer): Rewrite.
16460         (pop-to-buffer): Restore Emacs 23 behavior but use
16461         window-normalize-buffer-to-display.
16462         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
16463         Restore Emacs 23 behavior but use
16464         window-normalize-buffer-to-switch-to.
16465         (pop-to-buffer-same-window): Rewrite.
16466         (pop-to-buffer-other-window, pop-to-buffer-other-frame):
16467         Rewrite using Emacs 23 options.
16469 2011-08-31  Michael Albinus  <michael.albinus@gmx.de>
16471         * net/tramp.el (tramp-root-regexp): Remove.
16472         (tramp-completion-file-name-regexp-unified)
16473         (tramp-completion-file-name-regexp-separate)
16474         (tramp-completion-file-name-regexp-url): Don't use leading volume
16475         letter on w32 systems.  (Bug#5303, Bug#9311)
16476         (tramp-drop-volume-letter): Simplify definition.
16477         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
16479 2011-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16481         * subr.el (event-modifiers): Fix "missing modifier" part of docstring
16482         (bug#9356).
16484 2011-08-30  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
16486         * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
16488 2011-08-29  Juri Linkov  <juri@jurta.org>
16490         * isearch.el (isearch-done): Don't display message "Mark saved"
16491         when arg `edit' is non-nil to prevent its flicker in the echo area.
16493 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
16495         * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
16496         obsolete packages for deletion.
16498 2011-08-28  Christoph Scholtes  <cschol2112@googlemail.com>
16500         * help-mode.el (help-mode-map): Add special-mode-map to parent.
16501         (help-mode): Derive help-mode from special-mode.  Don't invoke
16502         view-mode from help-mode.
16503         (help-xref-override-view-map): Remove.
16504         (help-make-xrefs): Remove minor-mode-overriding-map-alist since
16505         view-mode is not used anymore.
16507 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
16509         * server.el (server-port): Doc fix.
16511         * cus-theme.el (custom-theme-choose-mode): Inherit from
16512         special-mode (Bug#9124).
16513         (custom-theme-choose-mode-map): Add special-mode to parent.
16515 2011-08-28  Alan Mackenzie  <acm@muc.de>
16517         * progmodes/cc-fonts.el
16518         (c-make-font-lock-BO-decl-search-function): New function.
16519         (c-basic-matchers-after - "Fontify the clauses after various
16520         keywords"): Extract the three keyword lists for the 3 erroneous
16521         constructs from the list of four, and use the new function above
16522         in place of an old one.
16524 2011-08-28  Deniz Dogan  <deniz@dogan.se>
16526         * net/rcirc.el (rcirc-insert-prev-input)
16527         (rcirc-insert-next-input): Remove unused argument.
16529 2011-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16531         * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
16533 2011-08-27  Alan Mackenzie  <acm@muc.de>
16535         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
16536         handle function pointer parameters properly.
16538 2011-08-27  Martin Rudalics  <rudalics@gmx.at>
16540         * window.el (display-buffer-reuse-window): Fix case where
16541         selected window was reused with non-nil OTHER-WINDOW argument.
16542         (Bug#9381)
16544 2011-08-27  Deniz Dogan  <deniz@dogan.se>
16546         * net/rcirc.el (rcirc-check-auth-status): Adding support for
16547         oftc's NickServ messages.
16549 2011-08-27  Glenn Morris  <rgm@gnu.org>
16551         * saveplace.el (save-place-limit): Make it finite.  (Bug#9352)
16553 2011-08-26  Chong Yidong  <cyd@stupidchicken.com>
16555         * emacs-lisp/package.el (package-install): Call package-initialize
16556         if called interactively.
16558 2011-08-26  Leo Liu  <sdl.web@gmail.com>
16560         * emacs-lisp/cl-macs.el (defstruct): Fix format.  (Bug#9357)
16562 2011-08-25  Juri Linkov  <juri@jurta.org>
16564         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
16565         `search-whitespace-regexp' (bug#9364).
16567 2011-08-25  Juri Linkov  <juri@jurta.org>
16569         * isearch.el (isearch-edit-string): Let-bind `search-ring' and
16570         `regexp-search-ring' to their global values to protect from
16571         updating by `read-from-minibuffer' (bug#9185).
16573 2011-08-25  Juri Linkov  <juri@jurta.org>
16575         * textmodes/ispell.el (ispell-command-loop): Add newline
16576         at the end of the "Use option `i'..." line.
16578 2011-08-25  Juri Linkov  <juri@jurta.org>
16580         * battery.el (display-battery-mode): If `battery-status-function'
16581         or `battery-mode-line-format' is nil, display the message and set
16582         `display-battery-mode' to nil (bug#9363).
16584 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
16586         * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
16587         bidi-string-mark-left-to-right; they are unnecessary now.
16589 2011-08-25  Deniz Dogan  <deniz@dogan.se>
16591         * net/quickurl.el: Documentation typo fixes.
16593 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
16595         * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
16597 2011-08-25  Glenn Morris  <rgm@gnu.org>
16599         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
16601         * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
16602         (smtpmail-via-smtp): Handle nil response from smtp.
16604 2011-08-24  Juri Linkov  <juri@jurta.org>
16606         * proced.el (proced-marked): Inherit from `error' instead of
16607         `font-lock-warning-face'.
16609         * ibuffer.el (ibuffer-marked-face): Change default face from
16610         `font-lock-warning-face' to `warning'.
16611         (ibuffer-deletion-face): Change default face from
16612         `font-lock-type-face' to `error'.
16614         * battery.el (battery-update): Use the face `error' instead of
16615         `font-lock-warning-face' (bug#6117).
16617 2011-08-24  Juri Linkov  <juri@jurta.org>
16619         * faces.el (success): Change face color from "Green3" to
16620         "ForestGreen" on light background (bug#9353).
16622 2011-08-24  Chong Yidong  <cyd@stupidchicken.com>
16624         * window.el (quit-window): Rename from quit-restore-window.
16625         Use same arglist as old quit-window.
16626         (frame-auto-delete): Doc fix.
16628         * view.el (view-mode-exit): Use quit-window.
16630 2011-08-24  Juri Linkov  <juri@jurta.org>
16632         * isearch.el (isearch-ring-adjust1): Start visiting previous
16633         search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
16634         (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
16635         for empty search string (when the last search string is reused
16636         automatically) to adjust the isearch ring to the last element and
16637         prepare the correct index for further M-p commands (bug#9185).
16639 2011-08-24  Kenichi Handa  <handa@m17n.org>
16641         * international/ucs-normalize.el: If decomposition property of
16642         CHAR is the default one (i.e. a list of CHAR itself), treat it as
16643         nil.
16644         (nfd, nfkd): Likewise.
16646 2011-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16648         * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
16649         from process filters aren't reliably transmitted to the surrounding
16650         accept-process-output.
16651         (mpc-proc-check): New function.
16652         (mpc-proc-sync): Use it (bug#8293)
16654 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16656         * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
16657         Add compatibility functions (bug#9313).
16659 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
16661         * cus-start.el (all): Add entry for bidi-paragraph-direction.
16663         * international/uni-bidi.el: Regenerate.
16665 2011-08-23  Kenichi Handa  <handa@m17n.org>
16667         * international/charprop.el:
16668         * international/uni-bidi.el:
16669         * international/uni-category.el:
16670         * international/uni-combining.el:
16671         * international/uni-comment.el:
16672         * international/uni-decimal.el:
16673         * international/uni-decomposition.el:
16674         * international/uni-digit.el:
16675         * international/uni-lowercase.el:
16676         * international/uni-mirrored.el:
16677         * international/uni-name.el:
16678         * international/uni-numeric.el:
16679         * international/uni-old-name.el:
16680         * international/uni-titlecase.el:
16681         * international/uni-uppercase.el: Regenerate.
16683 2011-08-23  Martin Rudalics  <rudalics@gmx.at>
16685         * help.el (help-window-setup): Fix message displayed when other
16686         window is reused.  (Bug#9341)
16688 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16690         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
16691         * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
16693         * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
16694         Mark obsolete.
16695         * shell.el (shell-parse-pcomplete-arguments): New function.
16696         (shell-completion-vars): Use it instead (bug#9160).
16698 2011-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16700         * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
16701         strings and comments (bug#9333).
16703         * emacs-lisp/debug.el (debug-arglist): New function.
16704         (debug-convert-byte-code): Use it.  Handle lexical byte-codes.
16705         (debug-on-entry-1): Handle interpreted closures (bug#9120).
16707 2011-08-22  Juri Linkov  <juri@jurta.org>
16709         * progmodes/compile.el (compilation-mode-font-lock-keywords):
16710         Revert regexp that highlights output switches to its old
16711         pre-2010-10-28 value and remove one `?' from it (bug#9319).
16713         * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
16714         to check for empty output (bug#9226).
16716 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
16718         * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
16719         symbol-constituent as the default, as that stops font-lock from
16720         working properly (Bug#8843).
16722 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16724         * mail/smtpmail.el (smtpmail-via-smtp): Only bind
16725         `coding-system-for-*' around the process open call to avoid
16726         auth-source side effects.
16727         (smtpmail-try-auth-methods): Expand the secret password.
16728         (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
16729         probe hangs.
16731 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
16733         * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
16735         * emacs-lisp/find-func.el (find-function-noselect): New arg
16736         lisp-only.
16738         * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
16739         signal an error for built-in functions (Bug#6664).
16741 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16743         * mail/smtpmail.el (smtpmail-smtp-user): New variable.
16744         (smtpmail-try-auth-methods): Use it.
16746 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
16748         * font-lock.el (font-lock-fontify-region)
16749         (font-lock-unfontify-region, font-lock-default-fontify-buffer)
16750         (font-lock-default-unfontify-buffer)
16751         (font-lock-default-fontify-region)
16752         (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
16754         * progmodes/compile.el (compilation-error-properties):
16755         Fix confusion between file struct and message struct (Bug#9319).
16756         (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
16757         `ant' regexp.
16759         * net/browse-url.el (browse-url-firefox): Don't call
16760         browse-url-firefox-sentinel unless using -remote (Bug#9328).
16762 2011-08-20  Glenn Morris  <rgm@gnu.org>
16764         * tutorial.el (help-with-tutorial): Avoid an error on short screens.
16766         * tutorial.el (tutorial--default-keys): Update some default bindings.
16768         * files.el (hack-local-variables): Fully ignore case for "mode:".
16770 2011-08-20  Alan Mackenzie  <acm@muc.de>
16772         Resolve invalid use of a regexp in regexp-opt.
16774         * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
16775         detection for a java annotation.
16777         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
16778         detection for a java annotation.
16780         * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
16781         handling for java.
16782         (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
16784 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
16786         * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
16787         (Bug#9274).
16789 2011-08-20  Alan Mackenzie  <acm@muc.de>
16791         Fontify CPP expressions correctly when starting in the middle of
16792         such a construct.  Mainly for when jit-lock etc. starts a chunk
16793         here.
16795         * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
16796         variable.
16797         (c-make-font-lock-search-form): New function, extracted from
16798         c-make-font-lock-search-function.
16799         (c-make-font-lock-search-function): Use the above function.
16800         (c-make-font-lock-context-search-function): New function.
16801         (c-cpp-matchers): Enhance the preprocessor expression case with
16802         the above function
16803         (c-font-lock-complex-decl-prepare): Test for being in a CPP form
16804         which takes an expression.
16806         * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
16808 2011-08-20  Martin Rudalics  <rudalics@gmx.at>
16810         * window.el (display-buffer-reuse-window)
16811         (display-buffer-pop-up-window): Don't reuse or split a side
16812         window.
16814 2011-08-19  Glenn Morris  <rgm@gnu.org>
16816         * files.el (hack-local-variables-prop-line, hack-local-variables):
16817         Downcase "Mode:".  (Bug#9331)
16819 2011-08-18  Chong Yidong  <cyd@stupidchicken.com>
16821         * international/characters.el: Add L and R categories.
16823         * subr.el (bidi-string-mark-left-to-right): Rename from
16824         string-mark-left-to-right.  Use category search.
16826         * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
16828 2011-08-18  Juri Linkov  <juri@jurta.org>
16830         * faces.el (error, warning, success): New faces with definitions
16831         copied from old default values of `font-lock-warning-face',
16832         `compilation-warning', `compilation-info' (bug#6117).
16834         * font-lock.el (font-lock-warning-face): Inherit from `error'.
16836         * progmodes/compile.el (compilation-error): Inherit from `error'.
16837         (compilation-warning): Inherit from `warning'.
16838         (compilation-info): Inherit from `success'.
16840         * dired.el (dired-marked): Inherit from `warning'.
16841         (dired-flagged): Inherit from `error'.
16843 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16845         * mail/smtpmail.el (auth-source): Require to avoid problems with
16846         binding variables (bug#9298).  Also clean up some unused
16847         autoloads.
16849         * net/network-stream.el (network-stream-open-starttls):
16850         Support using starttls.el without using gnutls-cli.
16852 2011-08-17  Juri Linkov  <juri@jurta.org>
16854         * progmodes/grep.el (rgrep): Handle the case when
16855         `grep-find-command' is a cons cell (bug#9278).
16857 2011-08-17  Martin Rudalics  <rudalics@gmx.at>
16859         * window.el (display-buffer-pop-up-frame): Run frame creation
16860         function with BUFFER current (as special-display-popup-frame
16861         does).  Reported by Drew Adams.
16863 2011-08-17  Daiki Ueno  <ueno@unixuser.org>
16865         * epa-mail.el: Simplify GnuPG group expansion using
16866         epg-expand-group.
16867         (epa-mail-group-alist, epa-mail-group-modtime)
16868         (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
16869         (epa-mail-sync-groups, epa-mail-expand-recipient-1)
16870         (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
16871         Remove.
16873 2011-08-16  Feng Li  <fengli@gmail.com>  (tiny change)
16875         * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
16877 2011-08-16  Alan Mackenzie  <acm@muc.de>
16879         * progmodes/cc-engine.el (c-state-cache-non-literal-place):
16880         Correct, to avoid the inside of macros.
16882 2011-08-16  Richard Stallman  <rms@gnu.org>
16884         * epa-mail.el: Handle GnuPG group definitions.
16885         (epa-mail-group-alist, epa-mail-group-modtime)
16886         (epa-mail-gnupg-conf-file): New variables.
16887         (epa-mail-parse-groups, epa-mail-sync-groups)
16888         (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
16889         (epa-mail-expand-recipients): New functions.
16890         (epa-mail-encrypt): Call epa-mail-expand-recipients.
16892         * mail/rmail.el (rmail-epa-decrypt): New command.
16894         * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
16895         Don't bind buffer-read-only, just inhibit-read-only.
16896         (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
16897         (epa-decrypt-armor-in-region): Make error message clearer.
16899 2011-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
16901         * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
16902         and "a2b" to "ab" for `prefix'.
16904 2011-08-14  Chong Yidong  <cyd@stupidchicken.com>
16906         * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
16907         filter groups.
16908         (ibuffer-included-in-filter-p-1): Use it.  Suggested by Rafaël
16909         Fourquet (Bug#8804).
16911 2011-08-12  Juanma Barranquero  <lekktu@gmail.com>
16913         * startup.el (argi): Declare as global variable (bug#9275).
16915 2011-08-12  Chong Yidong  <cyd@stupidchicken.com>
16917         * subr.el (string-mark-left-to-right): Search the entire string
16918         for RTL script, not just the terminating character.  Doc fix.
16920 2011-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
16922         * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
16923         New function.
16924         (js--regexp-literal, js-syntax-propertize-function): Remove.
16925         (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
16926         (js-mode-map): Don't rebind electric keys.
16927         (js-insert-and-indent): Remove.
16928         (js-mode): Setup electric-layout and electric-indent instead.
16930         * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
16932 2011-08-12  Daiki Ueno  <ueno@unixuser.org>
16934         * epa.el (epa-progress-callback-function): Fix the logic of
16935         displaying progress.
16936         * epa-file.el (epa-file-insert-file-contents): Make progress
16937         display more user-friendly.
16938         (epa-file-write-region): Ditto.
16940 2011-08-10  Chong Yidong  <cyd@stupidchicken.com>
16942         * subr.el (string-mark-left-to-right): New function.
16944         * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
16945         Use string-mark-left-to-right.
16946         (list-buffers-noselect): Caller changed.
16948         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
16949         Use string-mark-left-to-right.
16950         (tabulated-list-print): Recenter after moving point.
16952 2011-08-10  Juri Linkov  <juri@jurta.org>
16954         * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
16955         This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
16956         intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
16958 2011-08-09  Chong Yidong  <cyd@stupidchicken.com>
16960         * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
16961         (Bug#7554).
16963 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
16965         * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
16966         character.  (Bug#6594)
16968 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
16970         * image-dired.el: Don't use find-file for temporary work (Bug#7895).
16971         (image-dired--with-db-file): New macro.
16972         (image-dired-write-tags, image-dired-remove-tag)
16973         (image-dired-create-gallery-lists, image-dired-write-comments)
16974         (image-dired-get-comment, image-dired-mark-tagged-files)
16975         (image-dired-list-tags, image-dired-gallery-generate): Use it.
16976         (image-dired-gallery-generate): Use insert-file-contents.
16978         * time.el (display-time-world-list, display-time-world-display):
16979         * time-stamp.el (time-stamp-string):
16980         * vc/add-log.el (add-change-log-entry): Use setenv instead of
16981         set-time-zone-rule (Bug#7337).
16983 2011-08-08  Daiki Ueno  <ueno@unixuser.org>
16985         * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
16986         (epg-error-to-string, epg-errors-to-string): New function.
16987         (epg-wait-for-completion): Reverse errors list.
16988         (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
16989         (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
16990         (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
16991         (epg-sign-keys, epg-generate-key-from-file)
16992         (epg-generate-key-from-string): Format errors by using
16993         epg-errors-to-string (bug#9255).
16994         (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
16996 2011-08-07  Juri Linkov  <juri@jurta.org>
16998         * faces.el (list-faces-display): Remove extra angle bracket
16999         from `help-mode-map'.
17001         * info.el (Info-history-toc-nodes): Doc fix.
17003         * longlines.el (longlines-mode): Doc fix.
17005 2011-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17007         * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
17008         of statements and in a few more cases (bug#9183).
17010         * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
17011         New functions.
17012         (cl-transform-lambda): Use them (bug#9239).
17014 2011-08-05  Martin Rudalics  <rudalics@gmx.at>
17016         * window.el (display-buffer-same-window)
17017         (display-buffer-same-frame, display-buffer-other-window)
17018         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
17019         (pop-to-buffer-other-window)
17020         (pop-to-buffer-same-frame-other-window)
17021         (pop-to-buffer-other-frame): Make them defuns.
17022         (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
17024 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17026         * subr.el (make-composed-keymap): Move from C.  Change calling
17027         convention, and improve docstring to bring attention to a subtle point.
17028         * minibuffer.el (completing-read-default): Adjust accordingly.
17030 2011-08-03  Michael Albinus  <michael.albinus@gmx.de>
17032         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
17033         (tramp-open-shell): Use `tramp-shell-quote-argument'.
17035         * net/trampver.el: Update release number.
17037 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17039         * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
17040         "in" (bug#9190).
17042 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17044         * mail/sendmail.el (sendmail-query-once): Restore the current
17045         buffer after querying (bug#9074).
17047         * dired.el (dired-flagged): Use different faces for marked and
17048         flagged files (bug#6117).
17050         * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
17051         (bug#4433).
17053         * ido.el (ido-mode): Switch off the message if called
17054         non-interactively.
17056         * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
17057         before 587, since it appears that that's more likely to work for
17058         more people.
17060         * cus-edit.el (custom-file): When running under emacs -q, always
17061         refuse to save the customizations, even if the .emacs file doesn't
17062         exist.
17064         * info.el: Remove the `Info-beginning-of-buffer' function
17065         (bug#8325).
17067         * net/network-stream.el (network-stream-open-starttls):
17068         Use `starttls-available-p' to see whether starttls.el can be used.
17070 2011-08-01  Martin Rudalics  <rudalics@gmx.at>
17072         * window.el (display-buffer-in-window): Don't set dedicated status
17073         of window here (Bug#9215).
17074         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
17075         (display-buffer-pop-up-side-window)
17076         (display-buffer-in-side-window): Set dedicated status of window here.
17078 2011-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
17080         * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
17081         before binding generated-autoload-file.
17083 2011-08-01  Deniz Dogan  <deniz@dogan.se>
17085         * net/rcirc.el (rcirc-handler-333): Clarify docstring.
17087 2011-07-30  Michael Albinus  <michael.albinus@gmx.de>
17089         Sync with Tramp 2.2.2.
17091         * net/trampver.el: Update release number.
17093 2011-07-30  Juri Linkov  <juri@jurta.org>
17095         * dired-aux.el (dired-touch-initial): Remove function.
17096         (dired-do-chxxx): For op-symbol `touch', set `initial' to the
17097         current time, and `default' to the last modification time of the
17098         current marked file (bug#6887).
17100 2011-07-28  Jose E. Marchesi  <jemarch@gnu.org>
17102         * simple.el (goto-line): Use string-to-number to provide a
17103         numeric argument to read-number (bug#9163).
17105 2011-07-27  Michael Albinus  <michael.albinus@gmx.de>
17107         * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
17108         connection process, it could be nil.
17110 2011-07-27  Leo Liu  <sdl.web@gmail.com>
17112         Simplify url handling in rcirc-mode.
17114         * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
17115         (rcirc-browse-url-at-mouse): Remove.
17116         * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
17118 2011-07-26  Alan Mackenzie  <acm@muc.de>
17120         Fontify bitfield declarations properly.
17122         * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
17123         (c-symbol-chars): Now exported as a lang variable.
17124         (c-not-primitive-type-keywords): New lang variable.
17126         * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
17127         QT keyword "more" to prevent "more slots: ...." being spuriously
17128         parsed as a bitfield declaration.
17130         * progmodes/cc-engine.el (c-beginning-of-statement-1):
17131         Refactor and enhance to handle bitfield declarations.
17132         (c-punctuation-in): New function.
17133         (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
17134         declarations properly.
17136 2011-07-26  Ulf Jasper  <ulf.jasper@web.de>
17138         * calendar/icalendar.el (icalendar--all-events): Take care of
17139         multiple vcalendars in a single file.
17140         (icalendar--convert-float-to-ical): Checkdoc fixes.
17142 2011-07-25  Deniz Dogan  <deniz@dogan.se>
17144         * image.el (insert-image): Clarifying docstring.
17146 2011-07-24  Michael Albinus  <michael.albinus@gmx.de>
17148         * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
17149         `tramp-send-command-and-check' if there is no error.
17150         (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
17152 2011-07-22  Alan Mackenzie  <acm@muc.de>
17154         Prevent cc-langs.elc being loaded at run time.
17156         * progmodes/cc-mode.el: Remove two autoload forms which loaded
17157         cc-langs.
17159         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
17160         "(require 'cc-langs)".  Quote a form so it will evaluate at
17161         (cc-mode's) compilation time.
17163 2011-07-22  Michael Albinus  <michael.albinus@gmx.de>
17165         * net/tramp.el (tramp-file-name-handler): Avoid recursive
17166         loading.  (Bug#9114)
17168 2011-07-21  Martin Rudalics  <rudalics@gmx.at>
17170         * window.el (display-buffer-pop-up-window)
17171         (display-buffer-pop-up-side-window)
17172         (display-buffer-in-side-window): Call display-buffer-set-height
17173         and display-buffer-set-width after setting the new window's
17174         buffer so `fit-window-to-buffer' and friends work on the right buffer.
17176 2011-07-20  Sam Steingold  <sds@gnu.org>
17178         * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
17179         (etags-tags-included-tables): Call `convert-standard-filename' on
17180         the file names contained in TAGS so that windows Emacs can handle
17181         TAGS files created by cygwin ctags.
17183 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17185         * proced.el (proced-update): Revert yesterday's bug#1779 patch,
17186         which apparently didn't work.
17188 2011-07-19  Roland Winkler  <winkler@gnu.org>
17190         * proced.el (proced-send-signal): For *Marked Processes* buffer
17191         put point at beginning of buffer.
17193 2011-07-19  Stephen Berman  <stephen.berman@gmx.net>
17195         * proced.el (proced-format): Make header lines align with the text
17196         (bug#1779).
17198 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17200         * view.el (view-buffer): Allow running in `special' modes if we're
17201         visiting a file (bug#8615).
17203 2011-07-19  Martin Rudalics  <rudalics@gmx.at>
17205         * window.el (display-buffer-alist-of-strings-p)
17206         (display-buffer-alist-set-1, display-buffer-alist-set-2):
17207         New functions.
17208         (display-buffer-alist-set): Rewrite to handle Emacs 23 options
17209         more accurately.
17211 2011-07-18  Alan Mackenzie  <acm@muc.de>
17213         Fontify declarators properly when, e.g., a jit-lock chunk begins
17214         inside a declaration.
17216         * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
17218         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
17219         New function.
17220         (c-complex-decl-matchers): Insert reference to
17221         c-font-lock-enclosing-decls.
17223         * progmodes/cc-engine.el (c-backward-single-comment):
17224         (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
17225         to nil around calls to (forward-comment -1).
17227 2011-07-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17229         * image.el (put-image): Doc typo fix.
17231         * progmodes/etags.el (tags-search): Doc typo fix.
17233         * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
17234         password if we get errors 550 to 554.
17236 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17238         * net/gnutls.el (gnutls-log-level): Remove.
17240         * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
17241         indentation character (bug#6380).
17243         * files.el (buffer-offer-save): Made permanently local (bug#6241).
17245         * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
17246         to clarify what the problem is (bug#4291).
17248         * simple.el (current-kill): Clarify what
17249         `interprogram-paste-function' does (bug#7500).
17250         (auto-fill-mode): Document `auto-fill-function' in relation to
17251         `auto-fill-mode' (bug#2470).
17253 2011-07-16  Lawrence Mitchell  <wence@gmx.li>
17255         * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
17256         method if slot is read-only (bug#9035).
17258 2011-07-16  Martin Rudalics  <rudalics@gmx.at>
17260         * frame.el (select-frame-set-input-focus): New argument NORECORD.
17261         * window.el (pop-to-buffer): Select window used even if it was
17262         selected before, see discussion of (Bug#8615), (Bug#6954).
17263         Pass argument NORECORD on to select-frame-set-input-focus.
17265 2011-07-15  Glenn Morris  <rgm@gnu.org>
17267         * subr.el (read-char-choice): Allow quitting.  (Bug#9001)
17268         Respect help-form.
17270 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
17272         * net/gnutls.el (gnutls-min-prime-bits): New variable.
17273         (gnutls-negotiate): Use it.
17275 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17277         * net/gnutls.el (gnutls-negotiate):
17278         Upcase `gnutls-algorithm-priority'.
17280 2011-07-15  Glenn Morris  <rgm@gnu.org>
17282         * jka-compr.el (jka-compr-verbose): Move from here...
17283         * jka-cmpr-hook.el (jka-compr-verbose): ... to here.  (Bug#9090)
17284         Add missing :version tag.
17285         * info.el: No need to require jka-compr when compiling.
17287 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17289         * net/gnutls.el (gnutls-algorithm-priority): New variable.
17290         (gnutls-negotiate): Use it.
17292         * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
17294         * info.el (Info-beginning-of-buffer): New command.
17295         (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
17296         announcing `b' as the key (bug#8325).
17297         (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
17299         * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
17301         * international/mule-cmds.el
17302         (describe-specified-language-support): Make the error message
17303         clearer (bug#8905).
17305         * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
17307         * isearch.el (isearch-barrier): Add a doc string, since it's
17308         mentioned in a function doc string (bug#8678).
17310 2011-07-15  Martin Rudalics  <rudalics@gmx.at>
17312         * window.el (switch-to-buffer): Call pop-to-buffer with normalized
17313         buffer argument (Bug#9083) and self-identifying label argument.
17315 2011-07-15  Glenn Morris  <rgm@gnu.org>
17317         * emacs-lisp/debug.el (debug): Doc fix.  (Bug#8273)
17319 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17321         * man.el (Man-fontify-manpage): Fix message when formatting the
17322         man page (bug#7929).
17324 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
17326         * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
17327         argument LRM; if non-nil, append an invisible LRM character to the
17328         buffer name.
17329         (list-buffers-noselect): Call Buffer-menu-buffer+size with the
17330         last argument non-nil, when formatting buffer names.
17331         (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
17332         paragraph direction.
17334 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17336         * man.el (Man-bgproc-sentinel): Skip any arguments and only output
17337         the man page name (bug#7929).
17339         * image.el (put-image): Mention the `put-image' overlay property
17340         (bug#7834).
17342         * scroll-bar.el (set-scroll-bar-mode): Mention that
17343         `scroll-bar-mode' lists the values (bug#7772).
17345         * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
17346         command (bug#7729).
17348         * rect.el (apply-on-rectangle): Return the point after the last
17349         operation.
17350         (string-rectangle): Go to the point after the last operation
17351         (bug#7522).
17353         * printing.el (pr-toggle-region): Clarify the documentation
17354         slightly (bug#7493).
17356         * time.el (display-time-update):
17357         Allow `display-time-mail-function' to return nil (bug#7158).
17358         Fix suggested by Detlev Zundel.
17360         * vc/diff.el (diff): Clarify the order the file names are read
17361         (bug#7111).
17363         * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
17364         the doc string (bug#7015).
17366         * font-lock.el (font-lock-maximum-decoration): Mention what
17367         numeric levels mean (bug#6935).
17369         * startup.el (initial-buffer-choice): Don't mention the `none'
17370         selection, which is against policy.
17372 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
17374         * window.el (display-buffer-normalize-special):
17375         Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
17377 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
17379         * subr.el (version<, version<=, version=): Mention "-CVS" and
17380         "-12345" alpha version numbers.
17382 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
17384         * bindings.el: Add advertised binding for set-mark-command
17385         (Bug#5772).
17387 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
17389         * bindings.el (mode-line-other-buffer):
17390         * bookmark.el (bookmark-bmenu-2-window):
17391         * bs.el (bs-cycle-next, bs-cycle-previous):
17392         * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
17393         switch-to-buffer.
17395         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
17396         Delete.
17398 2011-07-14  Juanma Barranquero  <lekktu@gmail.com>
17400         * follow.el (follow-debug-message, follow-redisplay):
17401         * jka-cmpr-hook.el (with-auto-compression-mode):
17402         Fix typos in docstrings.
17404 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17406         * subr.el (with-silent-modifications): Clarify somewhat what the
17407         macro inhibits (bug#6525).
17409         * simple.el (eval-expression): Note what it does if called
17410         interactively (bug#6495).
17412 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
17414         * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
17415         Use pop-to-buffer buffer-or-name if it is nil.
17417         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
17418         Remove switch-to-buffer.
17420 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17422         * files.el (make-directory): Clarify that an error will be raised
17423         if there's an error (bug#6397).
17425         * startup.el (initial-buffer-choice): Add `none' as a choice
17426         (bug#6234).
17428         * subr.el (add-hook): Clarify section about buffer-local hooks
17429         (bug#6218).
17431         * dired.el (dired-flagged): Clarify doc string (bug#6117).
17433 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
17435         * tabify.el (untabify): Preserve the current column so that point
17436         doesn't move (bug#6032).
17438 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17440         * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
17441         Rewrite to avoid awkward possessive "s" (bug#5986).
17443 2011-07-13  Glenn Morris  <rgm@gnu.org>
17445         * dired.el (dired-use-ls-dired): Doc fix.  (Bug#9039).
17446         (dired-insert-directory): Give a message the first time
17447         if ls is found not to support --dired.
17449 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17451         * simple.el (toggle-truncate-lines): Clarify what is toggled
17452         (bug#5580).  Text by Drew Adams.
17454 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
17456         * simple.el (blink-matching-open): Make the error message from the
17457         last change less verbose.
17459 2011-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
17461         * font-lock.el (font-lock-comment-face): Use the high contrast
17462         "yellow" color for font-lock-comment-face on low color terminals
17463         using a dark background color (bug#4221).
17465 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17467         * dired.el (dired-insert-set-properties): Make the doc string
17468         reflect what it does now (bug#5325).
17470         * simple.el (blink-matching-open): Say that we were unable to find
17471         the match within the limit, if we're limited (bug#5122).
17473         * international/mule-cmds.el (prefer-coding-system): Add an
17474         example (bug#4869).
17476         * progmodes/etags.el (tags-search): Document `file-list-form'
17477         (bug#4731).
17479 2011-07-13  Lawrence Mitchell  <wence@gmx.li>
17481         * net/browse-url.el (browse-url-default-browser)
17482         (browse-url-browser-function): Make the default browser choice a
17483         bit more logical (bug#4300).  Also clean up the doc string.
17485 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
17487         * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
17488         binary endings (bug#4440).
17490 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17492         * info.el (info-insert-file-contents): Inhibit jka-compr messages,
17493         which can be pretty annoying (bug#8971).
17495         * jka-compr.el (jka-compr-verbose): New variable, and use
17496         throughout (bug#8971).
17498         * info.el (Info-find-file): Fall back on the installation
17499         directory if we can't find the info node anywhere else.
17501 2011-07-13  Sergei Organov  <osv@javad.com>  (tiny change)
17503         * vc/vc.el (vc-revert-file):
17504         Don't set file time-stamp in the past.  (Bug#5181)
17506 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17508         * files.el (after-find-file): Give a better error message when
17509         trying to find a symlink that points to a file that doesn't exist
17510         (bug#4398).
17512         * progmodes/cc-vars.el: Remove (probably) misleading comment
17513         (bug#4396).
17515 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
17517         * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
17519 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
17521         * mouse-sel.el: Hack restoring functionality, while keeping
17522         compatibility with 2010-07-03 changes to mouse selection.
17523         (mouse-sel-primary-overlay): New var.
17524         (mouse-sel-selection-alist): Use it.
17525         (mouse-sel-mode): Doc fix; remove points that are default features
17526         of mouse.el.
17528 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
17530         * progmodes/compile.el (compilation-error-regexp-alist-alist):
17531         Fix previous fix (bug#2490).
17533 2011-07-12  Roland Winkler  <winkler@gnu.org>
17535         * textmodes/bibtex.el (bibtex-initialize):
17536         Use pop-to-buffer-same-window.
17537         (bibtex-search-entries): Fix interactive call.
17539 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17541         * progmodes/compile.el (compilation-error-regexp-alist-alist):
17542         Fontise bytecomp Error lines more correctly (bug#2490).
17543         Fix suggested by Johan Bockgård.
17545         * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
17547         * dired-x.el (dired-guess-default): Use `delete-dups'.
17549 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
17551         * dired.el (dired-mark-prompt):
17552         * dired-aux.el (dired-read-shell-command): Doc fix.
17554 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17556         * mail/sendmail.el (sendmail-query-once):
17557         Use `customize-save-variable' unconditionally, now that it works under
17558         emacs -Q.
17560         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
17562         * cus-edit.el (custom-file): Take an optional no-error variable.
17563         (customize-save-variable): Set the variable, and give a warning if
17564         running under "emacs -q".
17566 2011-07-11  Juanma Barranquero  <lekktu@gmail.com>
17568         * loadhist.el (unload-feature-special-hooks):
17569         Add `auto-coding-functions', `fill-nobreak-predicate' and
17570         `find-directory-functions' (bug#5327).
17572 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17574         * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
17576         * cus-edit.el (custom-guess-name-alist): -alist variables should
17577         use the `alist' type (bug#3120).  Suggested by Drew Adams.
17579         * printing.el: Add documentation to all the `pr-toggle-' commands.
17581 2011-07-11  Leo Liu  <sdl.web@gmail.com>
17583         * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
17584         backends where it makes sense (bug#2623).
17586 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17588         * dired-x.el (dired-guess-default): Remove duplicate shell command
17589         entries (bug#2028).
17590         (dired-guess-default): Fix grammar in doc string (bug#2028).
17591         (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
17593         * subr.el (remove-duplicates): New conveniency function.
17595 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17597         * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
17598         (bug#1526).
17600 2011-07-10  Martin Rudalics  <rudalics@gmx.at>
17602         * window.el (display-buffer-normalize-default): Don't invert
17603         meaning of even-window-heights.  Reported by Eli Zaretskii
17604         <eliz@gnu.org>.
17606 2011-07-10  Bob Rogers  <rogers@rgrjr.dyndns.org>
17608         * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
17610 2011-07-10  Chong Yidong  <cyd@stupidchicken.com>
17612         * window.el (display-buffer): Fix arguments to
17613         display-buffer-reuse-window in last change.
17615         * faces.el (link): Use a less saturated blue on light backgrounds.
17617         * startup.el (fancy-startup-text, fancy-about-text)
17618         (fancy-startup-tail): Use font-lock faces, for background safety.
17620 2011-07-09  Bob Nnamtrop  <bobnnamtrop@gmail.com>  (tiny change)
17622         * emulation/viper-cmd.el (viper-change-state-to-vi):
17623         Limit triggering of abbrev expansion (Bug#9038).
17625 2011-07-09  Martin Rudalics  <rudalics@gmx.at>
17627         * window.el (display-buffer-default-specifiers): Remove.
17628         (display-buffer-macro-specifiers): Remove default specifiers.
17629         (display-buffer-alist): Default to nil.
17630         (display-buffer-reuse-window): New optional argument other-window.
17631         (display-buffer-pop-up-window): Allow splitting internal
17632         windows.  Check whether a live window was created.
17633         (display-buffer-other-window-means-other-frame)
17634         (display-buffer-normalize-arguments): Rename to
17635         display-buffer-normalize-argument and rewrite.  Set the
17636         other-window specifier.
17637         (display-buffer-normalize-special): New function.
17638         (display-buffer-normalize-options): Rename to
17639         display-buffer-normalize-default and rewrite.
17640         (display-buffer-normalize-options-inhibit): Remove.
17641         (display-buffer-normalize-specifiers): Rewrite.
17642         (display-buffer): Process other-window specifier and call
17643         display-buffer-reuse-window with it.  Emulate Emacs 23 behavior
17644         more faithfully.
17645         (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
17646         (display-buffer-alist-set): Don't handle 'unset default values.
17647         (display-buffer-in-window, display-buffer-alist-set):
17648         Replace symbol "dedicated" by "dedicate".  Reported by Tassilo Horn
17649         <tassilo@member.fsf.org>.
17651 2011-07-09  Leo Liu  <sdl.web@gmail.com>
17653         * register.el (insert-register): Restore accidental change on
17654         2011-06-26.  (Bug#9028)
17656 2011-07-09  Glenn Morris  <rgm@gnu.org>
17658         * subr.el (remq): Handle the empty list.  (Bug#9024)
17660 2011-07-08  Andreas Schwab  <schwab@linux-m68k.org>
17662         * mail/sendmail.el (send-mail-function): No longer delay custom
17663         initialization.
17664         * custom.el (custom-initialize-delay): Doc fix.
17666 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17668         * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
17670 2011-07-08  Michael Albinus  <michael.albinus@gmx.de>
17672         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
17673         human-friendly prompt.
17675 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17677         * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
17678         provided by a particular plugin.
17680 2011-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17682         * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
17683         save customizations (with "emacs -Q"), just set the variable
17684         instead of erroring out.
17686         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
17688 2011-07-08  Juri Linkov  <juri@jurta.org>
17690         * arc-mode.el (archive-zip-expunge, archive-zip-update)
17691         (archive-zip-update-case): Use 7z if found by `executable-find'.
17692         The order of searching the available programs is the same as in
17693         `archive-zip-extract' (bug#8968).
17695 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
17697         * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
17698         (menu-bar-options-menu): Tweak descriptions.
17700 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17702         * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
17703         menu items into verb phrases (bug#1421).  Also refill to fit under
17704         80 columns.
17706 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
17708         * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
17709         (Info-read-node-name): Doc fix (Bug#1084).
17711         * thingatpt.el (forward-thing, bounds-of-thing-at-point)
17712         (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
17713         (end-of-sexp, beginning-of-sexp)
17714         (thing-at-point-bounds-of-list-at-point, forward-whitespace)
17715         (forward-symbol, forward-same-syntax, word-at-point)
17716         (sentence-at-point): Doc fix (Bug#1144).
17718 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17720         * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
17721         should cover it (bug#1281).
17723         * cus-edit.el (custom-show): Mark as obsolete.
17725         * net/network-stream.el (network-stream-open-starttls): If GnuTLS
17726         negotiation fails, then possibly try again with a non-encrypted
17727         connection (bug#9017).
17729         * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
17730         be used.
17732 2011-07-07  Richard Stallman  <rms@gnu.org>
17734         * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
17735         property, and handle its changed format.
17736         Look for the correct line number.
17737         Use file's line contents (but not past first =) to find
17738         correct line in message.
17740 2011-07-07  Kenichi Handa  <handa@m17n.org>
17742         * international/characters.el (build-unicode-category-table):
17743         Delete it.
17744         (unicode-category-table): Set it by unicode-property-table-internal.
17746         * international/mule-cmds.el (char-code-property-alist): Move to
17747         to src/chartab.c.
17748         (get-char-code-property): Call unicode-property-table-internal to
17749         load a file.  Call get-unicode-property-internal where necessary.
17750         (put-char-code-property): Call unicode-property-table-internal to
17751         load a file.  Call put-unicode-property-internal where necessary.
17752         put-unicode-property-internal where necessary.
17753         (char-code-property-description):
17754         Call unicode-property-table-internal to load a file.
17756         * international/charprop.el:
17757         * international/uni-bidi.el:
17758         * international/uni-category.el:
17759         * international/uni-combining.el:
17760         * international/uni-comment.el:
17761         * international/uni-decimal.el:
17762         * international/uni-decomposition.el:
17763         * international/uni-digit.el:
17764         * international/uni-lowercase.el:
17765         * international/uni-mirrored.el:
17766         * international/uni-name.el:
17767         * international/uni-numeric.el:
17768         * international/uni-old-name.el:
17769         * international/uni-titlecase.el:
17770         * international/uni-uppercase.el: Regenerate.
17772         * loadup.el: Load international/charprop.el before
17773         international/characters.
17775 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
17777         * window.el (next-buffer, previous-buffer): Signal an error if
17778         called from a minibuffer window.
17780         * bindings.el: Revert 2011-07-04 change.
17782 2011-07-06  Richard Stallman  <rms@gnu.org>
17784         * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
17785         (rmail-mime-insert-bulk, rmail-mime-insert-text):
17786         Treat markers like ints.
17787         (rmail-mime-entity): Doc fix.
17789 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17791         * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
17792         defcustom again for backwards compatibility.
17794         * simple.el (shell-command-on-region): Fill.
17796         * dired-aux.el (dired-kill-line): Add a doc string.
17798         * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
17799         to "\\sw\\|\\s_" (bug#358).
17801         * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
17802         (dired-unmark-backward): Ditto.
17803         (dired-flag-backup-files): Ditto.
17805         * dired-x.el (dired-mark-sexp): Ditto.
17807 2011-07-06  Richard Stallman  <rms@gnu.org>
17809         * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
17810         (rmail-mime-entity): New arg TRUNCATED.
17811         (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
17812         New functions.
17813         (rmail-mime-save): Warn if entity is truncated.
17814         (rmail-mime-toggle-hidden): Likewise, for showing.
17815         (rmail-mime-process-multipart): Record when an entity is truncated.
17817         * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
17818         if ENTITY is a string.
17820 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17822         * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
17823         of faces when `M-C-x'-ing their definitions (bug#8378).
17824         Also clean up the code slightly.
17826         * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
17827         because that makes the colors go away.
17829         * mail/sendmail.el (send-mail-function): Change the default to
17830         `sendmail-query-once'.
17831         (sendmail-query-once): Add an autoload cookie.
17833         * net/network-stream.el (network-stream-open-starttls): Try using
17834         a plain connection even if the server offered STARTTLS, and we
17835         kinda wanted to use it, if Emacs doesn't have any STARTTLS
17836         capability.  This should make smtpmail.el work in slightly more
17837         configurations.
17839 2011-07-06  Michael Albinus  <michael.albinus@gmx.de>
17841         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
17842         New defun.
17843         * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
17845 2011-07-06  Michael R. Mauger  <mmaug@yahoo.com>
17847         * progmodes/sql.el: Version 3.0
17848         (sql-product-alist): Add product :completion-object,
17849         :completion-column, and :statement attributes.
17850         (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
17851         (sql-mode-syntax-table): Mark all punctuation.
17852         (sql-font-lock-keywords-builder): Temporarily remove fallback on
17853         ansi keywords.
17854         (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
17855         (sql-mode-oracle-font-lock-keywords): Improve.
17856         (sql-oracle-show-reserved-words): New function for development.
17857         (sql-product-font-lock): Simplify for source code buffers.
17858         (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
17859         New functions.
17860         (sql-highlight-product): Set product specific syntax table.
17861         (sql-mode-map): Add statement movement functions.
17862         (sql-ansi-statement-starters, sql-oracle-statement-starters):
17863         New variable.
17864         (sql-statement-regexp, sql-beginning-of-statement)
17865         (sql-end-of-statement, sql-signum): New functions.
17866         (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
17867         (sql-show-sqli-buffer): Bug fix.
17868         (sql-interactive-mode): Store connection data as buffer local.
17869         (sql-connect): Add NEW-NAME parameter.  Redesign interaction
17870         with sql-interactive-mode.
17871         (sql-save-connection): Save buffer local settings.
17872         (sql-connection-menu-filter): Change menu entry name.
17873         (sql-product-interactive): Bug fix.
17874         (sql-preoutput-hold): New variable.
17875         (sql-interactive-remove-continuation-prompt): Bug fixes.
17876         (sql-debug-redirect): New variable.
17877         (sql-str-literal): New function.
17878         (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
17879         Redesign.
17880         (sql-oracle-save-settings, sql-oracle-restore-settings)
17881         (sql-oracle-list-all, sql-oracle-list-table): New functions.
17882         (sql-completion-object, sql-completion-column)
17883         (sql-completion-sqlbuf): New variables.
17884         (sql-build-completions-1, sql-build-completions)
17885         (sql-try-completion): New functions.
17886         (sql-read-table-name): Use them.
17887         (sql-contains-names): New buffer local variable.
17888         (sql-list-all, sql-list-table): Use it.
17889         (sql-oracle-completion-types): New variable.
17890         (sql-oracle-completion-object, sql-sqlite-completion-object)
17891         (sql-postgres-completion-object): New functions.
17893 2011-07-06  Glenn Morris  <rgm@gnu.org>
17895         * window.el (pop-to-buffer): Doc fix.
17897 2011-07-06  Markus Heiser  <markus.heiser@darmarit.de>  (tiny change)
17899         * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
17901 2011-07-06  Chong Yidong  <cyd@stupidchicken.com>
17903         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
17905         * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
17907 2011-07-05  Chong Yidong  <cyd@stupidchicken.com>
17909         * button.el (button): Inherit from link face.  Suggested by Dan
17910         Nicolaescu.
17912 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17914         * progmodes/gdb-mi.el: Fit in 80 columns.
17915         (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
17916         switch-to-buffer.
17918         * progmodes/which-func.el (which-func-ff-hook): Don't output a message
17919         if imenu is simply not configured (bug#8941).
17921 2011-07-05  Ken Manheimer  <ken.manheimer@gmail.com>
17923         * allout.el (allout-post-undo-hook): New allout outline-change
17924         event hook to signal undo activity.
17925         (allout-post-command-business): Run allout-post-undo-hook if an
17926         undo just occurred.
17927         (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
17928         * allout-widgets.el (allout-widgets-after-undo-function):
17929         Ensure the integrity of the current item's decoration after it has been
17930         in the vicinity of an undo.
17931         (allout-widgets-mode): Include allout-widgets-after-undo-function
17932         on the new allout-post-undo-hook.
17934 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17936         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
17937         Let define-derived-mode define it.
17938         * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
17939         cycles of abbrev-table inheritance (bug#8998).
17941 2011-07-05  Roland Winkler  <winkler@gnu.org>
17943         * textmodes/bibtex.el: Add support for biblatex.
17944         (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
17945         (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
17946         (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
17947         (bibtex-entry-alist, bibtex-field-alist): New variables.
17948         (bibtex-entry-field-alist): Obsolete alias for
17949         bibtex-BibTeX-entry-alist.
17950         (bibtex-entry-alist, bibtex-field-alist): New widgets.
17951         (bibtex-set-dialect): New command.
17952         (bibtex-entry-type, bibtex-entry-head)
17953         (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
17954         Bind via bibtex-set-dialect.
17955         (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
17956         (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
17957         (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
17958         (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
17959         Define via bibtex-set-dialect.
17960         (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
17961         Obey bibtex-no-opt-remove-re.
17962         (bibtex-vec-push, bibtex-vec-incr): New functions.
17963         (bibtex-format-entry, bibtex-field-list)
17964         (bibtex-print-help-message, bibtex-validate)
17965         (bibtex-search-entries): Use new format of bibtex-entry-alist.
17967 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17969         * progmodes/compile.el (compilation-goto-locus):
17970         * net/tramp-cmds.el (tramp-append-tramp-buffers):
17971         * bs.el (bs-cycle-next, bs-cycle-previous):
17972         * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
17973         * bindings.el (mode-line-other-buffer):
17974         * autoinsert.el (auto-insert):
17975         * arc-mode.el (archive-extract):
17976         * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
17978 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
17980         * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
17981         Fix check of `emacs-lock-unlockable-modes'.
17982         Coerce true values of `emacs-lock--try-unlocking' to t.
17984 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
17986         * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
17987         * emacs-lock.el: New file.
17989 2011-07-05  Julien Danjou  <julien@danjou.info>
17991         * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
17992         than `boundp' to check if face is set.
17994 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
17996         * register.el (registerv-make):
17997         * window.el (window-min-height): Fix typos in docstrings.
17999 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
18001         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
18002         Update doc string.
18004 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
18006         * server.el (server-execute): Catch quit and call
18007         `server-return-error' to pass the error back to emacsclient and
18008         close the connection (bug#8942).
18010 2011-07-04  Ken Manheimer  <ken.manheimer@gmail.com>
18012         * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
18013         insecure exception for current topic.  Also note that auto-saves
18014         are handled differently.
18016         (allout-auto-save-temporarily-disabled, allout-just-did-undo):
18017         State variables for tracking auto-save inhibition situation.
18019         (allout-write-contents-hook-handler): Rename from
18020         'allout-write-file-hook-handler', and describe how it depends on
18021         write-contents-functions sensitivity to non-nil value to prevent
18022         file write.
18024         (allout-auto-save-hook-handler): Remove.  auto-save does not check
18025         this in individual buffers, only in the starting buffer, so this
18026         is not the right way for us to inhibit auto-save in a buffer
18027         according to its condition.
18029         (allout-mode): Use new allout-write-contents-hook-handler, and
18030         only with write-contents-functions.  Remove auto-save provisions -
18031         they're implemented elsewhere.
18033         (allout-before-change-handler): If undo is in progress, note that
18034         for attention of allout-post-command-business.
18036         (allout-post-command-business): If the command we're following was
18037         an undo, check for change in the status of encrypted items and
18038         adjust auto-save inhibitions accordingly.
18040         (allout-toggle-subtree-encryption): Adjust auto-save inhibition
18041         according to whether there are or aren't any plain-text topics
18042         pending encryption.
18044         (allout-inhibit-auto-save-info-for-decryption):
18045         Adjust buffer-saved-size and some allout state to inhibit auto-saves
18046         if there are plain-text topics pending encryption.
18048         (allout-maybe-resume-auto-save-info-after-encryption): Adjust
18049         buffer-saved-size and some allout state to not inhibit auto-saves
18050         if there are no longer any plain-text topics pending encryption.
18052         (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
18053         No longer provide for exemption of the current topic.
18055 2011-07-04  Juri Linkov  <juri@jurta.org>
18057         Add 7z operations to delete and save changed members (bug#8968).
18058         * arc-mode.el (archive-7z-expunge, archive-7z-update):
18059         New defcustoms.
18060         (archive-7z-write-file-member): New function.
18061         (archive-7z-summarize): Fix the number of dashes in the
18062         listing output.
18064 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
18066         * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
18067         (bug#8958).
18069 2011-07-04  Chong Yidong  <cyd@stupidchicken.com>
18071         * bindings.el: Ignore next-buffer and previous-buffer in
18072         minibuffer-local-map.
18074         * font-lock.el (font-lock-builtin-face): Change light background
18075         color to dark slate blue (Bug#6693).
18077 2011-07-04  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
18079         * progmodes/gdb-mi.el (gdb): Use completion-at-point.
18081 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
18083         * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
18084         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
18085         Add switch-to-buffer.
18087 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18089         * isearch.el (isearch-search-fun-function): Clarify further the
18090         meaning of the function returned.
18092 2011-07-04  Michael Albinus  <michael.albinus@gmx.de>
18094         * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
18096         * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
18097         (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
18098         Use it.
18099         (tramp-remote-path): Add "/bin" and "/usr/bin".  On busyboxes,
18100         `tramp-default-remote-path' does not exist.
18101         (tramp-send-command-and-read): New optional argument NOERROR.
18102         (tramp-open-connection-setup-interactive-shell)
18103         (tramp-get-remote-path, tramp-get-remote-stat): Use it.
18104         (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
18105         (tramp-process-sentinel): Flush also process' connection property.
18106         (tramp-sh-handle-start-file-process): Do not set process
18107         sentinel.  It is done now ...
18108         (tramp-maybe-open-connection): ... here.  (Bug#8929)
18110 2011-07-04  MON KEY  <monkey@sandpframing.com>
18112         * play/animate.el (animate-string): Doc fixes and allow changing
18113         the buffer name (bug#5417).
18115 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18117         * play/animate.el (animation-buffer-name): Rename from *animate*.
18119 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
18121         * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
18122         This is simpler and helps future-proof the code.
18123         (timer-until): Use time-subtract and float-time.
18124         (timer--time-less-p): Use time-less-p.
18126 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
18128         * type-break.el (timep): Use the value of `float-time' to avoid a
18129         byte-compiler warning.
18131         * server.el (server-eval-and-print): Return any result, even nil.
18133 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
18135         * type-break.el: Accept time formats that the builtins accept.
18136         (timep, type-break-time-difference): Accept any format that
18137         float-time accepts, rather than insisting on (HIGH LOW USECS) format.
18138         This is simpler and helps future-proof the code.
18139         (type-break-time-difference): Round rather than ignoring
18140         subseconds components.
18142 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18144         * info.el (Info-apropos-matches): Make non-interactive, since it
18145         doesn't seem to do anything useful as a command (bug#8829).
18147 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
18149         * frame.el (frame-background-mode, frame-set-background-mode):
18150         Move from faces.el.
18151         (frame-default-terminal-background): New function.
18153         * custom.el (custom-push-theme): Don't record faces in `changed'
18154         theme; this doesn't work correctly for per-frame face settings.
18155         (disable-theme): Use face-set-after-frame-default to reset faces.
18156         (custom--frame-color-default): New function.
18158 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18160         * dired.el (dired-flagging-regexp): Remove unused variable
18161         (bug#8769).
18163 2011-03-29  Kevin Ryde  <user42@zip.com.au>
18165         * progmodes/compile.el (compilation-error-regexp-alist-alist):
18166         `perl-Test2' extend to match possible "fail #N" rep count
18167         (bug#8377).
18169 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18171         * mail/feedmail.el (feedmail-buffer-to-smtpmail):
18172         `smtpmail-via-smtp' now returns the error instead of nil.
18174         * isearch.el (isearch-search-fun-function): Clarify the doc string
18175         (bug#8101).
18177 2011-07-03  Richard Kim  <emacs18@gmail.com>  (tiny change)
18179         * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
18180         unnecessary spaces (bug#8987).
18182 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18184         * net/network-stream.el (open-network-stream): Use the
18185         :end-of-capability command thoughout.
18187 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
18189         * net/network-stream.el (open-network-stream): Add the
18190         :end-of-capability command parameter, used by pop3.el.
18192 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18194         * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
18196         * fringe.el (fringe-query-style): Remove redundant text " (type ?
18197         for list)" (bug#6475).
18199         * files.el (file-expand-wildcards): Ignore non-readable
18200         sub-directories while trying to find matches instead of signaling
18201         an error (bug#6297).
18203         * man.el (Man-reference-regexp): Allow matching possible
18204         word-wrapped references (bug#6289).
18206         * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
18207         for consistency with the other vc buffers (bug#6197).
18208         (vc-checkin): Ditto.
18210         * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
18212         * longlines.el (longlines-mode): Document what ARG does (bug#6150).
18214 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18216         * custom.el (defcustom): Clarify that :set is only used in the
18217         Customize user interface (bug#6089).
18219         * progmodes/flymake.el (flymake-mode): If the buffer isn't
18220         associated with a file, refuse to run instead of erroring out
18221         (bug#6084).
18223         * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
18224         the doc string, since it appears that using `fill-column' always
18225         controls the width (bug#7845).
18227         * simple.el (shell-command-on-region): Say where the error output
18228         went if `shell-command-default-error-buffer' is set (bug#6857).
18230 2011-07-02  Ken Manheimer  <ken.manheimer@gmail.com>
18232         * allout.el (allout-yank-processing): Adjust cursor position for
18233         backwards-deleted space.
18235         (allout-rebullet-heading): Register changes with
18236         allout-exposure-changed-hook, so the modified topic is properly
18237         decorated.
18239 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18241         * minibuffer.el (completion-in-region): Document PREDICATE
18242         (bug#7136).
18244         * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
18245         of keyword/argument pairs (bug#6904).
18247         * replace.el (multi-occur):
18248         Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
18250 2011-07-02  Drew Adams  <drew.adams@oracle.com>
18252         * dired.el (dired-mark-if): Make the message about whether it's
18253         marking or unmarking clearer (bug#8523).
18255 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18257         * disp-table.el (display-table-print-array): New function.
18258         (describe-display-table): Use it to print the vectors more pretty
18259         (Bug#8859).
18261 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
18263         * window.el (window-state-get-1): Don't assign clone numbers.
18264         Add clone-of item to list of window parameters.
18265         (window-state-put-2): Don't process clone numbers.
18266         (display-buffer-alist): Fix doc-string.
18268 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18270         * subr.el (remq): Don't allocate if it's not needed.
18271         (keymap--menu-item-binding, keymap--menu-item-with-binding)
18272         (keymap--merge-bindings): New functions.
18273         (keymap-canonicalize): Use them to refine the canonicalization.
18274         * minibuffer.el (minibuffer-local-completion-map)
18275         (minibuffer-local-must-match-map): Move initialization from C.
18276         (minibuffer-local-filename-completion-map): Move initialization from C;
18277         don't inherit from anything here.
18278         (minibuffer-local-filename-must-match-map): Make obsolete.
18279         (completing-read-default): Use make-composed-keymap to combine
18280         minibuffer-local-filename-completion-map with either
18281         minibuffer-local-must-match-map or
18282         minibuffer-local-filename-completion-map.
18284 2011-07-01  Glenn Morris  <rgm@gnu.org>
18286         * type-break.el (type-break-time-sum): Use dolist.
18288         * textmodes/flyspell.el (flyspell-word-search-backward):
18289         Replace CL function.
18291 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18293         * mouse.el (mouse--strip-first-event): New function.
18294         (function-key-map): Use it to map fringe clicks to normal clicks
18295         by default.
18297         * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
18298         (vc-bzr-revision-completion-table): Add support for annotate and date.
18300         * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
18301         inherit from parent.
18303 2011-07-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18305         * dired-aux.el (dired-diff): Doc fixup (bug#8816).
18306         (dired-show-file-type): Doc fixup (bug#8818).
18308         * dired.el (dired-mode): Fix up the doc string as suggested by
18309         Drew Adams (bug#8817).
18311         * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
18312         cookie, since the manual says that it should be possible to add
18313         this function to `find-file-hook' (bug#8709).
18315 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
18317         * progmodes/cfengine.el: Moved all cfengine3.el functionality
18318         here.  Noted Ted Zlatanov as the maintainer.
18319         (cfengine-common-settings, cfengine-common-syntax): New functions
18320         to set up common things between `cfengine-mode' and
18321         `cfengine3-mode'.
18322         (cfengine3-mode): New mode.
18323         (cfengine3-defuns cfengine3-defuns-regex
18324         (cfengine3-class-selector-regex cfengine3-category-regex)
18325         (cfengine3-vartypes cfengine3-font-lock-keywords)
18326         (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
18327         (cfengine3-indent-line): Add from cfengine3.el.
18329 2011-07-01  Michael Albinus  <michael.albinus@gmx.de>
18331         * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
18333         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
18335 2011-07-01  Martin Rudalics  <rudalics@gmx.at>
18337         * window.el (same-window-buffer-names, same-window-regexps)
18338         (same-window-p, special-display-frame-alist)
18339         (special-display-popup-frame, special-display-function)
18340         (special-display-buffer-names, special-display-regexps)
18341         (special-display-p, pop-up-frame-alist, pop-up-frame-function)
18342         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18343         (split-window-preferred-function, split-height-threshold)
18344         (split-width-threshold, even-window-heights)
18345         (display-buffer-mark-dedicated, window-splittable-p)
18346         (split-window-sensibly, window-safely-shrinkable-p):
18347         Un-obsolete.
18348         (display-buffer): Don't spread args with function specifier
18349         because special-display-popup-frame won't like it.
18351 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
18353         Time-stamp simplifications and fixes.
18354         These improve accuracy slightly, and future-proof the code
18355         against some potential changes to current-time format.
18357         * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
18358         by using time-since and float-time.
18360         * vc/ediff-util.el (ediff-calc-command-time): Use time-since
18361         and float-time.  Say "NNN.NNN seconds" rather than "NNN seconds
18362         + NNN microseconds".
18364         * type-break.el (type-break-time-sum): Rewrite using time-add.
18366         * play/hanoi.el (hanoi-current-time-float): Remove.
18367         All uses replaced by float-time.
18369         * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
18370         This yields a more-accurate answer.
18371         (rng-time-to-float): Remove; no longer needed.
18373         * emacs-lisp/timer.el (timer-relative-time): Use time-add.
18375         * calendar/timeclock.el (timeclock-seconds-to-time):
18376         Defalias to seconds-to-time, since they're the same thing.
18378         * emacs-lisp/elp.el (elp-elapsed-time):
18379         * emacs-lisp/benchmark.el (benchmark-elapse):
18380         * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
18382 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18384         * window.el (bury-buffer): Don't iconify the only frame.
18385         (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
18386         to pop-to-buffer.  Use pop-to-buffer-same-frame if you don't like that.
18388 2011-07-01  Chong Yidong  <cyd@stupidchicken.com>
18390         * eshell/em-smart.el (eshell-smart-display-navigate-list):
18391         Add mouse-yank-primary.
18393 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
18395         * progmodes/cfengine3.el: New file to support CFEngine 3.x.
18397 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18399         * emacs-lisp/find-func.el (find-library--load-name): New fun.
18400         (find-library-name): Use it to find relative load names when provided
18401         absolute file name (bug#8803).
18403 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18405         * textmodes/flyspell.el (flyspell-word): Consider words that
18406         differ only in case as potential doublons (bug#5687).
18408         * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
18409         Remove two rather uninteresting debugging-like messages to make
18410         debbugs.el more silent.
18412         * comint.el (comint-password-prompt-regexp): Accept "Response" as
18413         a password-like phrase.
18415 2011-06-30  Masatake YAMATO  <yamato@redhat.com>
18417         * progmodes/cc-guess.el: New file.
18419         * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
18421         * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
18422         derived from `c-basic-common-init'.
18424         * progmodes/cc-mode.el (top-level): Require cc-guess.
18425         (c-basic-common-init): Use `cc-choose-style-for-mode'.
18427 2011-06-30  Lawrence Mitchell  <wence@gmx.li>
18429         * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
18431 2011-06-30  Alan Mackenzie  <acm@muc.de>
18433         * progmodes/cc-engine.el (c-guess-continued-construct):
18434         Correct the handling of template-args-cont, particularly for when font
18435         lock is disabled.  Name this case as "CASE G".
18437 2011-06-30  Ken Manheimer  <ken.manheimer@gmail.com>
18439         * allout.el (allout-yank-processing): Fix injection of extra space
18440         between bullet and non-whitespace character in first topic when
18441         pasting, ensuring that the actual spacing in the pasted topic
18442         following the bullet char is preserved.  This extra space was
18443         causing pasted encrypted topics to get a decrypted status even
18444         when the content was actually still encrypted.  Now the decryption
18445         status from before the paste is preserved.
18447         (allout-flag-region): Set all allout overlays so they evaporate
18448         when reduced to zero length (evanescent), to prevent overlay
18449         leakage.
18451 2011-06-30  Glenn Morris  <rgm@gnu.org>
18453         * w32-fns.el (w32-charset-info-alist): Declare.
18455         * find-dired.el (find-grep-options): Simplify.
18457         * term/ns-win.el (ns-set-resource): Declare.
18459         * ses.el (row, col): Declare dynamic variables honestly.
18461         * textmodes/reftex-parse.el (index-tags): Declare.
18463 2011-06-30  Chong Yidong  <cyd@stupidchicken.com>
18465         * cus-edit.el (customize-push-and-save): New function.
18467         * files.el (hack-local-variables-confirm): Use it.
18469         * custom.el (load-theme): New arg NO-CONFIRM.
18470         Use customize-push-and-save (Bug#8720).
18471         (custom-enabled-themes): Doc fix.
18473         * cus-theme.el (customize-create-theme)
18474         (custom-theme-merge-theme): Callers to load-theme changed.
18476 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18478         * thingatpt.el (thing-at-point-short-url-regexp): Require that
18479         short URLs have at least one dot in them (bug #7614).
18481         * progmodes/grep.el (rgrep): Bind `process-connection-type' to
18482         nil, because using a pty is apparently too slow (bug #895).
18484 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18486         * mail/sendmail.el (sendmail-query-once): New function.
18487         (sendmail-query-once-function): New variable.
18489 2011-06-29  Glenn Morris  <rgm@gnu.org>
18491         * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
18493         * ses.el (top-level): Require cl when compiling.
18494         (ses-set-localvars): Fix error statement.
18495         Call it at compile time to silence a storm of warnings.
18497 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
18499         * window.el (normalize-live-buffer): Rename to
18500         window-normalize-buffer.
18501         (normalize-live-frame): Rename to window-normalize-frame.
18502         (normalize-any-window): Rename to window-normalize-any-window.
18503         (normalize-live-window): Rename to window-normalize-live-window.
18504         (make-window-atom): Rename to window-make-atom.
18505         (window-resize-reset): Rename to window--resize-reset.
18506         (window-resize-reset-1): Rename to window--resize-reset-1.
18507         (resize-mini-window): Rename to window--resize-mini-window.
18508         (resize-subwindows-skip-p): Rename to
18509         window--resize-subwindows-skip-p.
18510         (resize-subwindows-normal): Rename to
18511         window--resize-subwindows-normal.
18512         (resize-subwindows): Rename to window--resize-subwindows.
18513         (resize-other-windows): Rename to window--resize-siblings.
18514         (resize-this-window): Rename to window--resize-this-window.
18515         (resize-root-window): Rename to window--resize-root-window.
18516         (resize-root-window-vertically): Rename to
18517         window--resize-root-window-vertically.
18518         (normalize-buffer-to-display): Rename to
18519         window-normalize-buffer-to-display.
18520         (normalize-buffer-to-switch-to): Rename to
18521         window-normalize-buffer-to-switch-to.
18522         Correspondingly update all callers of the functions listed
18523         above.
18524         (display-buffer-alist, display-buffer-normalize-arguments)
18525         (display-buffer-normalize-options, display-buffer)
18526         (display-buffer-alist-set): Use "function" instead of
18527         "fun-with-args".
18529 2011-06-28  Chong Yidong  <cyd@stupidchicken.com>
18531         * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
18532         addresses more clearly.  Add hyperlinks for bug-gnu-emacs and
18533         debbugs.gnu.org.  Mention acknowledgment email.
18535 2011-06-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18537         * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
18538         buffer multibyteness, since it shouldn't matter.
18540 2011-06-28  Martin Rudalics  <rudalics@gmx.at>
18542         * window.el (display-buffer-in-side-window): Handle dedicated
18543         windows as in display-buffer-reuse-window.
18544         (display-buffer-normalize-alist): Use value of override
18545         specifier.
18546         (display-buffer-normalize-specifiers): Use value of
18547         other-window-means-other-frame specifier.
18548         (display-buffer-alist): Rewrite some texts in widgets.
18549         (display-buffer): Spread arguments when calling function
18550         specified by fun-with-args.
18552 2011-06-28  Deniz Dogan  <deniz@dogan.se>
18554         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
18555         Unnest `let'.
18557         * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
18558         selectors (Bug#5732).
18559         (css-proprietary-nmstart-re): Use `regexp-opt'.
18561 2011-06-27  Jari Aalto  <jari.aalto@cante.net>
18563         * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
18564         (eshell-ls-date-format): New defcustom.
18565         (eshell-ls-file): Use it.
18567 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
18569         * help-fns.el (describe-variable): Fix message for terminal-local vars.
18571 2011-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18573         * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
18574         (ange-ftp-make-tmp-name): New arg.
18575         (ange-ftp-file-local-copy): Use it.
18577 2011-06-27  Jambunathan K  <kjambunathan@gmail.com>
18579         * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
18580         no-conversion (Bug#8870).
18582 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
18584         * window.el (window-right, window-left, window-child)
18585         (window-child-count, window-last-child)
18586         (window-iso-combination-p, walk-window-tree-1)
18587         (window-atom-check-1, window-tree-1, delete-window)
18588         (window-state-get-1, display-buffer-even-window-sizes): Adapt to
18589         new naming conventions - window-vchild, window-hchild,
18590         window-next and window-prev are now called window-top-child,
18591         window-left-child, window-next-sibling and window-prev-sibling
18592         respectively.
18593         (resize-window-reset): Rename to window-resize-reset.
18594         (resize-window-reset-1): Rename to window-resize-reset-1.
18595         (resize-window): Rename to window-resize.
18596         (window-min-height, window-min-width)
18597         (resize-mini-window, resize-this-window, resize-root-window)
18598         (resize-root-window-vertically, adjust-window-trailing-edge)
18599         (enlarge-window, shrink-window, maximize-window)
18600         (minimize-window, delete-window, quit-restore-window)
18601         (split-window, balance-windows, balance-windows-area-adjust)
18602         (balance-windows-area, window-state-put-2)
18603         (display-buffer-even-window-sizes, display-buffer-set-height)
18604         (display-buffer-set-width, set-window-text-height)
18605         (fit-window-to-buffer): Rename all "resize-window" prefixed
18606         calls to use the "window-resize" prefix convention.
18607         (display-buffer-alist): Fix symbol for label specifier.
18608         (display-buffer-reuse-window): Set reuse-dedicated to cdr of
18609         corresponding specifier.
18610         Reported by Juanma Barranquero <lekktu@gmail.com>.
18612 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
18614         * ses.el (ses-destroy-cell-variable-range): Fix heading comment
18615         convention.
18616         (ses-call-printer): Does not pass an empty string to formatter when the
18617         cell is empty to keep from barking printer Calc math-format-value.
18619 2011-06-27  Richard Stallman  <rms@gnu.org>
18621         * battery.el (battery-mode-line-limit): New variable.
18622         (battery-update): Handle it.
18624         * mail/rmailmm.el (rmail-mime-process-multipart):
18625         Handle truncated messages.
18627 2011-06-27  Glenn Morris  <rgm@gnu.org>
18629         * progmodes/flymake.el (flymake-err-line-patterns):
18630         Allow for column numbers in the ant/javac pattern.  (Bug#8866)
18632 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
18634         * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
18635         (ses--clean-!, ses--clean-_): New functions.
18636         (ses-range): Add configurability of readout order, and conversion
18637         to Calc vector.
18639         * ses.el (ses-repair-cell-reference-all): New function.
18640         (ses-cell-symbol): Set macro as safe, so that it can be used in
18641         formulas.
18643         * ses.el: Update cycle detection algorithm.
18644         (ses-localvars): Add ses--Dijkstra-attempt-nb and
18645         ses--Dijkstra-weight-bound, and initial values thereof when applicable.
18646         (ses-set-localvars): New function.
18647         (ses-make-cell): Add property-list as a cell element.
18648         (ses-cell-property-get-fun, ses-cell-property-get)
18649         (ses-cell-property-delq-fun, ses-cell-property-set-fun)
18650         (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
18651         New functions.
18652         (ses-cell-property-set, ses-cell-property-pop)
18653         (ses-cell-property-get-handle): New macro.
18654         (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
18655         New aliases, used for code readability.
18656         (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
18657         cycle detection.
18658         (ses-self-reference-early-detection): New defcustom.
18659         (ses-formula-references): Robustify against self-referring cells.
18660         (ses-mode): Use ses-set-localvars.
18661         (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
18662         before lauching the update processing.
18663         (ses-initialize-Dijkstra-attempt): New function.
18664         (ses-recalculate-cell): Update for cycle detection based on
18665         Dijkstra algorithm.
18667         * ses.el: Fix commenting and indenting convention.
18669 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
18671         * bs.el (bs-cycle-next): Complete last change.
18673 2011-06-27  Drew Adams  <drew.adams@oracle.com>
18675         * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
18677 2011-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18679         * net/network-stream.el (network-stream-open-starttls):
18680         Don't re-get capabilities unless we've reestablished connection.
18681         (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
18683         * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
18684         to binary to possibly avoid line encoding issues on Windows (among
18685         other things).
18687 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18689         * net/network-stream.el (open-network-stream): Return an :error
18690         saying what the problem was, if possible.
18692         * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
18693         server.
18695         * net/network-stream.el (network-stream-open-starttls): If we
18696         wanted to use STARTTLS, and the server offered it, but we weren't
18697         able to because we had no STARTTLS support, then close the connection.
18698         (open-network-stream): Return an :error element, if present.
18700 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
18702         * hl-line.el (hl-line-sticky-flag): Doc fix.
18703         (global-hl-line-sticky-flag): New option (Bug#8323).
18704         (global-hl-line-highlight): Obey it.
18706         * vc/vc.el (vc-revert-show-diff): Default to t.
18708 2011-06-26  Ken Manheimer  <ken.manheimer@gmail.com>
18710         * allout-widgets.el (allout-widgets-post-command-business):
18711         Stop decorating intermediate isearch matches.  They're not being
18712         undecorated when an isearch is continued past, and isearch
18713         automatically collapses them.  This leads to "widget leaks", where
18714         decorated items accumulate in collapsed areas.  Lines with lots of
18715         hidden widgets can slow down cursor travel, substantially.
18716         Too much complicated machinery would be needed to ensure undecoration,
18717         so we're doing without this nicety.
18719         (allout-widgets-tally-string): Don't try to do a hash-table-count
18720         of allout-widgets-tally when it's nil.  This eliminates spurious "Error
18721         during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
18722         *Messages* when allout-widgets-maintain-tally is t.
18724 2011-06-26  Martin Rudalics  <rudalics@gmx.at>
18726         * window.el (display-buffer-normalize-argument): Rename to
18727         display-buffer-normalize-arguments.  Handle special meaning of
18728         LABEL argument.  Respect special-display-function when popping up
18729         a new frame.  Fix code searching for a window showing the buffer
18730         on another frame.
18731         (display-buffer-normalize-specifiers):
18732         Call display-buffer-normalize-arguments.
18733         (display-buffer-in-window): Don't undedicate the window if its
18734         buffer remains the same.
18735         Reported by Drew Adams <drew.adams@oracle.com>.
18736         (display-buffer-alist): Add choice for same-window macro
18737         specfier.
18738         (display-buffer): Mention special meaning of LABEL argument in
18739         doc-string.  Fix quoting.  Don't pop up a new frame even as
18740         fallback.
18742 2011-06-26  Juanma Barranquero  <lekktu@gmail.com>
18744         * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
18745         avoid deleting the current window in some cases (bug#8911).
18747 2011-06-26  Andreas Schwab  <schwab@linux-m68k.org>
18749         * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
18750         (Bug#8934)
18752 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18754         * net/network-stream.el (network-stream-open-starttls):
18755         Use built-in TLS support if `gnutls-available-p' is true.
18756         (network-stream-open-tls): Ditto.
18758 2011-06-26  Leo Liu  <sdl.web@gmail.com>
18760         * register.el (registerv): New struct.
18761         (registerv-make): New function.
18762         (jump-to-register, describe-register-1, insert-register):
18763         Support the jump-func, print-func and insert-func slot of a registerv
18764         struct.  (Bug#8415)
18766 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
18768         * vc/vc.el (vc-revert-show-diff): New defcustom.
18769         (vc-diff-internal): New arg specifying diff buffer.
18770         (vc-revert): Obey vc-revert-show-diff.  If we show a diff, don't
18771         reuse an existing *vc-diff* buffer (Bug#8927).
18773         * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
18775 2011-06-26  Glenn Morris  <rgm@gnu.org>
18777         * progmodes/f90.el (f90-critical-indent): New option.
18778         (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
18779         (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
18780         (f90-mode): Doc fix.
18781         (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
18782         (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
18783         (f90-beginning-of-block, f90-next-block, f90-indent-region)
18784         (f90-match-end): Handle block, critical.
18786 2011-06-25  Glenn Morris  <rgm@gnu.org>
18788         * calendar/diary-lib.el (diary-included-files): Doc fix.
18789         (diary-include-files): New function, extracted from
18790         diary-include-other-diary-files and diary-mark-included-diary-files.
18791         (diary-include-other-diary-files, diary-mark-included-diary-files):
18792         Just call diary-include-files.
18793         (diary-mark-entries): Reset diary-included-files on first call.
18795         * calendar/diary-lib.el (diary-mark-entries)
18796         (diary-mark-included-diary-files):
18797         Visit included diary-files in temp buffers.
18799         * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
18800         (f90-blocks-re, f90-program-block-re, f90-end-block-re)
18801         (f90-start-block-re, f90-imenu-generic-expression)
18802         (f90-looking-at-program-block-start, f90-no-block-limit):
18803         Add support for submodules.
18805         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
18806         (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
18808 2011-06-25  Eli Zaretskii  <eliz@gnu.org>
18810         * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
18811         buffer-file-type before setting its value, to avoid disastrous
18812         global effects on decoding files for DOS/Windows systems.  (Bug#8780)
18814 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
18816         * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
18818         * ses.el (ses-unload-function):
18819         * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
18821         * proced.el (proced-unload-function):
18822         * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
18824 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
18826         * server.el (server-create-window-system-frame): Add parameters arg.
18827         (server-process-filter): Doc fix.  Handle frame-parameters.
18829 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
18831         Fix bug#8730, bug#8781.
18833         * loadhist.el (unload--set-major-mode): New function.
18834         (unload-feature): Use it.
18836         * progmodes/python.el (python-after-info-look): Add autoload cookie.
18837         (python-unload-function): New function.
18839 2011-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
18841         * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
18843 2011-06-25  Giuseppe Scrivano  <gscrivano@gnu.org>
18845         * net/browse-url.el (browse-url-firefox-program): Add icecat to
18846         the candidates list.
18848 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
18850         * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
18852 2011-06-23  Richard Stallman  <rms@gnu.org>
18854         * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
18855         (rmail-variables): Set next-error-move-function.
18856         (rmail-what-message): Take argument POS.
18857         (rmail-next-error-move): New function.
18859 2011-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
18861         * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
18862         messages for adjacent non-terminals.
18864 2011-06-23  Richard Stallman  <rms@gnu.org>
18866         * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
18867         (rmail-show-message-1): Preserve buffer modified flag.
18868         (rmail-start-mail): Don't specify use of rmail-mail-return;
18869         that's done by mail-bury now.
18870         (rmail-mail-return): Handle arg NEWBUF.
18872 2011-06-23  Michael Albinus  <michael.albinus@gmx.de>
18874         * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
18875         SIZE is a number.
18877 2011-06-23  Martin Rudalics  <rudalics@gmx.at>
18879         * window.el (get-lru-window, get-mru-window)
18880         (get-largest-window): Never return a minibuffer window.
18881         (display-buffer-pop-up-window): Fix a bug that could lead to
18882         reusing the minibuffer window.
18883         (display-buffer): Pass original specifier argument to
18884         display-buffer-function instead of the normalized one.
18885         Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
18887 2011-06-22  Leo Liu  <sdl.web@gmail.com>
18889         * minibuffer.el (completing-read-function)
18890         (completing-read-default): Move from minibuf.c.
18892 2011-06-22  Richard Stallman  <rms@gnu.org>
18894         * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
18895         to Rmail even if not started by a special Rmail command.
18897         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
18898         Copy the buffer currently showing just one message.
18900 2011-06-22  Roland Winkler  <winkler@gnu.org>
18902         * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
18903         (bibtex-clean-entry): First delete the old key so that a
18904         customized algorithm for generating the new key does not get
18905         confused by the old key.
18906         (bibtex-url): Obey regexp of first step.
18907         (bibtex-search-entries): Do not use add-to-list with local
18908         list-var.
18910 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18912         * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
18913         stored a user name, then query for the password first, instead of
18914         waiting for SMTP to give an error message and the trying again.
18916 2011-06-22  Lawrence Mitchell  <wence@gmx.li>
18918         * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
18919         BUFFER in call-process.
18921 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18923         * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
18924         QUIT twice.
18925         (smtpmail-try-auth-methods): Require user name and password from
18926         auth-source.
18928 2011-06-22  Martin Rudalics  <rudalics@gmx.at>
18930         * window.el (display-buffer-default-specifiers)
18931         (display-buffer-alist): Remove entries for pop-up-frame-alist.
18932         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
18933         (split-window): Normalize SIDE argument (Bug#8916).
18935         * frame.el (pop-up-frame-alist, pop-up-frame-function)
18936         (special-display-frame-alist, special-display-popup-frame):
18937         Remove duplicate declarations.  These are now in window.el.
18939 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18941         * mail/smtpmail.el (smtpmail-via-smtp):
18942         Set :use-starttls-if-possible so that we always use STARTTLS if the
18943         server supports it.  SMTP servers that support STARTTLS commonly
18944         require it.
18946         * net/network-stream.el (network-stream-open-starttls): Support
18947         upgrading to STARTTLS always, even if we don't have built-in support.
18948         (open-network-stream): Add the :always-query-capabilities keyword.
18950         * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
18951         upgrades with `open-network-stream', and rely solely on
18952         auth-source for all credentials.  Big changes throughout the file,
18953         but in particular:
18954         (smtpmail-auth-credentials): Remove.
18955         (smtpmail-starttls-credentials): Remove.
18956         (smtpmail-via-smtp): Check for servers saying they want AUTH after
18957         MAIL FROM, too.
18959         * net/network-stream.el (network-stream-open-starttls):
18960         Provide support for client certificates both for external and built-in
18961         STARTTLS.
18962         (auth-source): Require.
18963         (open-network-stream): Document the :client-certificate keyword.
18964         (network-stream-certificate): Change cert-cert to cert and
18965         cert-key to key.
18967 2011-06-21  Michael Albinus  <michael.albinus@gmx.de>
18969         * net/tramp-cache.el (top): Don't load the persistency file when
18970         "emacs -Q" has been called.
18972 2011-06-21  Tim Harper  <timcharper@gmail.com>
18974         * term/ns-win.el (ns-initialize-window-system):
18975         Set application-specific `ApplePressAndHoldEnabled' system
18976         resource to NO as it is not yet supported by the NS port.
18978 2011-06-21  Juanma Barranquero  <lekktu@gmail.com>
18980         * misc.el (list-dynamic-libraries--refresh): Compute header here...
18981         (list-dynamic-libraries): ...not here.
18983 2011-06-21  Leo Liu  <sdl.web@gmail.com>
18985         * subr.el (sha1): Implement sha1 using secure-hash.
18987 2011-06-21  Martin Rudalics  <rudalics@gmx.at>
18989         * window.el (display-buffer-alist): In default value do not
18990         enforce searching a window on any but the selected frame.
18991         Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
18992         (display-buffer-select-window): Remove function.
18993         (display-buffer-in-window): When a window on another frame gets
18994         reused, do not select it any more but just raise its frame if
18995         necessary (Bug#8851) and (Bug#8856).
18996         (display-buffer-normalize-options): Handle pop-up-frames related
18997         options more faithfully.
18998         (pop-to-buffer): Don't rely on `display-buffer' selecting the
18999         window if it is on another frame.
19000         (display-buffer-alist, display-buffer-default-specifiers):
19001         Don't make new frame unsplittable by default.
19002         (display-buffer-normalize-argument): Fix doc-string typo and use
19003         'same-frame-other-window instead of 'other-window when associating
19004         with display-buffer-macro-specifiers.
19006 2011-06-21  Vincent Belaïche  <vincent.b.1@hotmail.fr>
19008         * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
19009         New functions.
19010         (5x5-mode-map, 5x5-mode-menu): Bind them.
19011         (5x5-draw-grid): Tweak the solver's rendering.
19013 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
19015         * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
19016         `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
19018 2011-06-21  Drew Adams  <drew.adams@oracle.com>
19020         * menu-bar.el: Use function variable instead of switch-to-buffer.
19021         (menu-bar-select-buffer-function): New variable.
19022         (menu-bar-update-buffers): Use it (bug#8876).
19024 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
19026         * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
19027         variable's status.
19029 2011-06-20  Jan Djärv  <jan.h.d@swipnet.se>
19031         * x-dnd.el (x-dnd-version-from-flags)
19032         (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
19033         and long as number (Bug#8899).
19034         (x-dnd-handle-xdnd): Call functions above (Bug#8899).
19036 2011-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19038         * minibuffer.el (completion-metadata): Add `metadata' to the alist.
19039         (completion-try-completion, completion-all-completions): Compute the
19040         metadata argument if it's missing; make it optional (bug#8795).
19042         * wid-edit.el: Use lex-bind and move towards completion-at-point.
19043         (widget-complete): Use new :completion-function property.
19044         (widget-completions-at-point): New function.
19045         (default): Use :completion-function instead of :complete.
19046         (widget-default-completions): Rename from widget-default-complete;
19047         Rewrite.
19048         (widget-string-complete, widget-file-complete, widget-color-complete):
19049         Remove functions.
19050         (file, symbol, function, variable, coding-system, color):
19051         * international/mule-cmds.el (default-input-method, charset)
19052         (language-info-custom-alist):
19053         * cus-edit.el (face): Use new property :completions.
19055         * progmodes/pascal.el (pascal-completions-at-point): New function.
19056         (pascal-mode): Use it.
19057         (pascal-mode-map): Use completion-at-point.
19058         (pascal-toggle-completions): Make obsolete.
19059         (pascal-complete-word, pascal-show-completions):
19060         * progmodes/octave-mod.el (octave-complete-symbol):
19061         Redefine as obsolete alias.
19062         * progmodes/octave-inf.el (inferior-octave-completion-at-point):
19063         Signal absence of completion info for old Octave,
19064         (inferior-octave-complete): Redefine as obsolete alias.
19065         * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
19066         (meta-completions-at-point): Rename from meta-complete-symbol and
19067         adapt it for use on completion-at-point-functions.
19068         (meta-common-mode): Use it.
19069         (meta-looking-at-backward, meta-match-buffer): Remove.
19070         (meta-complete-symbol): Redefine as obsolete alias.
19071         (meta-common-mode-map): Use completion-at-point.
19072         * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
19073         (makefile-mode-map): Use completion-at-point.
19074         (makefile-completions-at-point): Rename from makefile-complete and
19075         adapt it for use on completion-at-point-functions.
19076         (makefile-mode): Use it.
19077         (makefile-complete): Redefine as obsolete alias.
19079 2011-06-20  Deniz Dogan  <deniz@dogan.se>
19081         * net/rcirc.el: Delete trailing whitespaces once and for all.
19083 2011-06-20  Daniel Colascione  <dan.colascione@gmail.com>
19085         * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
19087 2011-06-19  Chong Yidong  <cyd@stupidchicken.com>
19089         * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
19091         * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
19093 2011-06-19  Martin Rudalics  <rudalics@gmx.at>
19095         * window.el (display-buffer-other-window-means-other-frame):
19096         Call display-buffer-normalize-alist.
19097         (display-buffer-normalize-specifiers-1): Rename to
19098         display-buffer-normalize-argument.  New argument other-frame.
19099         Rewrite.
19100         (display-buffer-normalize-specifiers-2): Rename to
19101         display-buffer-normalize-options.
19102         (display-buffer-normalize-alist-1): New function.
19103         (display-buffer-normalize-specifiers-3): Rename to
19104         display-buffer-normalize-alist.
19105         Call display-buffer-normalize-alist-1.
19106         (display-buffer-normalize-options-inhibit): New variable.
19107         (display-buffer-normalize-specifiers): Rewrite calling
19108         display-buffer-normalize-alist,
19109         display-buffer-normalize-argument, and
19110         display-buffer-normalize-options.  Don't call the latter if
19111         display-buffer-normalize-options-inhibit is non-nil.
19112         (frame-auto-delete): New option.
19113         (window-deletable-p): Use frame-auto-delete.
19114         (window-list-no-nils, window-state-ignored-parameters)
19115         (window-state-get-1, window-state-get, window-state-put-list)
19116         (window-state-put-1, window-state-put-2, window-state-put):
19117         New functions.
19118         (display-buffer-normalize-options): Move special-display-p group
19119         after pop-up-frame group (Bug#8851) and (Bug#8856).
19121 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
19123         * emacs-lisp/rx.el (rx-constituents): Add support for numbered
19124         groups (Bug#8776).
19125         (rx-submatch-n): New function.
19126         (rx): Document it.
19128         * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
19129         (Bug#8768).
19131         * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
19133         * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
19135         * cus-face.el (custom-declare-face): Call custom-theme-recalc face
19136         anytime existing face settings are present (Bug#8889).
19138         * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
19139         (delphi-mode): Use define-derived-mode to inherit from prog-mode.
19140         Remove unused argument.
19142 2011-06-18  Martin Rudalics  <rudalics@gmx.at>
19144         * window.el (display-buffer-default-specifiers):
19145         Remove pop-up-frame.  Add pop-up-window-min-height,
19146         pop-up-window-min-width, and another reuse-window specifier
19147         (Bug#8882).  Reported by Dan Nicolaescu <dann@gnu.org>.
19148         (display-buffer-normalize-specifiers-2):
19149         Handle split-height-threshold and split-width-threshold also when
19150         pop-up-windows is unset.  Add a reuse-window specifier for the
19151         case popping up a new window fails.
19152         (special-display-popup-frame): Remove double quoting.
19153         (display-buffer-normalize-specifiers-1): Fix thinko.
19155 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
19157         * shell.el (shell-completion-vars): Set pcomplete-termination-string
19158         according to comint-completion-addsuffix.
19160         * pcomplete.el: Convert to lexical binding and fix bug#8819.
19161         (pcomplete-suffix-list): Mark as obsolete.
19162         (pcomplete-completions-at-point): Capture pcomplete-norm-func and
19163         pcomplete-seen in the closure.
19164         (pcomplete-comint-setup): Setup completion-at-point as well.
19165         (pcomplete--entries): New function.
19166         (pcomplete--env-regexp): New var.
19167         (pcomplete-entries): Rewrite to work with partial-completion and
19168         without relying on pcomplete-suffix-list.
19169         (pcomplete-pare-list): Remove, unused.
19171 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
19173         * window.el (display-buffer-alist): Set pop-up-window-min-height
19174         and pop-up-window-min-width in default value.  Reported by
19175         Thierry Volpiatto <thierry.volpiatto@gmail.com>.  New specifier
19176         other-window-means-other-frame.
19177         (display-buffer-macro-specifiers): Comment out entry for
19178         other-window specifier.
19179         (display-buffer-other-window-means-other-frame): New function.
19180         (display-buffer-normalize-specifiers-1): New arguments
19181         buffer-name and label.  Treat other-window case specially.
19182         (display-buffer-normalize-specifiers-2): Treat other-window case
19183         specially.
19184         (display-buffer-normalize-specifiers-3): New function.
19185         (display-buffer-normalize-specifiers):
19186         Call display-buffer-normalize-specifiers-3.
19188 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
19190         * window.el (same-window-p): Fix two typos introduced when
19191         adding with-no-warnings.
19192         (display-buffer-normalize-specifiers-1): Don't check
19193         pop-up-frames for 'unset initialization.
19194         (display-buffer-normalize-specifiers-2): Major rewrite using
19195         special-display-p and same-window-p (Bug#8851) and (Bug#8856).
19196         (pop-up-frames, display-buffer-reuse-frames)
19197         (display-buffer-mark-dedicated): Don't initialize to 'unset.
19198         Suggested by David Engster <deng@randomsample.de>.
19199         (even-window-heights): Initialize to 'unset.
19200         (display-buffer-alist-set): Handle new 'unset initializations.
19201         (display-buffer-macro-specifiers): Don't pop up a new frame in the
19202         other window case.
19204 2011-06-16  Martin Rudalics  <rudalics@gmx.at>
19206         * window.el (display-buffer-normalize-specifiers-1):
19207         Respect current value of pop-up-frames for most reasonable values of
19208         second argument of display-buffer (Bug#8865).
19209         (switch-to-buffer-same-frame, switch-to-buffer-other-window)
19210         (switch-to-buffer-other-window-same-frame)
19211         (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
19212         Adams (Bug#8875).
19213         (display-buffer): Don't check noninteractive when calling
19214         display-buffer-pop-up-frame.
19215         (display-buffer-pop-up-frame): Never pop up a frame in
19216         noninteractive mode (Bug#8857).
19217         (enlarge-window, shrink-window): Don't report an error when the
19218         window can't be resized as requested (Bug#8862).
19220 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19222         * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
19224         * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
19226         * abbrev.el (define-abbrev-table): Don't add a table multiple times.
19228 2011-06-15  Alan Mackenzie  <acm@muc.de>
19230         * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
19231         for declarators, disable knr checking to speed up for normal files.
19232         2: Refactor, replacing a sequence of nested if forms by a cond form.
19234 2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19236         * net/network-stream.el (open-network-stream): Add the keyword
19237         :always-query-capabilities for the case where you want to force a
19238         `plain' network connection, but the protocol still requires the
19239         capabilitiy command (i.e., SMTP and EHLO).
19241         * subr.el (process-live-p): Rename from `process-alive-p' for
19242         consistency with other `-live-p' functions.
19244 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19246         * window.el (same-window-buffer-names, same-window-regexps)
19247         (special-display-frame-alist, special-display-popup-frame)
19248         (special-display-function, special-display-buffer-names)
19249         (special-display-regexps, pop-up-frame-alist)
19250         (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
19251         (pop-up-windows, split-window-preferred-function)
19252         (split-height-threshold, split-width-threshold, even-window-heights)
19253         (display-buffer-mark-dedicated): Don't encourage the use of
19254         display-buffer-alist from Elisp code.
19256 2011-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
19258         * progmodes/python.el (python-mode): Derive from prog-mode.
19259         * progmodes/ps-mode.el (ps-mode):
19260         * progmodes/mixal-mode.el (mixal-mode):
19261         * progmodes/cfengine.el (cfengine-mode):
19262         * progmodes/ld-script.el (ld-script-mode): Likewise.
19264 2011-06-15  Martin Rudalics  <rudalics@gmx.at>
19266         * window.el (display-buffer-alist): Trim default value to avoid
19267         popping up a new frame (Bug#8857) or reusing an arbitrary window
19268         on another frame.
19269         (display-buffer): Do not fall back on popping up a new frame in
19270         batch mode (Bug#8857).
19272 2011-06-14  Chong Yidong  <cyd@stupidchicken.com>
19274         * cus-theme.el (describe-theme-1): Use custom-theme-p.
19275         (custom-theme-summary): New function.
19276         (customize-themes): Use it.
19278 2011-06-13  Glenn Morris  <rgm@gnu.org>
19280         * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
19282 2011-06-13  Martin Rudalics  <rudalics@gmx.at>
19284         * help.el (help-window): Remove variable.
19285         (help-window-point-marker, temp-buffer-max-height)
19286         (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
19287         (help-print-return-message): Don't set help-window.
19288         (resize-temp-buffer-window): Rewrite cod eand doc-string.
19289         (help-window-setup-finish): Remove.
19290         (help-window-display-message, help-window-setup)
19291         (with-help-window): Major rewrite based on new
19292         display-buffer-window variable.
19294         * help-mode.el (help-mode-finish): Remove help-window related
19295         code.
19297         * view.el (view-exits-all-viewing-windows): Remove reference to
19298         view-return-to-alist in doc-string.
19299         (view-return-to-alist): Make obsolete.
19300         (view-buffer): Call pop-to-buffer-same-window and remove
19301         undo-window code.
19302         (view-buffer-other-window): Call pop-to-buffer-other-window and
19303         simplify code.  Ignore second argument.
19304         (view-buffer-other-frame): Call pop-to-buffer-other-frame and
19305         simplify code.  Ignore second argument.
19306         (view-return-to-alist-update): Make obsolete.
19307         (view-mode-enter): Rename second argument to QUIT-RESTORE.
19308         Rewrite using quit-restore window parameters.
19309         (view-mode-exit): Rename second argument to EXIT-ONLY.
19310         Rewrite using quit-restore-window.
19311         (View-exit, View-exit-and-edit, View-leave, View-quit)
19312         (View-quit-all, View-kill-and-leave): Call view-mode-exit with
19313         appropriate arguments.
19314         (view-end-message): Use quit-restore window parameter.
19316         * window.el (display-buffer-function): Rewrite doc-string.
19317         (display-buffer-window, display-buffer-alist): New variables.
19318         (display-buffer-split-specifiers)
19319         (display-buffer-side-specifiers)
19320         (display-buffer-macro-specifiers): New constants.
19321         (display-buffer-even-window-sizes, display-buffer-set-height)
19322         (display-buffer-set-width, display-buffer-select-window)
19323         (display-buffer-in-window, display-buffer-reuse-window)
19324         (display-buffer-split-window-1, display-buffer-split-window)
19325         (display-buffer-split-atom-window, display-buffer-pop-up-window)
19326         (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
19327         (display-buffer-in-side-window, normalize-buffer-to-display)
19328         (display-buffer-normalize-specifiers-1)
19329         (display-buffer-normalize-specifiers-2)
19330         (display-buffer-normalize-specifiers, display-buffer-frame):
19331         New functions.
19332         (display-buffer): Major rewrite.
19333         (display-buffer-other-window, display-buffer-other-frame)
19334         (pop-to-buffer, switch-to-buffer-other-window)
19335         (switch-to-buffer-other-frame): Rewrite.
19336         (display-buffer-same-window, display-buffer-same-frame)
19337         (display-buffer-same-frame-other-window)
19338         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
19339         (pop-to-buffer-other-window)
19340         (pop-to-buffer-same-frame-other-window)
19341         (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
19342         (switch-to-buffer-other-window-same-frame): New functions.
19343         (same-window-p, special-display-p): Rewrite disabling warnings.
19344         Make obsolete.
19345         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
19346         (display-buffer-mark-dedicated): Initialize to symbol 'unset.
19347         Make obsolete
19348         (same-window-buffer-names, same-window-regexps)
19349         (special-display-frame-alist, special-display-popup-frame)
19350         (special-display-function, special-display-buffer-names)
19351         (special-display-regexps, pop-up-frame-alist)
19352         (pop-up-frame-function, split-window-preferred-function)
19353         (split-height-threshold, split-width-threshold)
19354         (even-window-heights): Make obsolete.
19356 2011-06-12  Glenn Morris  <rgm@gnu.org>
19358         * term/xterm.el (terminal-init-xterm): `version' may be nil.  (Bug#8838)
19359         Misc simplifications.
19361 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
19363         * window.el (window-safely-shrinkable-p): Restore function which
19364         was inadvertently removed in change from 2011-06-11.  Declare as
19365         obsolete.
19367         * calendar/calendar.el (calendar-generate-window):
19368         Use window-iso-combined-p instead of combination of one-window-p and
19369         window-safely-shrinkable-p.
19371 2011-06-12  Glenn Morris  <rgm@gnu.org>
19373         * progmodes/fortran.el (fortran-mode-syntax-table):
19374         * progmodes/f90.el (f90-mode-syntax-table):
19375         Set % to punctuation.  (Bug#8820)
19376         (f90-find-tag-default): Remove, no longer needed.
19378 2011-06-12  Daniel Colascione  <dan.colascione@gmail.com>
19380         * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
19382 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
19384         * image.el (image-animated-p): Return animation delay in seconds.
19385         Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
19386         (image-animate-timeout): Remove DELAY argument.  Don't assume
19387         every subimage has the same delay; get it from image-animated-p.
19388         (image-animate): Caller changed.
19390 2011-06-11  Michael Albinus  <michael.albinus@gmx.de>
19392         * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
19393         to ignored backtrace functions.
19395 2011-06-11  Glenn Morris  <rgm@gnu.org>
19397         * calendar/appt.el (appt-disp-window-function): Doc fix.
19398         (appt-check): Handle overlapping appointments.  (Bug#8337)
19400 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
19402         * window.el (window-tree-1, window-tree): New functions, moving
19403         the latter to window.el.
19404         (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
19405         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
19406         (bw-refresh-edges): Remove.
19407         (balance-windows-1, balance-windows-2): New functions.
19408         (balance-windows): Rewrite in terms of window tree functions,
19409         balance-windows-1 and balance-windows-2.
19410         (bw-adjust-window): Remove.
19411         (balance-windows-area-adjust): New function with functionality of
19412         bw-adjust-window but using resize-window.
19413         (set-window-text-height): Rewrite doc-string.
19414         Use normalize-live-window and resize-window.
19415         (enlarge-window-horizontally, shrink-window-horizontally):
19416         Rename argument to DELTA.
19417         (window-buffer-height): New function.
19418         (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
19419         Rewrite using new window resize routines.
19420         (kill-buffer-and-window, mouse-autoselect-window-select):
19421         Use ignore-errors instead of condition-case.
19422         (quit-window): Call delete-frame instead of delete-windows-on
19423         for the only buffer on frame.
19425 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
19427         * loadup.el (top-level): Load window before files for the sake
19428         of replace-buffer-in-windows.
19430         * files.el (read-buffer-to-switch)
19431         (switch-to-buffer-other-window)
19432         (switch-to-buffer-other-frame, display-buffer-other-frame):
19433         Move to window.el.
19435         * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
19436         (previous-buffer): Move to window.el.
19438         * bindings.el (unbury-buffer): Move to window.el.
19440         * window.el (delete-other-windows-vertically): Move after
19441         definition of delete-other-windows.
19442         (other-window, delete-windows-on, replace-buffer-in-windows):
19443         Move here from window.c.
19444         (record-window-buffer, unrecord-window-buffer)
19445         (set-window-buffer-start-and-point, switch-to-prev-buffer)
19446         (switch-to-next-buffer): New functions.
19447         (get-next-valid-buffer, last-buffer, next-buffer): Move here
19448         from simple.el.  Call switch-to-next-buffer.
19449         (previous-buffer): Move here from simple.el.
19450         Call switch-to-prev-buffer.
19451         (bury-buffer): Move here from buffer.c.  Switch to previous
19452         buffer when window cannot be deleted.
19453         (unbury-buffer): Move here from bindings.el.
19454         (ctl-x-map): Move binding for other-window from window.c to
19455         here.
19456         (read-buffer-to-switch, switch-to-buffer-other-window)
19457         (switch-to-buffer-other-frame): Move here from files.el.
19458         (normalize-buffer-to-switch-to): New functions.
19459         (switch-to-buffer): Move here from buffer.c.
19460         Use read-buffer-to-switch and normalize-buffer-to-switch-to.
19462 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
19464         * window.el (window-min-height, window-min-width): Move here
19465         from window.c.  Add defcustoms and rewrite doc-strings.
19466         (resize-mini-window, resize-window): New functions.
19467         (adjust-window-trailing-edge, enlarge-window, shrink-window):
19468         Move here from window.c.
19469         (maximize-window, minimize-window): New functions.
19470         (delete-window, delete-other-windows, split-window): Move here
19471         from window.c.
19472         (window-split-min-size): New function.
19473         (split-window-keep-point): Mention split-window-above-each-other
19474         instead of split-window-vertically.
19475         (split-window-above-each-other, split-window-vertically):
19476         Rename split-window-vertically to split-window-above-each-other
19477         and provide defalias for old definition.
19478         (split-window-side-by-side, split-window-horizontally):
19479         Rename split-window-horizontally to split-window-side-by-side
19480         and provide defalias for the old definition.
19481         (ctl-x-map): Move bindings for delete-window,
19482         delete-other-windows and enlarge-window here from window.c.
19483         Replace bindings for split-window-vertically and
19484         split-window-horizontally by bindings for
19485         split-window-above-each-other and split-window-side-by-side.
19487         * cus-start.el (all): Remove entries for window-min-height and
19488         window-min-width.  Add entries for window-splits and
19489         window-nest.
19491 2011-06-09  Glenn Morris  <rgm@gnu.org>
19493         * calendar/appt.el (appt-mode-line): New function.
19494         (appt-check, appt-disp-window): Use it.
19496         * files.el (hack-one-local-variable-eval-safep):
19497         Allow minor-modes with explicit +/-1 arguments.
19499 2011-06-09  Teodor Zlatanov  <tzz@lifelogs.com>
19501         * term/xterm.el (xterm): Add defgroup.
19502         (xterm-extra-capabilities): Add defcustom to supply known xterm
19503         capabilities, skip querying them, or query them (default).
19504         (terminal-init-xterm): Use it.
19505         (terminal-init-xterm-modify-other-keys): New function to set up
19506         modifyOtherKeys support to simplify `terminal-init-xterm'.
19508 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
19510         * window.el (resize-window-reset, resize-window-reset-1)
19511         (resize-subwindows-skip-p, resize-subwindows-normal)
19512         (resize-subwindows, resize-other-windows, resize-this-window)
19513         (resize-root-window, resize-root-window-vertically)
19514         (window-deletable-p, window-or-subwindow-p)
19515         (frame-root-window-p): New functions.
19517 2011-06-09  Glenn Morris  <rgm@gnu.org>
19519         * net/ange-ftp.el (ange-ftp-switches-ok): New function.
19520         (ange-ftp-get-files): Use it.
19522 2011-06-09  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
19524         * mail/sendmail.el (mail-recover-1, mail-recover):
19525         * files.el (recover-file, recover-session):
19526         Handle dired-listing-switches not being just a single short option.
19528 2011-06-09  Glenn Morris  <rgm@gnu.org>
19530         * calendar/appt.el (appt-display-message, appt-disp-window):
19531         Handle lists of appointments.
19533 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
19535         * window.el (one-window-p): Move down in code.
19536         Rewrite doc-string.
19537         (window-current-scroll-bars): Rewrite doc-string.
19538         Normalize live window argument.
19539         (walk-windows, get-window-with-predicate, count-windows):
19540         Rewrite doc-string.  Use window-list-1.
19541         (window-in-direction-2, window-in-direction, get-mru-window):
19542         New functions.
19544 2011-06-08  Reuben Thomas  <rrt@sc3d.org>
19546         * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
19547         Doc fix (Bug#8713).
19549 2011-06-08  Chong Yidong  <cyd@stupidchicken.com>
19551         * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
19553 2011-06-08  Juanma Barranquero  <lekktu@gmail.com>
19555         * loadhist.el (unload-feature-special-hooks):
19556         Add `comint-output-filter-functions'.
19558 2011-06-08  Ivan Kanis  <gnu@kanis.fr>
19560         * calendar/appt.el (appt-check): Move some initializations into the let.
19562 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
19564         * window.el (window-height): Defalias to window-total-height.
19565         (window-width): Defalias to window-body-width.
19567 2011-06-07  Chong Yidong  <cyd@stupidchicken.com>
19569         * image-mode.el (image-toggle-animation): New command.
19570         (image-mode-map): Bind it to RET.
19571         (image-mode): Update message.
19572         (image-toggle-display-image): Avoid a spurious cache flush.
19573         (image-transform-rotation): Doc fix.
19574         (image-transform-properties): Return quickly in the normal case.
19575         (image-animate-loop): Rename from image-animate-max-time.
19577         * image.el (image-animate-max-time): Move to image-mode.el.
19578         (create-animated-image): Remove unnecessary function.
19579         (image-animate): Rename from image-animate-start.  New arg.
19580         (image-animate-stop): Remove; just use image-animate-timer.
19581         (image-animate-timer): Use car-safe.
19582         (image-animate-timeout): Rename argument.
19584 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
19586         * window.el (get-lru-window, get-largest-window): Move here from
19587         window.c.  Rename first argument to ALL-FRAMES.
19588         Rephrase doc-strings.
19589         (get-buffer-window-list): Rewrite using window-list-1.
19590         Rephrase doc-string.
19591         (window-safe-min-height, window-safe-min-width): New constants.
19592         (window-size-ignore, window-min-size, window-min-size-1)
19593         (window-sizable, window-sizable-p, window-size-fixed-1)
19594         (window-size-fixed-p, window-min-delta-1, window-min-delta)
19595         (window-max-delta-1, window-max-delta, window-resizable)
19596         (window-resizable-p, window-total-height, window-total-width)
19597         (window-body-width): New functions.
19598         (window-full-height-p, window-full-width-p): Rewrite using
19599         window-total-size.
19600         (window-body-height): Rewrite using window-body-size.
19602 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
19604         * window.el (window-right, window-left, window-child)
19605         (window-child-count, window-last-child, window-any-p)
19606         (normalize-live-buffer, normalize-live-frame)
19607         (normalize-any-window, normalize-live-window)
19608         (window-iso-combination-p, window-iso-combined-p)
19609         (window-iso-combinations)
19610         (walk-window-tree-1, walk-window-tree, walk-window-subtree)
19611         (windows-with-parameter, window-with-parameter)
19612         (window-atom-root, make-window-atom, window-atom-check-1)
19613         (window-atom-check, window-side-check, window-check):
19614         New functions.
19615         (ignore-window-parameters, window-sides, window-sides-vertical)
19616         (window-sides-slots): New variables.
19617         (window-size-fixed): Move down in code.  Minor doc-string fix.
19619 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
19621         * comint.el (comint-dynamic-complete-as-filename)
19622         (comint-dynamic-complete-filename): Correctly call
19623         completion-in-region.
19625 2011-06-05  Deniz Dogan  <deniz@dogan.se>
19627         * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
19628         in last change.
19630 2011-06-05  Deniz Dogan  <deniz@dogan.se>
19632         * net/rcirc.el (rcirc-prompt-for-encryption): New function.
19633         (rcirc): Use it to prompt for encryption.
19635 2011-06-05  Roland Winkler  <winkler@gnu.org>
19637         * textmodes/bibtex.el (bibtex-search-buffer): New variable.
19638         (bibtex-search-entries): New command bound to C-c C-a.
19639         (bibtex-display-entries): New function.
19641 2011-06-05  Roland Winkler  <winkler@gnu.org>
19643         * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
19644         (bibtex-insert-kill): After yanking insert newline if necessary.
19645         (bibtex-initialize): Call bibtex-string-files-init only once.
19646         (bibtex-mode): Do not call easy-menu-add.
19647         (bibtex-validate-globally): Use save-excursion in bibtex buffers.
19648         (bibtex-yank): Set arg properly if nil.
19650 2011-06-05  Roland Winkler  <winkler@gnu.org>
19652         * textmodes/bibtex.el (bibtex-search-entry-globally):
19653         New variable.
19654         (bibtex-search-entry): Use it.
19656 2011-06-05  Roland Winkler  <winkler@gnu.org>
19658         * textmodes/bibtex.el (bibtex-entry-format): New option
19659         sort-fields.
19660         (bibtex-format-entry, bibtex-reformat): Honor this option.
19661         (bibtex-parse-entry): Return fields in proper order.
19663 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
19665         * doc-view.el (doc-view-remove-if): Move computation of result out
19666         of `dolist' to silence misleading lexical-binding warning.
19668 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
19670         * emacs-lisp/timer.el (timer-activate): Remove unused arg.
19671         (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
19673 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
19675         * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
19676         "SunOS 5.10".
19678 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
19680         * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
19681         (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
19682         (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
19683         (tramp-parse-putty):
19684         * net/tramp-sh.el (tramp-completion-function-alist-rsh)
19685         (tramp-completion-function-alist-ssh)
19686         (tramp-completion-function-alist-telnet)
19687         (tramp-completion-function-alist-su)
19688         (tramp-completion-function-alist-putty): Set `tramp-autoload'
19689         cookie.
19691         * net/tramp-ftp.el:
19692         * net/tramp-sh.el:
19693         * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
19694         load "tramp.el" `tramp-set-completion-function'.
19696 2011-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
19698         * shell.el: Require and use pcomplete.
19699         (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
19700         (shell-completion-vars): Set pcomplete-default-completion-function.
19702 2011-06-04  Deniz Dogan  <deniz@dogan.se>
19704         * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
19705         `memq' (Bug#8799).
19707 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
19709         * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
19711 2011-06-02  Juanma Barranquero  <lekktu@gmail.com>
19713         * bs.el (bs--mark-unmark, bs--nth-wrapper):
19714         * mpc.el (mpc-select-extend, mpc-songpointer-context):
19715         * vc/log-view.el (log-view-beginning-of-defun):
19716         * vc/smerge-mode.el (smerge-apply-resolution-patch)
19717         (smerge-refine-forward, smerge-refine-chopup-region):
19718         Silence warning for unused `dotimes' counter variables.
19720 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
19722         * net/tramp.el (tramp-with-progress-reporter): Rename from
19723         with-progress-reporter.  Use `declare'.
19724         * net/tramp-smb.el:
19725         * net/tramp-sh.el:
19726         * net/tramp-gvfs.el: Update all uses.
19728 2011-06-02  Jay Belanger  <jay.p.belanger@gmail.com>
19730         * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
19731         buffer isn't killed before making it current.
19733 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
19735         Silence various byte-compiler warnings.
19736         * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
19737         `access-type' and new obsolescence format.
19738         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
19739         new format.
19740         (byte-compile-check-variable): New `access-type' argument.
19741         Only warn if the access-type is obsolete.
19742         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
19743         (byte-compile-variable-set): Adjust callers.
19744         * help-fns.el (describe-variable): Adjust to new obsolescence format.
19745         * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
19746         setting it as obsolete.
19747         * simple.el (minibuffer-completing-symbol):
19748         * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
19749         access as obsolete.
19750         * minibuffer.el (minibuffer-completing-file-name): Don't make it
19751         obsolete yet.
19752         * international/quail.el (quail-mouse-choose-completion): Remove unused
19753         code referring to obsolete var.
19754         (quail-choose-completion-string): Remove.
19755         * server.el (server-clients-with, server-kill-buffer-query-function)
19756         (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
19757         * proced.el (proced-send-signal):
19758         * emacs-lisp/lisp.el (lisp-complete-symbol):
19759         Replace completion-annotate-function with completion-extra-properties.
19761 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
19763         * simple.el (goto-line): Use read-number.
19764         (overriding-map-is-bound): Remove.
19765         (saved-overriding-map): Change default.
19766         (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
19767         Take the map as argument.
19768         (universal-argument, negative-argument, digit-argument): Use it.
19769         (restore-overriding-map): Adjust.
19770         (do-auto-fill): Use fill-forward-paragraph.
19771         (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
19773         * minibuffer.el (minibuffer-inactive-mode-map): New var.
19774         (minibuffer-inactive-mode): New major mode.
19775         * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
19776         the *Messages* buffer" hack.
19777         (mouse-popup-menubar): Don't burp if the event is a normal key.
19779         Miscellaneous tweaks.
19780         * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
19781         lexical scoping as in subr.el's dolist and dotimes.
19782         * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
19783         Silence compiler warning.
19784         * thingatpt.el (forward-whitespace): Trivial coding style fix.
19785         * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
19786         * international/ccl.el (ccl-compile): Trivial simplification.
19787         * help-fns.el (help-do-arg-highlight): Silence compiler warning.
19788         * emacs-lisp/testcover.el (testcover-end): Remove spurious
19789         `printflag' argument.
19790         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
19791         Purecopy the whole obsolescence data.
19793 2011-06-01  Leo Liu  <sdl.web@gmail.com>
19795         * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
19796         improve doc-string as suggested by Marco Pessotto
19797         <melmothx@gmail.com>.
19798         (rcirc-print): Fix last change.
19800 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19802         * minibuffer.el (complete-with-action): Return nil for the metadata and
19803         boundaries of non-functional tables.
19804         (completion-table-dynamic): Return nil for the metadata.
19805         (completion-table-with-terminator): Add default case, using
19806         complete-with-action.
19807         (completion--metadata): New function.
19808         (completion-all-sorted-completions, minibuffer-completion-help): Use it
19809         to try and avoid pathological performance problems.
19810         (completion--embedded-envvar-table): Return `category' metadata.
19812 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19814         * subr.el (process-alive-p): New tiny convenience function.
19816 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19818         * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
19819         content but also its previous major mode.
19821 2011-05-31  Helmut Eller  <eller.helmut@gmail.com>
19823         * emacs-lisp/debug.el (debug): Restore the previous content of the
19824         *Backtrace* buffer when we exit with C-M-c.
19826 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
19828         * minibuffer.el: Add metadata method to completion tables.
19829         (completion-category-overrides): New defcustom.
19830         (completion-metadata, completion--field-metadata)
19831         (completion-metadata-get, completion--styles)
19832         (completion--cycle-threshold): New functions.
19833         (completion-try-completion, completion-all-completions):
19834         Add `metadata' argument to choose completion-styles.
19835         (completion--do-completion): Use metadata to choose cycling.
19836         (completion-all-sorted-completions): Use metadata for sorting.
19837         Remove :completion-cycle-penalty which is not needed any more.
19838         (completion--try-word-completion): Add `metadata' argument.
19839         (minibuffer-completion-help): Check metadata for annotation function
19840         and sorting.
19841         (completion-file-name-table): Return `category' metadata.
19842         (minibuffer-completing-file-name): Make obsolete.
19843         * simple.el (minibuffer-completing-symbol): Make obsolete.
19844         * icomplete.el (icomplete-completions): Pass new `metadata' param to
19845         completion-try-completion.
19847 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19849         * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
19851 2011-05-30  Leo Liu  <sdl.web@gmail.com>
19853         * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
19854         (rcirc-print): Decode all incoming messages (bug#8744).
19855         (rcirc-decode-coding-system): Allow value nil for automatic coding
19856         system detection.
19858 2011-06-01  Glenn Morris  <rgm@gnu.org>
19860         * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
19862 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
19864         * image.el (image-animate-max-time): Allow nil and t values.
19865         Default to nil.
19866         (create-animated-image): Doc fix.
19867         (image-animate-start): Remove second arg; just use
19868         image-animate-max-time.
19869         (image-animate-timeout): Doc fix.  Args changed.
19871         * image-mode.el (image-toggle-display-image): Ensure that the
19872         image spec passed to the animate timer is the same object as in
19873         the buffer's display property (Bug#6981).
19874         (image-transform-properties): Doc fix.
19876         * image.el (image-animate-max-time): Default to nil.
19878 2011-05-29  Martin Rudalics  <rudalics@gmx.at>
19880         * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
19881         entire buffer list (Bug#8184).
19883 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
19885         * image.el (imagemagick-types-inhibit)
19886         (imagemagick-register-types): Doc fix.
19888 2011-05-29  Deniz Dogan  <deniz@dogan.se>
19890         * net/rcirc.el (rcirc): Use the user's stored encryption method by
19891         default.
19893 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
19895         * select.el: Don't perform clipboard-manager saving in hooks;
19896         leave the hooks empty.
19898 2011-05-28  Leo Liu  <sdl.web@gmail.com>
19900         * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
19901         (occur-mode-map): Bind occur-edit-mode.  Use occur-menu-map.
19902         (occur-edit-mode): New major mode (Bug#8463).
19903         (occur-after-change-function): New function.
19904         (occur-engine): Give Occur tags a read-only property.
19906 2011-05-28  Kevin Ryde  <user42@zip.com.au>
19908         * subr.el (def-edebug-spec): Doc fix (Bug#8430).
19910 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
19912         * bindings.el (help-echo): Make the initial non-indicator dash
19913         empty on graphical terminals (Bug#7295).
19915         * files.el (auto-mode-alist): Move config rule after the
19916         in-stripping one (Bug#8547).
19918         * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
19920         * startup.el (normal-splash-screen): Remove gratuitous mode-line
19921         setting (Bug#8740).
19923 2011-05-28  Alp Aker  <aker@pitt.edu>  (tiny change)
19925         * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
19926         (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
19927         (Bug#8539).
19929 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
19931         * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
19933 2011-05-28  Dima Kogan  <dkogan@cds.caltech.edu>  (tiny change)
19935         * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
19936         (hs-hide-block-at-point, hs-find-block-beginning)
19937         (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
19938         (Bug#8279).
19940 2011-05-28  Glenn Morris  <rgm@gnu.org>
19942         * startup.el (fancy-about-screen): Use standard mode line.  (Bug#8740)
19944 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
19946         * help-fns.el (describe-function-1): If the function is a derived
19947         major mode, print the parent mode.
19949         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
19950         (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
19952 2011-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
19954         * minibuffer.el (completion--capf-wrapper): Check applicability before
19955         returning non-nil for non-exclusive completion data.
19956         * progmodes/etags.el (tags-completion-at-point-function):
19957         * info-look.el (info-lookup-completions-at-point): Mark as
19958         non-exclusive.
19959         (info-complete): Adjust accordingly.
19961         * info-look.el: Convert to lexical-binding and completion-at-point.
19962         (info-lookup-completions-at-point): New function.
19963         (info-complete): Use it and completion-in-region.
19965 2011-05-28  Drew Adams  <drew.adams@oracle.com>
19967         * isearch.el: Let M-e start with point at the first mismatched char.
19968         (isearch-fail-pos): New function.
19969         (isearch-edit-string): Use it.
19971 2011-05-28  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
19973         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
19975 2011-05-27  Toby Cubitt  <toby-predictive@dr-qubit.org>
19977         * emacs-lisp/avl-tree.el: New avl-tree-stack datatype.  Add new
19978         traversal functions for avl-trees.
19979         (avl-tree--stack): New struct.
19980         (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
19981         (avl-tree-enter): Add optional `updatefun' arg.
19982         (avl-tree--do-enter): Add optional `updatefun' arg.
19983         Change return value.
19984         (avl-tree-delete): Add optional `test' and `nilflag' args.
19985         (avl-tree--do-delete): Add `test' and `nilflag' args.
19986         Change return value.
19987         (avl-tree-member): Add optional `nilflag'
19988         (avl-tree-member-p): New function.
19989         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
19990         (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
19991         (avl-tree-stack-empty-p): New functions.
19993         * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
19994         avl-tree--del-balance1 and make it work both ways.
19995         (avl-tree--del-balance2): Remove.
19996         (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
19997         make it work both ways.
19998         (avl-tree--enter-balance2): Remove.
19999         (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
20000         New macros.
20001         (avl-tree--mapc, avl-tree-map): Add direction argument.
20003 2011-05-27  David Michael  <fedora.dm0@gmail.com>  (tiny change)
20005         * files.el (interpreter-mode-alist): Add rbash (bug#8745).
20007 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
20009         * select.el: Support clipboard managers with built-in function
20010         x-clipboard-manager-save, via delete-frame-functions and
20011         kill-emacs-hook.
20012         (xselect-convert-to-targets): Add MULTIPLE target to list.
20013         (xselect-convert-to-save-targets): New function.
20015 2011-05-27  Kenichi Handa  <handa@m17n.org>
20017         * mail/sendmail.el (mail-encode-header): Avoid double encoding by
20018         let-binding rfc2047-encode-encoded-words to nil.
20020 2011-05-27  Glenn Morris  <rgm@gnu.org>
20022         * mail/emacsbug.el: Don't require url-util.
20024         * shell.el (shell-directory-tracker): Case matters.  (Bug#8735)
20026         * files.el (set-auto-mode):
20027         Also respect mode: entries at the end of the file.  (Bug#8586)
20029 2011-05-26  Glenn Morris  <rgm@gnu.org>
20031         * files.el (hack-local-variables-prop-line, hack-local-variables):
20032         Downcase mode names, as seems to be traditional.
20033         (hack-local-variables, hack-local-variables-apply): Doc fixes.
20035         * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
20036         (report-emacs-bug-hook): Try to validate the From address.  (Bug#8038)
20038 2011-05-25  Julien Danjou  <julien@danjou.info>
20040         * textmodes/rst.el (rst-define-level-faces): Do not define face
20041         symbol if it is already defined.
20043 2011-05-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
20045         * play/5x5.el (5x5-new-game, 5x5-randomize):
20046         Reset 5x5-solver-output to nil when a new grid is cast.
20047         (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
20048         these debugging traces, as defmacro breaks the compiled code.
20050 2011-05-24  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
20052         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
20054 2011-05-24  Leo Liu  <sdl.web@gmail.com>
20056         * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
20057         (vc-bzr-sha1): Adapt.
20059         * sha1.el: Remove.  Function `sha1' is now builtin.
20061         * bindings.el: Provide sha1 feature.
20063 2011-05-24  Kenichi Handa  <handa@m17n.org>
20065         * mail/sendmail.el: Require `rfc2047'.
20066         (mail-insert-from-field): Do not perform RFC2047 encoding.
20067         (mail-encode-header): New function.
20068         (sendmail-send-it): Set buffer-file-coding-system of the work
20069         buffer to the return value of select-message-coding-system.
20070         Call mail-encode-header.
20072         * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
20074 2011-05-24  Sean Neakums  <sneakums@zork.net>  (tiny change)
20076         * mail/supercite.el (sc-default-cite-frame):
20077         Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
20079 2011-05-24  Glenn Morris  <rgm@gnu.org>
20081         * progmodes/python.el (brm-menu): Declare.
20083         * emulation/viper.el (viper-set-hooks): Declare.
20085         * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
20086         (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
20087         (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
20088         (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
20089         (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
20090         (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
20092 2011-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20094         Add an :exit-function for completion-at-point.
20096         * minibuffer.el (completion--done): New fun.
20097         (completion--do-completion): Use it.  New arg `expect-exact'.
20098         (minibuffer-complete, minibuffer-complete-word): Don't output message,
20099         since completion--do-completion does it for us now.
20100         (minibuffer-force-complete): Use completion--done and
20101         completion--replace.  Handle sole-completion case with more care.
20102         (minibuffer-complete-and-exit): Use new `expect-exact' arg.
20103         (completion-extra-properties): New var.
20104         (completion-annotate-function): Make obsolete.
20105         (minibuffer-completion-help): Adjust accordingly.
20106         Use completion-list-insert-choice-function.
20107         (completion-at-point, completion-help-at-point):
20108         Bind completion-extra-properties.
20109         (completion-pcm-word-delimiters): Add | (for uniquify, for example).
20110         * simple.el (completion-list-insert-choice-function): New var.
20111         (completion-setup-function): Preserve it.
20112         (choose-completion): Pay attention to it, shuffle the code a bit.
20113         (choose-completion-string): New arg `insert-function'.
20115         * textmodes/bibtex.el: Convert to lexical binding.
20116         (bibtex-mode-map): Use completion-at-point.
20117         (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
20118         (bibtex-completion-at-point-function): New fun, from bibtex-complete.
20119         (bibtex-complete): Define as obsolete alias.
20120         (bibtex-complete-internal): Remove.
20121         (bibtex-format-entry): Remove unused sub-group in regexp.
20122         * shell.el (shell--command-completion-data)
20123         (shell-environment-variable-completion):
20124         * pcomplete.el (pcomplete-completions-at-point):
20125         * comint.el (comint--complete-file-name-data): Use :exit-function
20126         instead of completion-table-with-terminator so it also works for
20127         choose-completion.
20129 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
20131         * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
20133         * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
20134         (bug#8710).
20136         * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
20138 2011-05-23  Ken Manheimer  <ken.manheimer@gmail.com>
20140         * allout.el (allout-inhibit-auto-fill-on-headline): Create new
20141         customization variable and implement: If non-nil, auto-fill will
20142         be inhibited while on topic's header line.
20144 2011-05-23  Vincent Belaïche  <vincentb1@users.sourceforge.net>
20146         * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
20147         click on.  II/ Make 5x5 multisession.  III/ Ensure that random grids
20148         always have a solution in grid size = 5 cases.
20149         (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
20150         (5x5-solver-output, 5x5-log-buffer): New vars.
20151         (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
20152         Make these variables buffer local to achieve 5x5 multi-session-ness.
20153         (5x5): Set 5x5-grid-size only if SIZE is non-negative.
20154         (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
20155         (5x5-solve-suggest): New funs.
20156         (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
20157         randomize a grid so that we ensure that there is always a solution.
20158         (5x5-make-random-grid): Allow other movement than flipping.
20160 2011-05-23  Kevin Ryde  <user42@zip.com.au>
20162         * emacs-lisp/advice.el (ad-read-advised-function):
20163         Use `function-called-at-point' as the default, if it has
20164         advice and passes PREDICATE.
20166 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
20168         * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
20169         byte-compile-lambda if it's actually a lambda.
20171         * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
20172         Fix function quoting.  Use backquote better.
20174 2011-05-22  Yuanle Song  <sylecn@gmail.com>
20176         * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
20177         matching (Bug#8516).
20179 2011-01-22  Jari Aalto  <jari.aalto@cante.net>
20181         * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
20182         different face (Bug#8178).
20184 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
20186         * vc/diff-mode.el (diff-changed): Don't use terminal specs for
20187         defface (Bug#8144).
20189 2011-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
20191         * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
20192         funcall as well (bug#8712).  Warn when performing those conversions.
20193         * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
20195         * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
20197 2011-05-22  Glenn Morris  <rgm@gnu.org>
20199         * files.el (hack-local-variables-prop-line): Small simplifications.
20200         (hack-local-variables, hack-local-variables-prop-line):
20201         If MODE-ONLY, return the mode, rather than just `t'.
20203 2011-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20205         * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
20207 2011-05-21  Glenn Morris  <rgm@gnu.org>
20209         * files.el (hack-local-variables-prop-line, hack-local-variables):
20210         If only interested in the mode, don't bother doing the other stuff.
20212         * image-mode.el (image-after-revert-hook):
20213         Redraw all frames on which the image is visible.  (Bug#8567)
20215         * dired-aux.el (dired-touch-initial): Just use current-time.  (Bug#6887)
20217         * wid-edit.el (widget-checklist-match-inline):
20218         Fix 2011-04-19 change.  (Bug#8649)
20220 2011-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20222         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
20223         Also allow singlespace after single-letter capitals followed by a dot.
20225         * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
20226         enabled.  Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
20228 2011-05-20  Nix  <nix@esperi.org.uk>
20230         * files.el (basic-save-buffer-2):
20231         Fix handling of break-hardlink-on-save with non-existent files.
20233 2011-05-19  Deniz Dogan  <deniz@dogan.se>
20235         * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
20236         (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
20238 2011-05-19  Glenn Morris  <rgm@gnu.org>
20240         * progmodes/f90.el (f90-type-def-re):
20241         Handle "type, bind(c)".  (Bug#8691)
20243         * emacs-lisp/autoload.el (batch-update-autoloads):
20244         Set autoload-excludes by parsing loadup.el rather than Makefiles.
20246 2011-05-18  Michael Albinus  <michael.albinus@gmx.de>
20248         * net/tramp.el (tramp-process-actions): Set "first-password-request"
20249         property for the correct connection in case of multihops.
20251 2011-05-18  Glenn Morris  <rgm@gnu.org>
20253         * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
20254         * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
20256         Rationalize calendar handling of day and month abbrev-arrays.
20257         * calendar/calendar.el (calendar-customized-p): New function.
20258         (calendar-abbrev-construct, calendar-make-alist): Change what it does.
20259         (calendar-day-name-array, calendar-month-name-array): Doc fix.
20260         Add :set function.
20261         (calendar-abbrev-length, calendar-day-abbrev-array)
20262         (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
20263         (calendar-day-abbrev-array, calendar-month-abbrev-array):
20264         Elements may no longer be nil.
20265         (calendar-day-name, calendar-month-name):
20266         Update for changed nature of abbrev arrays.
20267         * calendar/diary-lib.el (diary-name-pattern):
20268         Update for changed nature of abbrev arrays.
20269         (diary-mark-entries-1): Update calendar-make-alist calls.
20270         (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
20271         * calendar/cal-html.el (cal-html-day-abbrev-array):
20272         Simply inherit from calendar-day-abbrev-array.
20274 2011-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
20276         * progmodes/grep.el (grep-mode): Disable default
20277         compilation-directory-matcher setting (bug#8684).
20279 2011-05-17  Michael Albinus  <michael.albinus@gmx.de>
20281         * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
20282         instead of "head" and "tail".  There were problems with SunOS 5.9,
20283         and it performs better.
20285 2011-05-17  Glenn Morris  <rgm@gnu.org>
20287         * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
20289         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
20290         Replace obsolete function.
20292         * shell.el (pcomplete-parse-arguments-function): Declare.
20294         * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
20295         (appt-display-diary, appt-display-interval, appt-prev-comp-time)
20296         (appt-check): Doc fixes.
20297         (appt-disp-window-function, appt-delete-window-function):
20298         Remove needless special case in custom :type.
20299         (appt-display-count): Default to 0, not nil.
20300         (appt-check): Reset appt-display-count to 0, not nil.
20302 2011-05-17  Juanma Barranquero  <lekktu@gmail.com>
20304         * progmodes/python.el (python-font-lock-keywords):
20305         Add the Python 3.X keyword "nonlocal" (bug#8639).
20307 2011-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
20309         * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
20311 2011-05-16  Kevin Ryde  <user42@zip.com.au>
20313         * info-look.el (makefile-automake-mode): New setups, looking in
20314         automake manual, then makefile-mode.
20315         (makefile-mode): Remove automake manual, have it just in
20316         makefile-automake-mode since there's various things different or
20317         not relevant to plain make.
20318         (makefile-mode): Remove "other-modes" non-existent automake-mode,
20319         believe a hypothetical automake-mode would go to makefile-mode,
20320         not the other way around.
20322 2011-05-15  Chong Yidong  <cyd@stupidchicken.com>
20324         * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
20325         hunk-end tags (Bug#8672).
20327         * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
20328         vc-annotate-show-diff-revision-at-line (Bug#8671).
20330 2011-05-14  Glenn Morris  <rgm@gnu.org>
20332         * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
20333         in the middle of an existing one with multiple authors.  (Bug#8645)
20334         (change-log-font-lock-keywords): Also handle multiple author lines
20335         with leading tabs.  (Bug#8644)
20337         * calendar/appt.el (appt-check): Rename some local variables.
20338         Some simplification/reordering.
20340         * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
20341         (feedmail-sendmail-f-doesnt-sell-me-out)
20342         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
20343         (feedmail-debug-sit-for, feedmail-queue-express-hook)
20344         (feedmail-queue-runner-message-sender): Set :version.
20345         (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
20346         (bbdb-dwim-net-address, vm-mail): Declare.
20347         (feedmail-binmail-gnulinuxish-template):
20348         Rename from feedmail-binmail-linuxish-template.
20349         (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
20350         Use insert-buffer-substring.
20352 2011-05-14  Bill Carpenter  <bill@carpenter.org>
20354         * mail/feedmail.el (feedmail-patch-level): Increase.
20355         (feedmail-debug): New custom group.
20356         (feedmail-confirm-outgoing-timeout)
20357         (feedmail-sendmail-f-doesnt-sell-me-out)
20358         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
20359         (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
20360         (feedmail-sender-line, feedmail-from-line)
20361         (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
20362         (feedmail-spray-this-address)
20363         (feedmail-spray-address-fiddle-plex-list)
20364         (feedmail-queue-use-send-time-for-date)
20365         (feedmail-queue-use-send-time-for-message-id)
20366         (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
20367         (feedmail-buffer-eating-function):
20368         Doc fixes.
20369         (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
20370         (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
20371         (feedmail-message-action-scroll-down): New functions.
20372         (feedmail-queue-directory, feedmail-queue-draft-directory):
20373         Use expand-file-name.
20374         (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
20375         Remove C-v help entry.
20376         (feedmail-queue-buffer-file-name): New variable.
20377         (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
20378         (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
20379         (feedmail-message-action-send-strong, feedmail-message-action-edit)
20380         (feedmail-message-action-draft, feedmail-message-action-draft-strong)
20381         (feedmail-message-action-queue, feedmail-message-action-queue-strong)
20382         (feedmail-message-action-toggle-spray)
20383         (feedmail-run-the-queue-no-prompts)
20384         (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
20385         (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
20386         (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
20387         (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
20388         (feedmail-envelope-deducer, feedmail-fiddle-from)
20389         (feedmail-fiddle-sender, feedmail-default-date-generator)
20390         (feedmail-fiddle-date, feedmail-fiddle-message-id)
20391         (feedmail-fiddle-spray-address)
20392         (feedmail-fiddle-list-of-spray-fiddle-plexes)
20393         (feedmail-fiddle-list-of-fiddle-plexes)
20394         (feedmail-fill-to-cc-function, feedmail-fill-this-one)
20395         (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
20396         (feedmail-queue-runner-message-sender, feedmail-binmail-template):
20397         Change default.  Doc fix.
20398         (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
20399         (feedmail-binmail-linuxish-template): New constant.
20400         (feedmail-buffer-to-sendmail): Doc fix.  Add debug call.
20401         Respect feedmail-sendmail-f-doesnt-sell-me-out.
20402         (feedmail-send-it): Add debug call.
20403         Use feedmail-queue-buffer-file-name, and
20404         feedmail-send-it-immediately-wrapper.
20405         (feedmail-message-action-send): Add debug call.
20406         Use feedmail-send-it-immediately-wrapper.
20407         (feedmail-queue-express-to-queue): Add debug call.
20408         Run feedmail-queue-express-hook.
20409         (feedmail-message-action-help): Add debug call.  Use feedmail-p-h-b-n.
20410         (feedmail-message-action-help-blat):
20411         Rename from feedmail-queue-send-edit-prompt-help-first.
20412         (feedmail-run-the-queue): Add debug call.  Set buffer-file-type.
20413         Check line-endings.  Handle errors better.
20414         (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
20415         Doc fix.  Add debug call.
20416         (feedmail-queue-send-edit-prompt): Doc fix.  Add debug call.
20417         Use feedmail-queue-send-edit-prompt-inner.
20418         (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
20419         (feedmail-queue-send-edit-prompt-inner): New function, extracted
20420         from feedmail-queue-send-edit-prompt.
20421         (feedmail-queue-send-edit-prompt-help)
20422         (feedmail-queue-send-edit-prompt-help-later): Remove functions.
20423         (feedmail-tidy-up-slug): Add debug call.
20424         Respect feedmail-queue-slug-suspect-regexp.
20425         (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
20426         (feedmail-dump-message-to-queue): Add debug call.
20427         Expand queue-directory.
20428         (feedmail-dump-message-to-queue): Change message slightly.
20429         Use feedmail-say-chatter.
20430         (feedmail-rfc822-date): Add debug call.  Bind system-time-locale.
20431         (feedmail-send-it-immediately-wrapper): New function.
20432         (feedmail-send-it-immediately): Add debug calls.  Use let not let*.
20433         Insert empty string rather than newline.  Handle full-frame case.
20434         Use catch/throw.  Use feedmail-say-chatter.
20435         (feedmail-fiddle-from): Try mail-host-address.
20436         (feedmail-default-message-id-generator): Doc fix.
20437         Bind system-time-locale.  Handle missing end.
20438         (feedmail-fiddle-x-mailer): Add debug call.
20439         Handle feedmail-x-mailer-line being nil.
20440         (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
20441         Add debug call.  Use buffer-substring-no-properties.
20442         (feedmail-say-debug, feedmail-say-chatter): New functions.
20443         (feedmail-find-eoh): Give an explicit error.
20445 2011-05-13  Ulf Jasper  <ulf.jasper@web.de>
20447         * net/newst-treeview.el (newsticker-treeview-face): Change default
20448         family from helvetica to sans.
20449         (newsticker-treeview-tool-bar-map): Move tool-bar icons to
20450         etc/images/newsticker.
20452         * net/newst-reader.el (newsticker-feed-face): Change default
20453         family from helvetica to sans.
20455         * net/newst-plainview.el (newsticker-new-item-face)
20456         (newsticker-old-item-face, newsticker-immortal-item-face)
20457         (newsticker-obsolete-item-face, newsticker-date-face)
20458         (newsticker-statistics-face): Change default family from
20459         helvetica to sans.
20460         (newsticker--plainview-tool-bar-map): Move tool-bar icons to
20461         etc/images/newsticker.
20463         * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
20464         (newsticker--process-auto-mark-filter-match): Tell user about
20465         auto-marking.
20467 2011-05-13  Didier Verna  <didier@xemacs.org>
20469         Common Lisp indentation improvements on defmethod and lambda-lists.
20470         * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
20471         TODO entries.
20472         (lisp-lambda-list-keyword-parameter-indentation)
20473         (lisp-lambda-list-keyword-parameter-alignment)
20474         (lisp-lambda-list-keyword-alignment): New customizable user options.
20475         (lisp-indent-defun-method): Improve docstring.
20476         (extended-loop-p): Fix comment.
20477         (lisp-indent-lambda-list-keywords-regexp): New variable.
20478         (lisp-indent-lambda-list): New function.
20479         (lisp-indent-259): Use it.
20480         (lisp-indent-defmethod): Support for more than one
20481         method qualifier and properly indent methods lambda-lists.
20482         (defgeneric): Provide a missing common-lisp-indent-function property.
20484 2011-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
20486         * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
20487         bounds for the empty string (bug#8667).
20489 2011-05-13  Glenn Morris  <rgm@gnu.org>
20491         * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
20493         * mail/sendmail.el (sendmail-program): Try executable-find first.
20494         (sendmail-send-it): `sendmail-program' cannot be unbound.
20496         * calendar/appt.el (appt-make-list): Simplify.
20497         (appt-time-msg-list): Doc fix.
20498         (appt-check): Change mode-line message at the time of the appointment.
20500 2011-05-12  Andreas Schwab  <schwab@linux-m68k.org>
20502         * progmodes/ld-script.el (ld-script-keywords)
20503         (ld-script-builtins): Update keywords list.
20505 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
20507         * progmodes/grep.el (grep-filter): Don't trip on partial lines.
20509         * shell.el (shell-completion-vars): New function.
20510         (shell-mode):
20511         * simple.el (read-shell-command): Use it.
20512         (blink-matching-open): No need for " [...]" in minibuffer-message.
20514 2011-05-12  Glenn Morris  <rgm@gnu.org>
20516         * calendar/appt.el (appt-now-displayed): Remove pointless variable.
20517         (appt-check): Simplify.
20519 2011-05-12  Eli Zaretskii  <eliz@gnu.org>
20521         * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
20522         literal "/dev/null".
20524 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
20526         * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
20527         Fix typo.
20529 2011-05-12  Ralph Schleicher  <rs@ralph-schleicher.de>
20531         * progmodes/which-func.el (which-function):
20532         Use add-log-current-defun instead of add-log-current-defun-function,
20533         which might not be defined (Bug#8260).
20535 2011-05-12  Glenn Morris  <rgm@gnu.org>
20537         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
20538         Let byte-compile-initial-macro-environment always take precedence.
20540 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
20542         * net/rcirc.el: Add support for SSL/TLS connections.
20543         (rcirc-server-alist): New field `encryption'.
20544         (rcirc): Check `encryption' settings.
20545         (rcirc-connect): New arg `encryption'.  Use open-network-stream.
20546         Merge make-local-variable into `set'.
20547         (rcirc--connection-open-p): New function.
20548         (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
20549         the process is not a network process (e.g. running gnutls-cli).
20550         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
20551         Make rcirc-(en|de)code-coding-system local here.
20552         (rcirc-mode): Merge make-local-variable into `set'.
20553         (rcirc-parent-buffer): Make permanent buffer-local.
20554         (rcirc-multiline-minor-mode): Don't do it here.
20555         (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
20556         there's no server buffer.
20558 2011-05-11  Glenn Morris  <rgm@gnu.org>
20560         * newcomment.el (comment-kill): Prefix "unused" local.
20562         * term/w32console.el (get-screen-color): Declare.
20564         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
20565         Handle symbol elements of byte-compile-initial-macro-environment.
20567 2011-05-10  Leo Liu  <sdl.web@gmail.com>
20569         * bookmark.el (bookmark-bmenu-mode-map):
20570         Bind bookmark-bmenu-search to `/'.
20572         * mail/footnote.el: Convert to utf-8 encoding.
20573         (footnote-unicode-string, footnote-unicode-regexp): New variable.
20574         (Footnote-unicode): New function.
20575         (footnote-style-alist): Add unicode style to the list.
20576         (footnote-style): Doc fix.
20578 2011-05-10  Jim Meyering  <meyering@redhat.com>
20580         Fix doubled-word typos.
20581         * international/quail.el (quail-insert-kbd-layout): and and -> and
20582         * kermit.el: and and -> and
20583         * net/ldap.el (ldap-search-internal): to to -> to
20584         * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
20585         * progmodes/js.el (js-mode): and and -> and
20586         * textmodes/artist.el (artist-move-to-xy): at at -> at
20587         (artist-draw-region-trim-line-endings): if if -> if
20588         And Safetyc -> Safety.
20589         * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
20591 2011-05-10  Glenn Morris  <rgm@gnu.org>
20592             Stefan Monnier  <monnier@iro.umontreal.ca>
20594         * files.el (hack-one-local-variable-eval-safep):
20595         Consider "eval: (foo-mode)" to be safe.  (Bug#8613)
20597 2011-05-10  Glenn Morris  <rgm@gnu.org>
20599         * calendar/diary-lib.el (diary-list-entries-hook)
20600         (diary-mark-entries-hook, diary-nongregorian-listing-hook)
20601         (diary-nongregorian-marking-hook, diary-list-entries)
20602         (diary-include-other-diary-files, diary-mark-entries)
20603         (diary-mark-included-diary-files): Doc fixes.
20605 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
20607         * misc.el: Require tabulated-list.el during compilation.
20609 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
20611         * progmodes/compile.el (compilation-start):
20612         Run compilation-filter-hook for the async case too.
20613         (compilation-filter-hook): Doc fix.
20615 2011-05-09  Deniz Dogan  <deniz@dogan.se>
20617         * wdired.el: Remove outdated installation comment.  Fix usage
20618         comment.
20620 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
20622         * misc.el: Implement new command `list-dynamic-libraries'.
20623         (list-dynamic-libraries--loaded-only-p): New variable.
20624         (list-dynamic-libraries--refresh): New function.
20625         (list-dynamic-libraries): New command.
20627 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
20629         * progmodes/compile.el (compilation-error-regexp-alist-alist):
20630         Fix the ant regexp to handle end-line and end-column info from jikes.
20631         Re-introduce maven regexp.  Give the ruby-Test::Unit regexp a
20632         higher priority to avoid clobbering by gnu.
20634 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
20636         * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
20637         if the face has existing theme settings (Bug#8454).
20639 2011-05-08  Ralph Schleicher  <rs@ralph-schleicher.de>
20641         * progmodes/perl-mode.el (perl-imenu-generic-expression):
20642         Only match variables declared via `my' or `our' (Bug#8261).
20644         * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
20645         special file names `.' and `..' (Bug#8259).
20647 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
20649         * progmodes/grep.el (grep-mode-font-lock-keywords):
20650         Remove buffer-changing entries.
20651         (grep-filter): New function.
20652         (grep-mode): Add it to compilation-filter-hook.
20654         * progmodes/compile.el (compilation-filter-hook)
20655         (compilation-filter-start): New defvars.
20656         (compilation-filter): Call compilation-filter-hook prior to
20657         updating the process mark.
20659 2011-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20661         * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
20663 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
20665         * mail/sendmail.el (send-mail-function): On MS-Windows, default to
20666         mailclient-send-it even if window-system is nil.  (Bug#8595)
20668         * term/w32console.el (terminal-init-w32console):
20669         Call get-screen-color and use its output to set the frame
20670         background-mode.  (Bug#8597)
20672 2011-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
20674         Make bytecomp.el understand that defmethod defines funs (bug#8631).
20675         * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
20676         New functions.
20677         (defgeneric, eieio--defmethod): Use them.
20678         (eieio-defgeneric): Remove.
20679         (defmethod): Call defgeneric in a way visible to the byte-compiler.
20681 2011-05-07  Glenn Morris  <rgm@gnu.org>
20683         * calendar/timeclock.el (timeclock-log-data): Remove unused local.
20684         Use let rather than let*.
20685         (timeclock-find-discrep): Remove unused local.
20687         * calendar/diary-lib.el (diary-comment-start): Doc fix.
20689         * calendar/appt.el (appt-time-msg-list): Doc fix.
20691 2011-05-06  Noah Friedman  <friedman@splode.com>
20693         * apropos.el (apropos-print-doc): Only use
20694         emacs-lisp-docstring-fill-column when it is bound to an integer,
20695         per that variable's documentation.
20697 2011-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
20699         * lpr.el (print-region-1): Echo lpr-program's output, so error messages
20700         and warnings are not silently discarded (e.g. use -d instead of -P).
20702 2011-05-06  Glenn Morris  <rgm@gnu.org>
20704         * calendar/appt.el (appt-message-warning-time): Doc fix.
20705         (appt-warning-time-regexp): New option.
20706         (appt-make-list): Respect appt-message-warning-time.
20708         * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
20709         New options.
20710         (diary-add-to-list): Strip comments from the displayed string.
20711         (diary-mode): Set comment-start and comment-end.
20713         * vc/diff-mode.el (smerge-refine-subst): Declare.
20714         (diff-refine-hunk): Don't require smerge-mode when compiling.
20716 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
20718         * simple.el (list-processes): Return nil as the docstring says.
20720 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
20722         * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
20723         to "".
20724         (ange-ftp-write-region, ange-ftp-insert-file-contents)
20725         (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
20726         determining of binary transfer.  (Bug#7383)
20728 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
20730         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
20731         Fix port computation bug.  (Bug#8618)
20733 2011-05-05  Glenn Morris  <rgm@gnu.org>
20735         * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
20737         * simple.el (shell-dynamic-complete-functions)
20738         (comint-dynamic-complete-functions): Declare.
20740         * net/network-stream.el (gnutls-negotiate):
20741         * simple.el (tabulated-list-print): Fix declarations.
20743         * progmodes/gud.el (syntax-symbol, syntax-point):
20744         Remove unnecessary and incorrect declarations.
20746         * emacs-lisp/check-declare.el (check-declare-scan):
20747         Handle byte-compile-initial-macro-environment in bytecomp.el.
20749 2011-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20751         Fix earlier half-done eieio-defmethod change (bug#8338).
20752         * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
20753         Streamline and change calling convention.
20754         (defmethod): Adjust accordingly and simplify.
20755         (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
20756         new eieio--defmethod.
20757         (slot-boundp): Minor CSE simplification.
20759 2011-05-05  Milan Zamazal  <pdm@zamazal.org>
20761         * progmodes/glasses.el (glasses-separate-capital-groups): New option.
20762         (glasses-make-readable): Use glasses-separate-capital-groups.
20764 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
20766         * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
20767         (warning-series): Doc fix.
20768         (display-warning): Don't try to create the buffer if we just found it.
20770 2011-05-04  Chong Yidong  <cyd@stupidchicken.com>
20772         * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
20773         (autoload-find-generated-file): New function.
20774         (generate-file-autoloads): Bind generated-autoload-file to
20775         buffer-file-name.
20776         (update-file-autoloads, update-directory-autoloads):
20777         Use autoload-find-generated-file.  If called interactively, prompt for
20778         output file (Bug#7989).
20779         (batch-update-autoloads): Doc fix.
20781 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
20783         * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
20785 2011-05-04  Glenn Morris  <rgm@gnu.org>
20787         * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
20788         function, so it follows changes in calendar-date-style.
20789         (diary-fancy-date-matcher): New function.
20790         (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
20791         (diary-fancy-font-lock-fontify-region-function):
20792         Use diary-fancy-date-pattern as a function.
20794         * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
20795         non-numbers for `year' etc pseudo-variables.  (Bug#8583)
20797 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
20799         * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
20800         instead of positional arguments.  Allow :keylist and :crlfiles
20801         arguments.
20802         (open-gnutls-stream): Call it.
20804         * net/network-stream.el (network-stream-open-starttls): Adjust to
20805         call `gnutls-negotiate' with :process and :hostname arguments.
20807 2011-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
20809         * minibuffer.el (completion--message): New function.
20810         (completion--do-completion, minibuffer-complete)
20811         (minibuffer-force-complete, minibuffer-complete-word): Use it.
20812         (completion--do-completion): Don't ignore completion-auto-help when in
20813         icomplete-mode.
20815         * whitespace.el (whitespace-trailing-regexp): Don't rely on the
20816         internal encoding (e.g. tibetan zero is not whitespace).
20817         (global-whitespace-mode): Prefer save-current-buffer.
20818         (whitespace-trailing-regexp): Remove useless save-match-data.
20819         (whitespace-empty-at-bob-regexp): Minor simplification.
20821 2011-05-03  Chong Yidong  <cyd@stupidchicken.com>
20823         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
20825 2011-05-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
20827         * textmodes/ispell.el (ispell-add-per-file-word-list):
20828         Use `concat' to create string for insertion.
20830 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20832         * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
20833         Avoid open-line which runs post-self-insert-hook.
20834         (bibtex-fill-entry): Remove unused `end' var.
20836 2011-05-03  Dirk Ullrich  <dirk.ullrich@googlemail.com>  (tiny change)
20838         * textmodes/ispell.el (ispell-add-per-file-word-list):
20839         Protect against `nil' value of `comment-start' (Bug#8579).
20841 2011-05-03  Leo Liu  <sdl.web@gmail.com>
20843         * isearch.el (isearch-yank-pop): New command.
20844         (isearch-mode-map): Bind it to `M-y'.
20845         (isearch-forward): Mention it.
20847 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20849         * simple.el (minibuffer-complete-shell-command): Remove.
20850         (minibuffer-local-shell-command-map): Use completion-at-point.
20851         (read-shell-command): Setup completion vars here instead.
20852         (read-expression-map): Bind TAB to symbol completion.
20854         * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
20855         error directly rather via storing it into `results'.
20857 2011-05-02  Leo Liu  <sdl.web@gmail.com>
20859         * vc/diff.el: Fix description.
20861 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20863         * server.el (server-eval-at): New function.
20865 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20867         * net/network-stream.el (open-network-stream): Take a :nowait
20868         parameter and pass it on to `make-network-process'.
20869         (network-stream-open-plain): Ditto.
20871 2011-04-30  Andreas Schwab  <schwab@linux-m68k.org>
20873         * faces.el (face-spec-set-match-display): Don't match toolkit
20874         options on terminal frames.
20876 2011-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
20878         * progmodes/pascal.el: Use lexical binding.
20879         (pascal-mode-map): Remove author preferences.
20881         * pcomplete.el (pcomplete-std-complete): Don't abuse
20882         completion-at-point.
20884 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
20886         * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
20887         removing code that has been dead since 1991 or so.
20889         * startup.el (command-line): When warning about "_emacs", use a
20890         delayed warning to allow the user to filter it out.
20892 2011-04-28  Deniz Dogan  <deniz@dogan.se>
20894         * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
20895         user has not joined.
20897 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
20899         * pcomplete.el (pcomplete-completions-at-point): Return nil if there
20900         aren't any completions at point.
20902 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
20904         * subr.el (display-delayed-warnings): New function.
20905         (delayed-warnings-hook): New variable.
20907 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
20909         * minibuffer.el (completion-at-point, completion-help-at-point):
20910         Don't presume that a given completion-at-point-function will always
20911         use the same calling convention.
20913         * pcomplete.el (pcomplete-completions-at-point):
20914         Obey pcomplete-ignore-case.  Don't call pcomplete-norm-func unless
20915         pcomplete-seen is non-nil.
20916         (pcomplete-comint-setup): Also recognize the new comint/shell
20917         completion functions.
20918         (pcomplete-do-complete): Don't call pcomplete-norm-func unless
20919         pcomplete-seen is non-nil.
20921 2011-04-27  Niels Giesen  <niels.giesen@gmail.com>
20923         * calendar/icalendar.el (diary-lib): Add require statement.
20924         (icalendar--create-uid): Read out a uid from a text-property on
20925         the first character in the entry.  This allows for code to add its
20926         own uid to the entry.
20927         (icalendar--convert-float-to-ical): Add export of
20928         `diary-float'-entries save for those with the optional DAY
20929         argument.
20931 2011-04-27  Daniel Colascione  <dan.colascione@gmail.com>
20933         * subr.el (shell-quote-argument): Use alternate escaping strategy
20934         when we spot a variable reference in a string.
20936 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
20938         * cus-start.el (all): Define customization for debug-on-event.
20940 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
20942         * subr.el (shell-quote-argument): Escape correctly under Windows.
20944 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
20946         * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
20948 2011-04-25  Michael Albinus  <michael.albinus@gmx.de>
20950         * net/tramp.el (tramp-process-actions): Add POS argument.
20951         Delete region between POS and (pos).
20953         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
20954         Use `nil' position in `tramp-process-actions' call.
20955         (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
20957         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
20958         position in `tramp-process-actions' call.
20960         * net/trampver.el: Update release number.
20962 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
20964         * custom.el (defcustom): Obey lexical-binding.
20966         Fix octave-inf completion problems reported by Alexander Klimov.
20967         * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
20968         Inherit from octave-mode-syntax-table.
20969         (inferior-octave-mode): Set info-lookup-mode.
20970         (inferior-octave-completion-at-point): New function.
20971         (inferior-octave-complete): Use it and completion-in-region.
20972         (inferior-octave-dynamic-complete-functions): Use it as well, and use
20973         comint-filename-completion.
20974         * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
20975         symbol elements which shouldn't be word elements.
20976         (octave-font-lock-keywords, octave-beginning-of-defun)
20977         (octave-function-header-regexp): Adjust regexps accordingly.
20978         (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
20980 2011-04-25  Juanma Barranquero  <lekktu@gmail.com>
20982         * net/gnutls.el (gnutls-errorp): Declare before first use.
20984 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
20986         * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
20987         verify-error, and verify-hostname-error parameters.  Check whether
20988         default trustfile exists before going to use it.  Add missing
20989         argument to gnutls-message-maybe call.  Return value.
20990         Reported by Claudio Bley <claudio.bley@gmail.com>.
20991         (open-gnutls-stream): Add usage example.
20993         * net/network-stream.el (network-stream-open-starttls): Give host
20994         parameter to `gnutls-negotiate'.
20995         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
20996         * subr.el (shell-quote-argument): Escape correctly under Windows.
20998 2011-04-24  Daniel Colascione  <dan.colascione@gmail.com>
21000         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
21001         Use correct match group (bug#8438).
21003 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
21005         * emacs-lisp/package.el (package-built-in-p): Fix typo.
21006         (package-menu--generate): New arg specifying packages to show.
21007         (package-menu-refresh, package-menu-execute, list-packages):
21008         Callers changed.
21009         (package-show-package-list): New function, replacing deleted
21010         package--list-packages (renamed because it is non-internal).
21012         * finder.el (finder-list-matches): Use package-show-package-list
21013         instead of deleted package--list-packages.
21015         * vc/vc-annotate.el (vc-annotate-goto-line): New command.
21016         Based on a previous implementation by Juanma Barranquero (Bug#8366).
21017         (vc-annotate-mode-map): Bind it to RET.
21019 2011-04-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
21021         * progmodes/etags.el (next-file): Don't use set-buffer to change
21022         buffers (Bug#8478).
21024 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
21026         * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
21028         * apropos.el (apropos-label-face): Avoid variable-pitch face.
21029         (apropos-accumulator): Doc fix.
21030         (apropos-function, apropos-macro, apropos-command)
21031         (apropos-variable, apropos-face, apropos-group, apropos-widget)
21032         (apropos-plist): Add face property.
21033         (apropos-symbols-internal): Fix indentation.
21034         (apropos-print): Simplify help, and recognize apropos-multi-type.
21035         (apropos-print-doc): Use button-type-get to extract the button's
21036         face property.  Fill docstring (Bug#8352).
21038 2011-04-23  Juanma Barranquero  <lekktu@gmail.com>
21040         * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
21042         * play/mpuz.el (mpuz-silent): Doc fix.
21043         (mpuz-mode-map): Use mapc.
21044         (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
21045         (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
21046         Fix typos in docstrings.
21048         * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
21049         (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
21051         * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
21053 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
21055         * minibuffer.el (completion--do-completion): Avoid the "Next char
21056         not unique" prompt if icomplete-mode is enabled (Bug#5849).
21058         * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
21059         mouse-2 into unread-command-events, it is interpreted correctly.
21061         * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
21062         (image-toggle-display): Doc fix.
21064 2011-04-23  Stephen Berman  <stephen.berman@gmx.net>
21066         * textmodes/page.el (what-page): Use line-number-at-pos to
21067         calculate line number (Bug#6825).
21069 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
21071         * eshell/esh-mode.el (find-tag-interactive): Declare function.
21072         (eshell-find-tag): Remove `with-no-warnings', unneeded now.
21073         Pass argument NO-DEFAULT to `find-tag-interactive'.
21075 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
21077         Lexical-binding cleanup.
21079         * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
21080         (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
21081         * progmodes/ada-prj.el (ada-prj-initialize-values)
21082         (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
21083         (ada-prj-show-value):
21084         * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
21085         * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
21086         (antlr-invalidate-context-cache, antlr-options-menu-filter)
21087         (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
21088         * progmodes/bug-reference.el (bug-reference-push-button):
21089         * progmodes/fortran.el (fortran-line-length):
21090         * progmodes/glasses.el (glasses-change):
21091         * progmodes/octave-mod.el (octave-fill-paragraph):
21092         * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
21093         (python-pdbtrack-grub-for-buffer, python-sentinel):
21094         * progmodes/sql.el (sql-save-connection):
21095         * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
21096         * progmodes/xscheme.el (xscheme-enter-debugger-mode):
21097         Mark unused parameters.
21099         * progmodes/compile.el (compilation--flush-directory-cache)
21100         (compilation--flush-parse, compile-internal): Mark unused parameters.
21101         (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
21102         (compilation-next-error-function): Remove unused variable `timestamp'.
21104         * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
21105         (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
21107         * progmodes/dcl-mode.el (dcl-end-of-command):
21108         Remove unused variable `start'.
21109         (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
21110         (dcl-option-value-basic, dcl-option-value-offset)
21111         (dcl-option-value-margin-offset, dcl-option-value-comment-line):
21112         Mark unused parameters.
21113         (dcl-save-local-variable): Remove unused variable `val'.
21114         (mode): Declare.
21116         * progmodes/delphi.el (delphi-save-state, delphi-after-change):
21117         Mark unused parameters.
21118         (delphi-ignore-changes): Move before first use.
21119         (delphi-charset-token-at): Remove unused variable `start'.
21120         (delphi-else-start): Remove unused variable `if-count'.
21121         (delphi-comment-block-start, delphi-comment-block-end):
21122         Remove unused variable `kind'.
21123         (delphi-indent-line): Remove unused variable `new-point'.
21125         * progmodes/ebrowse.el (ebrowse-files-list)
21126         (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
21127         Mark unused parameters.  Don't quote `lambda'.
21128         (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
21129         Don't quote `lambda'.
21130         (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
21131         (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
21132         (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
21133         (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
21134         Use `ignore-errors'.
21135         (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
21136         (ebrowse-view/find-file-and-search-pattern)
21137         (ebrowse-view/find-member-declaration/definition):
21138         Rename parameter TAGS-FILE-NAME to TAGS-FILE.
21139         (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
21140         Rename parameter PREFIX-ARG to PREFIX.
21141         (ebrowse-tags-read-name): Remove unused variables `start' and
21142         `member-info'.
21143         (ebrowse-display-member-buffer): Rename variable `tags-file-name'
21144         to `tags-file'.
21146         * progmodes/etags.el (local-find-tag-hook): Declare.
21147         (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
21148         Mark unused parameters.
21150         * progmodes/executable.el (compilation-error-regexp-alist): Declare.
21151         (executable-interpret): Mark unused parameter.
21153         * progmodes/flymake.el (flymake-process-sentinel)
21154         (flymake-after-change-function)
21155         (flymake-create-temp-with-folder-structure)
21156         (flymake-get-include-dirs-dot): Mark unused parameters.
21157         (flymake-safe-delete-directory): Remove unused variable `err'.
21159         * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
21160         (speedbar-timer-fn, speedbar-line-text)
21161         (speedbar-change-expand-button-char, speedbar-delete-subblock)
21162         (speedbar-center-buffer-smartly): Declare functions.
21163         (gdb-find-watch-expression): Remove unused variable `array'.
21164         (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
21165         (gdb-starting): Mark unused parameters.
21166         (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
21167         (gdb-table-string): Remove unused variable `res'.
21168         (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
21169         (gdb-disassembly-handler-custom): Remove unused variable `pos'.
21170         (gdb-display-buffer): Remove unused variable `cur-size'.
21172         * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
21173         allow lexical-binding compilation.
21174         (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
21175         (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
21176         (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
21177         Mark unused parameters.
21178         (gud-gdb-marker-filter): Remove unused variable `match'.
21179         (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
21180         lambda expressions and funcall them, instead of using `fset'.
21182         * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
21183         HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
21185         * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
21186         variable `header-beg'; use `let'.
21188         * progmodes/icon.el (indent-icon-exp): Remove unused variables
21189         `restart', `last-sexp' and `at-do'.
21191         * progmodes/js.el (js--debug): Mark unused parameter.
21192         (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
21193         (js--splice-into-items): Remove unused variable `item'.
21194         (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
21196         * progmodes/make-mode.el (makefile-make-font-lock-keywords):
21197         Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
21198         (makefile-complete): Remove unused variable `try'.
21199         (makefile-fill-paragraph, makefile-match-function-end):
21200         Mark unused parameters.
21202         * progmodes/octave-inf.el (inferior-octave-complete):
21203         Remove unused variable `proc'.
21204         (inferior-octave-output-digest): Mark unused parameter.
21206         * progmodes/perl-mode.el (perl-calculate-indent):
21207         Remove unused variable `err'.
21209         * progmodes/prolog.el (prolog-mode-keybindings-inferior)
21210         (prolog-indent-line): Mark unused parameters.
21211         (prolog-indent-line): Remove unused variable `beg'.
21213         * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
21214         (reporter-dont-compact-list): Declare.
21216         * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
21217         Remove unused variable `char'.
21218         (sh-debug): Mark unused parameter.
21219         (sh-get-indent-info): Remove unused variable `start'.
21220         (sh-calculate-indent): Remove unused variable `var'.
21222         * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
21223         (simula-electric-keyword): Remove unused variable `null'.
21224         (simula-search-backward, simula-search-forward): Remove unused
21225         variables `begin' and `end'.
21227         * progmodes/vera-mode.el (vera-guess-basic-syntax):
21228         Remove unused variable `pos'.
21229         (vera-electric-tab, vera-comment-uncomment-region):
21230         Mark unused parameters.
21231         (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
21233 2011-04-22  Chong Yidong  <cyd@stupidchicken.com>
21235         * emacs-lisp/package.el (package--builtins, package-alist)
21236         (package-load-descriptor, package-built-in-p, package-activate)
21237         (define-package, package-installed-p)
21238         (package-compute-transaction, package-buffer-info)
21239         (package--push): Doc fix.  Distinguish more clearly between
21240         version strings and version lists.
21242 2011-04-21  Juanma Barranquero  <lekktu@gmail.com>
21244         Lexical-binding cleanup.
21246         * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
21247         (5x5-make-mutate-best):
21248         * play/fortune.el (fortune-in-buffer):
21249         * play/gomoku.el (gomoku-init-display):
21250         * play/solitaire.el (solitaire, solitaire-do-check):
21251         * play/tetris.el (tetris-default-update-speed-function):
21252         Mark unused parameters.
21254         * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
21255         (bubbles--shift): Remove unused variable `char-org'.
21256         (bubbles--set-faces): Remove unused variable `fg-col'.  Simplify.
21257         (bubbles--show-images): Remove unused variable `char'.
21259         * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
21260         (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
21261         (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
21262         (decipher-analyze-buffer): Use ?\s.
21263         (decipher-make-checkpoint): Remove unused variable `mapping'.
21265         * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
21267         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
21268         Remove unused variable `result'; use `let'.
21270         * play/gametree.el (gametree-current-layout, gametree-apply-layout):
21271         Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
21272         (gametree-children-shown-p, gametree-compute-reduced-score):
21273         Use `ignore-errors'.
21275         * play/handwrite.el (ps-lpr-switches): Declare.
21276         (handwrite): Remove unused variables `pmin' and `lastp'.
21278         * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
21280         * play/landmark.el (landmark-init-display)
21281         (landmark-update-naught-weights): Mark unused parameters.
21282         (landmark-y): Remove unused variable `noise'.  Simplify.
21283         (landmark-human-plays): Remove unused variable `score'.
21285         * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
21286         (mpuz-try-proposal): Remove unused variable `game'.
21288         * play/zone.el (life-patterns): Declare.
21290 2011-04-20  Juanma Barranquero  <lekktu@gmail.com>
21292         * vc/vc.el (ediff-vc-internal): Declare function.
21294 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21296         * shell.el: Use lexical-binding and std completion UI.
21297         (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
21298         (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
21299         comint-preoutput-filter-functions rather than on
21300         comint-output-filter-functions.
21301         (shell-command-completion, shell--command-completion-data)
21302         (shell-filename-completion, shell-environment-variable-completion)
21303         (shell-c-a-p-replace-by-expanded-directory): New functions.
21304         (shell-dynamic-complete-functions, shell-dynamic-complete-command)
21305         (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
21306         (shell-dynamic-complete-environment-variable): Use them.
21307         (shell-dynamic-complete-as-environment-variable)
21308         (shell-dynamic-complete-as-command): Remove.
21309         (shell-match-partial-variable): Match past point.
21310         * comint.el: Clean up use of completion-at-point-functions.
21311         (comint-completion-at-point): New function.
21312         (comint-mode): Use it completion-at-point-functions.
21313         (comint-dynamic-complete): Make it obsolete.
21314         (comint-replace-by-expanded-history-before-point): Add dry-run arg.
21315         (comint-c-a-p-replace-by-expanded-history): New function.
21316         (comint-dynamic-complete-functions)
21317         (comint-replace-by-expanded-history): Use it.
21318         * minibuffer.el (completion-table-with-terminator): Allow dynamic
21319         termination strings.  Try harder to avoid second try-completion.
21320         (completion-in-region-mode-map): Disable bindings that don't work yet.
21322         * comint.el: Use lexical-binding.  Require CL.
21323         (comint-dynamic-complete-functions): Use comint-filename-completion.
21324         (comint-completion-addsuffix): Tweak custom type.
21325         (comint-filename-completion, comint--common-suffix)
21326         (comint--common-quoted-suffix, comint--table-subvert)
21327         (comint--complete-file-name-data): New functions.
21328         (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
21329         (comint-dynamic-list-filename-completions): Use them.
21330         (comint-dynamic-simple-complete): Make obsolete.
21332         * minibuffer.el (completion-in-region-mode):
21333         Keep completion-in-region-mode--predicate global.
21334         (completion-in-region--postch):
21335         Assume completion-in-region-mode--predicate is not null.
21337         * progmodes/flymake.el (flymake-start-syntax-check-process):
21338         Obey `dir'.  Simplify.
21340         * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
21341         we're in VC after all.
21343 2011-04-20  Christoph Scholtes  <cschol2112@googlemail.com>
21345         * vc/vc.el (vc-diff-build-argument-list-internal)
21346         (vc-version-ediff, vc-ediff): New commands.
21347         (vc-version-diff): Use vc-diff-build-argument-list-internal.
21349 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21351         * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
21352         add sanity check.
21354         * obsolete/erc-hecomplete.el: Make obsolete.
21355         * obsolete/: Standardize obsolescence info in the header.
21357 2011-04-20  Glenn Morris  <rgm@gnu.org>
21359         * calendar/solar.el (solar-horizontal-coordinates):
21360         Use the longitude argument rather than `calendar-longitude'.
21361         (solar-date-next-longitude): Remove unused locals.
21363 2011-04-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
21365         * whitespace.el: New version 13.2.1.
21367 2011-04-20  felix  <EmacsWiki>  (tiny change)
21369         * whitespace.el (global-whitespace-mode): Keep highlight when
21370         switching between major modes on a file.
21372 2011-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
21374         * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
21375         (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
21376         multi-line comments as well.
21378 2011-04-19  Juanma Barranquero  <lekktu@gmail.com>
21380         Lexical-binding cleanup.
21382         * arc-mode.el (archive-mode-revert):
21383         * cmuscheme.el (scheme-interactively-start-process):
21384         * custom.el (custom-initialize-delay):
21385         * dnd.el (dnd-open-local-file, dnd-open-remote-url):
21386         * dos-w32.el (direct-print-region-helper, direct-print-region-function):
21387         * emacs-lock.el (emacs-lock-clear-sentinel):
21388         * ezimage.el (defezimage):
21389         * follow.el (follow-avoid-tail-recenter):
21390         * fringe.el (set-fringe-mode-1):
21391         * generic-x.el (bat-generic-mode-compile):
21392         * help-mode.el (help-info-variable, help-do-xref)
21393         (help-mode-revert-buffer):
21394         * help.el (view-emacs-todo):
21395         * iswitchb.el (iswitchb-completion-help):
21396         * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
21397         * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
21398         (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
21399         * locate.el (locate-update):
21400         * longlines.el (longlines-encode-region)
21401         (longlines-after-change-function):
21402         * outline.el (outline-isearch-open-invisible):
21403         * ps-def.el (declare-function, charset-dimension, char-width)
21404         (encode-char):
21405         * ps-mule.el (ps-mule-plot-string):
21406         * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
21407         (recentf-edit-list-select, recentf-edit-list-validate)
21408         (recentf-open-files-action):
21409         * rect.el (delete-whitespace-rectangle-line)
21410         (rectangle-number-line-callback):
21411         * register.el (window-configuration-to-register)
21412         (frame-configuration-to-register):
21413         * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
21414         * select.el (xselect-convert-to-string, xselect-convert-to-length)
21415         (xselect-convert-to-targets, xselect-convert-to-delete)
21416         (xselect-convert-to-filename, xselect-convert-to-charpos)
21417         (xselect-convert-to-lineno, xselect-convert-to-colno)
21418         (xselect-convert-to-os, xselect-convert-to-host)
21419         (xselect-convert-to-user, xselect-convert-to-class)
21420         (xselect-convert-to-name, xselect-convert-to-integer)
21421         (xselect-convert-to-atom, xselect-convert-to-identity):
21422         * subr.el (declare, ignore, process-kill-without-query)
21423         (text-clone-maintain):
21424         * terminal.el (te-get-char, te-tic-sentinel):
21425         * tool-bar.el (tool-bar-make-keymap):
21426         * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
21427         * type-break.el (type-break-mode, type-break-noninteractive-query):
21428         * view.el (View-back-to-mark):
21429         * wid-browse.el (widget-browse-action, widget-browse-widget)
21430         (widget-browse-widgets, widget-browse-sexp):
21431         * widget.el (define-widget-keywords):
21432         * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
21433         Mark unused parameters.
21435         * align.el (align-adjust-col-for-rule): Mark unused parameter.
21436         (align-areas): Remove unused variable `look'.
21437         (align-region): Remove unused variables `real-end' and `pos-list'.
21439         * apropos.el (apropos-score-doc): Remove unused variable `i'.
21441         * bindings.el (mode-line-modified, mode-line-remote):
21442         Mark unused parameters.
21443         (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
21445         * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
21446         (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
21448         * comint.el (comint-history-isearch-pop-state)
21449         (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
21450         (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
21451         (comint-substitute-in-file-name): Doc fix.
21453         * completion.el (cmpl-statistics-block): Mark unused parameter.
21454         (add-completions-from-tags-table, add-completions-from-lisp-buffer)
21455         (save-completions-to-file, load-completions-from-file):
21456         Remove unused local variable `e'.
21458         * composite.el (compose-chars): Remove unused variable `len'.
21459         (lgstring-insert-glyph): Remove unused variable `g'.
21460         (compose-glyph-string): Remove unused variables `ascent',
21461         `descent', `lbearing' and `rbearing'.
21462         (compose-glyph-string-relative): Remove unused variables
21463         `lbearing', `rbearing' and `wadjust'.
21464         (compose-gstring-for-graphic): Remove unused variables `header',
21465         `wadjust', `xoff' and `yoff'.  Use `let', not `let*'.
21466         (compose-gstring-for-terminal): Remove unused variables `header'
21467         and `nchars'.  Use `let', not `let*'.
21469         * cus-edit.el (Custom-set, Custom-save, custom-reset)
21470         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
21471         (Custom-buffer-done, custom-buffer-create-internal)
21472         (custom-browse-visibility-action, custom-browse-group-tag-action)
21473         (custom-browse-variable-tag-action, custom-browse-face-tag-action)
21474         (widget-magic-mouse-down-action, custom-toggle-parent)
21475         (custom-add-parent-links, custom-toggle-hide-variable)
21476         (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
21477         (custom-toggle-hide-face, face, hook, custom-group-link-action)
21478         (custom-face-menu-create, custom-variable-menu-create, get)
21479         (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
21480         (custom-reset-standard-save-and-update): Remove unused variable `value'.
21481         (customize-apropos): Remove unused variable `tests'.
21482         (custom-group-value-create): Remove unused variable `hidden-p'.
21483         (sort-fold-case): Declare.
21485         * cus-theme.el (custom-reset-standard-faces-list)
21486         (custom-reset-standard-variables-list): Declare.
21487         (customize-create-theme, custom-theme-revert, custom-theme-write)
21488         (custom-theme-choose-mode, customize-themes, custom-theme-save):
21489         Mark unused parameters.
21491         * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
21493         * delim-col.el (delimit-columns-max): Move defvar before first use.
21495         * descr-text.el (describe-char-categories): Don't quote `lambda'.
21496         (describe-char): Don't quote `lambda'.  Mark unused parameter.
21498         * desktop.el (desktop-save-buffer-p): Mark unused parameter.
21499         (auto-insert): Declare.
21500         (desktop-restore-file-buffer): Rename desktop-* parameters;
21501         mark unused ones.
21502         (desktop-create-buffer): Rename desktop-* parameters and bind them.
21503         (desktop-buffer): Rename desktop-* parameters.
21505         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
21506         (dframe-reposition-frame-xemacs, dframe-help-echo)
21507         (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
21508         Mark unused parameters.
21510         * dired-aux.el (backup-extract-version-start, overwrite-query)
21511         (overwrite-backup-query, rename-regexp-query)
21512         (rename-non-directory-query): Declare.
21513         (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
21514         (dired-add-entry): Remove unused variable `orig-file-name'.
21515         (dired-copy-file-recursive): Remove unused variable `dirfailed'.
21516         Use parameter PRESERVE-TIME instead of accessing dynamic variable
21517         `dired-copy-preserve-time' directly.
21518         (dired-do-create-files-regexp): Remove unused variable `fn-count'.
21519         (dired-insert-subdir-newpos): Rename unused variable `pos'.
21521         * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
21522         (dired-virtual-revert, dired-make-relative-symlink):
21523         Mark unused parameters.
21524         (manual-program): Declare.
21525         (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
21526         (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
21527         wrapped in `with-no-warnings' to avoid replacing one warning by another.
21529         * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
21531         * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
21533         * echistory.el (electric-history-in-progress, Helper-return-blurb):
21534         Declare.
21536         * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
21538         * electric.el (Electric-command-loop): Rename parameter
21539         INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
21541         * expand.el (expand-in-literal): Remove unused variable `here'.
21543         * facemenu.el (facemenu-add-new-color):
21544         Remove unused variable `docstring'.
21546         * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
21547         (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
21548         (face-attr-construct): Mark unused parameter.  Doc fix.
21549         (read-color): Remove unused variable `hex-string'.
21551         * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
21552         (locate-dominating-file): Remove unused vars `prev-file' and `user'.
21553         (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
21554         (display-buffer-other-frame): Remove unused variable `old-window'.
21555         (kill-buffer-hook): Declare.
21556         (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
21557         Mark unused parameters.
21558         (after-find-file): Pass 1 to `auto-save-mode', not t.
21560         * files-x.el (auto-insert): Declare.
21561         (modify-file-local-variable-prop-line): Remove unused variable `val'.
21563         * find-lisp.el (find-lisp-find-dired-internal): Remove unused
21564         variable `buf'.  Mark unused parameter.
21565         (find-lisp-insert-directory): Mark unused parameter.
21567         * format.el (format-decode-run-method): Mark unused parameter; doc fix.
21568         (format-encode-region): Remove unused variables `cur-buf' and `result'.
21569         (format-common-tail): Remove, unused.
21570         (format-deannotate-region): Remove unused variable `loc'.
21571         (format-annotate-region): Remove unused variable `p'.
21572         (format-annotate-single-property-change): Remove unused variables
21573         `default' and `tail'.
21575         * forms.el (read-file-filter): Declare.
21576         (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
21578         * frame.el (frame-creation-function-alist): Mark unused parameter.
21579         (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
21581         * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
21582         Remove unused parameters.
21583         (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
21584         (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
21586         * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
21587         (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
21588         (hfy-prepare-tag-map): Mark unused parameters.
21589         (htmlfontify-buffer): Use `called-interactively-p'.
21591         * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
21592         (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
21593         (ibuffer-do-occur): Mark unused parameters.
21594         (ibuffer-forward-next-marked): Remove unused variable `curmark'.
21595         (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
21597         * ibuffer.el: Don't quote `lambda'.
21598         (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
21599         (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
21600         Mark unused parameters.
21602         * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
21603         (ido-completing-read): Mark unused parameters.
21604         (ido-copy-current-word): Mark unused parameters;
21605         remove unused variable `name'.
21606         (ido-sort-merged-list): Remove unused parameter `dirs'.
21608         * ielm.el (ielm-input-sender): Mark unused parameter.
21609         (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
21610         (ielm-output, ielm-wbuf, ielm-pmark): Declare.
21611         (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
21612         `ielm-string' as a dynamic variable accessible from the IELM prompt.
21613         Bind `ielm-string' to INPUT-STRING.  Remove unused variable `err'.
21615         * image-dired.el (image-dired-display-thumbs): Remove unused
21616         variables `curr-file' and `count'.
21617         (image-dired-remove-tag): Remove unused variable `start'.
21618         (image-dired-tag-files, image-dired-create-thumbs): Remove unused
21619         variable `curr-file'
21620         (image-dired-rotate-original): Remove unused variable `temp-file'.
21621         (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
21622         Remove unused variable `file'.
21623         (image-dired-gallery-generate): Remove unused variable `curr'.
21624         (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
21626         * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
21628         * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
21630         * informat.el (texinfo-command-start, texinfo-command-end): Declare.
21632         * isearch.el (minibuffer-history-symbol): Declare.
21633         (isearch-edit-string): Remove unused variable `err'.
21634         (isearch-message-prefix, isearch-message-suffix):
21635         Mark unused parameters.
21637         * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
21639         * macros.el (insert-kbd-macro): Remove unused variable `mods'.
21641         * makesum.el (double-column): Remove unused variable `cnt'.
21643         * misearch.el (multi-isearch-pop-state): Mark unused parameter.
21644         (ido-ignore-item-temp-list): Declare.
21646         * mouse-drag.el (mouse-drag-throw): Remove unused variables
21647         `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
21648         `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
21649         (mouse-drag-drag): Remove unused variables `mouse-delta' and
21650         `mouse-col-delta'.
21652         * mouse-sel.el (mouse-extend-internal):
21653         Remove unused variable `orig-window-frame'.
21655         * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
21656         (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
21657         Move declarations before first use.
21658         (pcomplete-opt): Mark unused parameters; doc fix.
21660         * proced.el (proced-revert): Mark unused parameter.
21661         (proced-send-signal): Remove unused variable `err'.
21663         * ps-print.el (ps-print-preprint-region, ps-print-preprint):
21664         Rename parameter PREFIX-ARG to ARG.
21665         (ps-basic-plot-string, ps-basic-plot-whitespace):
21666         Mark unused parameters.
21668         * replace.el (replace-count): Define.
21669         (occur-revert-function): Mark unused parameters.
21670         (ido-ignore-item-temp-list, isearch-error, isearch-forward)
21671         (isearch-case-fold-search, isearch-string): Declare.
21672         (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
21673         bind `case-fold-search'.  Remove unused variables `beg' and `end',
21674         and simplify.
21675         (replace-eval-replacement): Rename parameter REPLACE-COUNT to
21676         COUNT and bind `replace-count'.
21677         (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
21678         to COUNT.
21680         * savehist.el (print-readably, print-string-length): Declare.
21682         * shadowfile.el (shadow-expand-cluster-in-file-name):
21683         Remove unused variable `cluster'.
21684         (shadow-copy-file): Remove unused variable `i'.
21685         (shadow-noquery, shadow-clusters, shadow-site-cluster)
21686         (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
21687         (shadow-define-literal-group, shadow-define-regexp-group)
21688         (shadow-make-group, shadow-shadows-of): Clean up docstrings.
21690         * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
21691         (shell): Use `called-interactively-p'.
21692         (shell-directory-tracker): Remove unused variable `chdir-failure'.
21694         * simple.el (compilation-context-lines, comint-file-name-quote-list)
21695         (comint-file-name-chars, comint-delimiter-argument-list): Declare.
21696         (delete-backward-char): Remove unused variable `ocol'.
21697         (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
21698         (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
21699         (event-apply-hyper-modifier, event-apply-shift-modifier)
21700         (event-apply-control-modifier, event-apply-meta-modifier):
21701         Mark unused parameters.
21702         (undo-make-selective-list): Remove duplicate variable `undo-elt'.
21703         (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
21705         * speedbar.el (speedbar-ignored-directory-expressions)
21706         (speedbar-supported-extension-expressions, speedbar-directory-buttons)
21707         (speedbar-find-file, speedbar-dir-follow)
21708         (speedbar-directory-buttons-follow, speedbar-tag-find)
21709         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
21710         (speedbar-buffers-line-directory, speedbar-buffer-click):
21711         Mark unused parameters.
21712         (speedbar-tag-file): Remove unused variable `mode'.
21713         (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
21715         * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
21717         * talk.el (talk): Remove unused variable `display'.
21719         * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
21720         (tar-write-region-annotate): Mark unused parameter.
21722         * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
21723         (minutes, seconds, time-zone, day, year, monthname, month, dayname):
21724         Declare them, wrapped in `with-no-warnings' to avoid replacing one
21725         warning by another.
21727         * time-stamp.el (time-stamp-string-preprocess):
21728         Remove unused variable `require-padding'.
21730         * tree-widget.el (widget-glyph-enable): Declare.
21731         (tree-widget-action): Mark unused parameter.
21733         * w32-fns.el (x-get-selection): Mark unused parameter.
21734         (autoload-make-program, generated-autoload-file): Declare.
21736         * wdired.el (wdired-revert): Mark unused parameters.
21737         (wdired-xcase-word): Remove unused variable `err'.
21739         * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
21740         (whitespace-help-scroll): Remove unused variable `data-help'.
21742         * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
21743         (widget-image-insert, widget-after-change, default)
21744         (widget-default-format-handler, widget-default-notify)
21745         (widget-default-prompt-value, widget-info-link-action)
21746         (widget-url-link-action, widget-function-link-action)
21747         (widget-variable-link-action, widget-file-link-action)
21748         (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
21749         (widget-field-prompt-internal, widget-field-action, widget-field-match)
21750         (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
21751         (widget-insert-button-action, widget-delete-button-action, visibility)
21752         (widget-documentation-link-action, widget-documentation-string-action)
21753         (widget-const-prompt-value, widget-regexp-match, symbol)
21754         (widget-coding-system-prompt-value)
21755         (widget-key-sequence-value-to-external, sexp)
21756         (widget-sexp-value-to-internal, character, vector, cons)
21757         (widget-choice-prompt-value, widget-boolean-prompt-value)
21758         (widget-color--choose-action): Mark unused parameters.
21759         (widget-item-match-inline, widget-choice-match-inline)
21760         (widget-checklist-match, widget-checklist-match-inline)
21761         (widget-group-match): Rename parameter VALUES to VALS.
21762         (widget-field-value-set): Remove unused variable `size'.
21763         (widget-color-action): Remove unused variables `value' and `start'.
21765         * windmove.el (windmove-wrap-loc-for-movement): Remove unused
21766         variable `dir'.  Doc fix.
21767         (windmove-find-other-window): Don't pass it.
21769         * window.el (count-windows): Mark unused parameter.
21770         (bw-adjust-window): Remove unused variable `err'.
21772         * woman.el (woman-file-name): Remove unused variable `default'.
21773         (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
21774         WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
21775         (global-font-lock-mode): Declare.
21776         (woman-decode-region): Mark unused parameter.
21777         (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
21779         * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
21780         (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
21781         (x-dnd-handle-moz-url): Remove unused variable `title'.
21782         (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
21784         * xml.el (xml-parse-tag, xml-parse-attlist):
21785         Remove unused variable `pos'.
21787 2011-04-19  Glenn Morris  <rgm@gnu.org>
21789         * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
21790         (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
21791         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
21792         (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
21793         * calendar/cal-html.el (cal-html-insert-minical):
21794         * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
21795         (calendar-mark-date-pattern):
21796         Prefix "unused" locals.
21798         * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
21799         optional argument `style'.
21801         * calendar/appt.el (appt-make-list):
21802         * calendar/cal-china.el (calendar-chinese-date-string):
21803         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
21804         (diary-hebrew-yahrzeit):
21805         * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
21806         * calendar/calendar.el (calendar-generate-window):
21807         * calendar/time-date.el (time-to-days):
21808         Remove unused local variables.
21810 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
21812         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
21813         glyphless-char-display table.
21814         (tabulated-list-glyphless-char-display): New var.
21816 2011-04-18  Sam Steingold  <sds@gnu.org>
21818         * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
21819         to acknowledgments.
21821 2011-04-17  Glenn Morris  <rgm@gnu.org>
21823         * calendar/diary-lib.el (diary-sexp-entry):
21824         * calendar/holidays.el (holiday-sexp):
21825         Set debug-on-error rather than the removed stack-trace-on-error.
21827 2011-04-16  Glenn Morris  <rgm@gnu.org>
21829         * progmodes/f90.el: Use lexical-binding.
21830         (f90-get-correct-indent): Remove unnecessary local variable `cont'.
21832 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21834         * mail/sendmail.el (mail-mode-map): Use completion-at-point.
21835         (mail-mode): Setup mailalias completion here instead.
21836         * mail/mailalias.el: Use lexical-binding.
21837         (pattern, mailalias-done): Declare dynamic.
21838         (mail-completion-at-point-function): New function, from mail-complete.
21839         (mail-complete): Use it.
21840         (mail-completion-expand): New function.
21841         (mail-get-names): Use it.
21842         (mail-directory, mail-directory-process, mail-directory-stream):
21843         Don't use `pattern' for lexically bound arg.
21845         * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
21847         * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
21848         (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
21849         (hfy-etags-cmd-alist): Don't eval-and-compile any more.
21851         * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
21852         (byte-save-window-excursion, byte-temp-output-buffer-setup)
21853         (byte-interactive-p): Define them again, for use when inlining
21854         old code.
21856 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
21858         * loadup.el: Use `string-to-number', not `string-to-int'.
21860 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21862         * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
21863         gud-gdb-complete-command.
21864         (gud-gdb-completions): New function, from gud-gdb-complete-command.
21865         (gud-gdb-completion-at-point): New function.
21866         (gud-gdb-completions): Remove.
21868 2011-04-14  Michael Albinus  <michael.albinus@gmx.de>
21870         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
21871         when the scripts fail.  Use `tramp-do-file-attributes-with-ls' then.
21872         (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
21873         whether `executable-find' is bound.
21875         * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
21877 2011-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
21879         * minibuffer.el (completion-in-region-mode-predicate)
21880         (completion-in-region-mode--predicate): New vars.
21881         (completion-in-region, completion-in-region--postch)
21882         (completion-in-region-mode): Use them.
21883         (completion--capf-wrapper): Also return the hook function.
21884         (completion-at-point, completion-help-at-point):
21885         Adjust and provide a predicate.
21887         Preserve arg names for advice of subr and lexical functions (bug#8457).
21888         * help-fns.el (help-function-arglist): Consolidate the subr and
21889         new-byte-code cases.  Add argument `preserve-names' to extract names
21890         from the docstring when needed.
21891         * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
21892         (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
21893         (ad-arglist): Use help-function-arglist's new arg.
21894         (ad-definition-type): Use cond.
21896 2011-04-13  Juanma Barranquero  <lekktu@gmail.com>
21898         * autorevert.el (auto-revert-handler):
21899         Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
21900         which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
21901         Don't quote lambda.
21903         * image-mode.el (image-transform-set-scale):
21904         Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
21906 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21908         * net/network-stream.el (network-stream-open-starttls): Only do
21909         opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
21910         Upgrades via gnutls-cli are too slow to be done opportunistically.
21912 2011-04-12  Juanma Barranquero  <lekktu@gmail.com>
21914         * dframe.el (dframe-current-frame): Remove spurious quote.
21916 2011-04-12  Glenn Morris  <rgm@gnu.org>
21918         * calendar/cal-tex.el (cal-tex-end-document):
21919         Try to automatically use latin1 input if needed.
21921         * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
21922         Don't try to cons a mark onto an empty element.
21924 2011-04-11  Leo Liu  <sdl.web@gmail.com>
21926         * ido.el (ido-buffer-internal): Allow method 'kill for virtual
21927         buffers.
21928         (ido-kill-buffer-at-head): Support killing virtual buffers.
21930 2011-04-10  Chong Yidong  <cyd@stupidchicken.com>
21932         * minibuffer.el (completion-show-inline-help): New var.
21933         (completion--do-completion, minibuffer-complete)
21934         (minibuffer-force-complete, minibuffer-complete-word):
21935         Inhibit minibuffer messages if completion-show-inline-help is nil.
21937         * icomplete.el (icomplete-mode): Bind completion-show-inline-help
21938         to avoid interference from inline help (Bug#5849).
21940 2011-04-10  Leo Liu  <sdl.web@gmail.com>
21942         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
21943         Fix typo.
21945 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
21947         * image-mode.el (image-toggle-display-image): Signal an error if
21948         not in Image mode.
21949         (image-transform-mode, image-transform-resize)
21950         (image-transform-set-rotation): Doc fix.
21951         (image-transform-set-resize): Delete.
21952         (image-transform-set-scale, image-transform-fit-to-height)
21953         (image-transform-fit-to-width): Handle image-toggle-display-image
21954         and image-transform-resize directly.
21956 2011-04-08  Sho Nakatani  <lay.sakura@gmail.com>
21958         * doc-view.el (doc-view-fit-width-to-window)
21959         (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
21960         New functions for fitting the shown image to the Emacs window size.
21961         (doc-view-mode-map): Add bindings for the new functions.
21963 2011-04-08  Juanma Barranquero  <lekktu@gmail.com>
21965         * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
21966         Fix typo in docstring.
21968 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
21970         * files.el (file-size-human-readable): Produce one digit after
21971         decimal, like "ls -lh" does.
21973         * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
21974         the file size representation.
21976         * simple.el (list-processes): If async subprocesses are not
21977         available, error out with a clear error message.
21979 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
21981         * help.el (help-form-show): New function, to be called from C.
21982         Put help-form output in a buffer named differently than *Help*.
21984 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
21986         * files.el (file-size-human-readable): New function.
21988         * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
21989         computing the representation inline.  Don't require `cl'.
21991 2011-04-08  Glenn Morris  <rgm@gnu.org>
21993         * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
21995         * net/browse-url.el (browse-url-firefox):
21996         Test system-type, not system-configuration.
21998         * vc/log-edit.el (log-edit-empty-buffer-p): New function.
21999         (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
22000         Use log-edit-empty-buffer-p.  (Bug#7598)
22002         * net/rlogin.el (rlogin-process-connection-type): Simplify.
22003         (rlogin-mode-map): Initialize in the defvar.
22004         (rlogin): Use ignore-errors.
22006         * replace.el (occur-mode-map): Some fixes for menu items.
22008 2011-04-07  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
22010         * play/morse.el (denato-region): Handle varying case.  (Bug#8386)
22012 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
22014         * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
22015         issuing unused warnings.
22017         * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
22018         macro directly.
22020         * simple.el: Lisp reimplement of list-processes.  Based on an
22021         earlier reimplementation by Leo Liu, but using tabulated-list.el.
22022         (process-menu-mode): New major mode.
22023         (list-processes--refresh, list-processes):
22024         (process-menu-visit-buffer): New functions.
22026         * files.el (save-buffers-kill-emacs): Don't assume any return
22027         value of list-processes, which is undocumented anyway.
22029 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
22031         * emacs-lisp/tabulated-list.el: New file.
22033         * emacs-lisp/package.el: Use Tabulated List mode.
22034         (package-menu-mode-map): Inherit from tabulated-list-mode-map.
22035         (package-menu-mode): Derive from tabulated-list-mode.  Set up the
22036         table format using Tabulated List mode variables.
22037         (package--push): New macro, replacing package-list-maybe-add.
22038         (package-menu--generate): Use package--push.  Renamed from
22039         package--generate-package-list.
22040         (package-menu-refresh, list-packages): Use it.
22041         (package-menu--print-info): Rename from package-print-package.
22042         Return insertion data instead of inserting it directly.
22043         (package-menu-describe-package, package-menu-execute):
22044         Use tabulated-list-get-id.
22045         (package-menu-mark-delete, package-menu-mark-install)
22046         (package-menu-mark-unmark, package-menu-backup-unmark)
22047         (package-menu-mark-obsolete-for-deletion):
22048         Use tabulated-list-put-tag.
22049         (package--list-packages, package-menu-revert)
22050         (package-menu-get-package, package-menu-get-version)
22051         (package-menu-sort-by-column): Functions deleted.
22052         (package-menu-package-list, package-menu-sort-key): Vars deleted.
22053         (package-menu--status-predicate, package-menu--version-predicate)
22054         (package-menu--name-predicate)
22055         (package-menu--description-predicate): Handle arguments in the
22056         Tabulated List format.
22057         (package-list-packages-no-fetch): Call list-packages.
22059 2011-04-06  Juanma Barranquero  <lekktu@gmail.com>
22061         * files.el (after-find-file-from-revert-buffer): Remove variable.
22062         (after-find-file): Don't bind it.
22063         (revert-buffer-in-progress-p): New variable.
22064         (revert-buffer): Bind it.
22065         Pass nil for `after-find-file-from-revert-buffer'.
22067         * saveplace.el (save-place-find-file-hook): Use new variable
22068         `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
22070 2011-04-06  Glenn Morris  <rgm@gnu.org>
22072         * Makefile.in (AUTOGEN_VCS): New variable.
22073         (autoloads): Use $AUTOGEN_VCS.
22075         * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
22076         * calendar/calendar.el (calendar-mode-map):
22077         Check for toolkit scroll bars.  (Bug#8305)
22079 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
22081         * minibuffer.el (completion-in-region--postch)
22082         (completion-in-region-mode): Remove unnecessary messages.
22084 2011-04-05  Juanma Barranquero  <lekktu@gmail.com>
22086         * font-lock.el (font-lock-refresh-defaults):
22087         Don't bind `hi-lock--inhibit-font-lock-hook', removed in
22088         2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
22090         * info.el (Info-directory-list, Info-read-node-name-2)
22091         (Info-split-parameter-string): Doc fixes.
22092         (Info-virtual-nodes): Reflow docstring.
22093         (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
22094         (Info-apropos-toc-nodes, info-finder, Info-get-token)
22095         (Info-find-emacs-command-nodes, Info-speedbar-key-map):
22096         Fix typos in docstrings.
22097         (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
22098         (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
22099         (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
22100         (Info-restore-desktop-buffer): Mark unused parameters.
22101         (Info-directory-find-file, Info-directory-find-node)
22102         (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
22103         (Info-virtual-index-find-node, Info-apropos-find-file)
22104         (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
22105         Mark unused parameters; fix typos in docstrings.
22106         (Info-virtual-index): Remove unused local variable `nodename'.
22108 2011-04-05  Deniz Dogan  <deniz@dogan.se>
22110         * net/rcirc.el: Update my e-mail address.
22111         (rcirc-mode-map): Remove M-o binding.
22113 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
22115         * startup.el (command-line): Save the cursor's theme-face
22116         directly, instead of using face-override-spec.
22118         * custom.el (load-theme): Minor optimization in assigning faces.
22120 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
22122         * help-fns.el (describe-variable): Complete all variables having
22123         documentation, including keywords.
22124         http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
22126 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
22128         Convert to lexical-binding.
22130         * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
22131         (bs--get-marked-string, bs--get-modified-string)
22132         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
22133         (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
22134         (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
22136         * ehelp.el (electric-help-execute-extended)
22137         (electric-help-ctrl-x-prefix):
22138         * hexl.el (hexl-revert-buffer-function):
22139         * linum.el (linum-after-change, linum-after-scroll):
22140         * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
22142         * help-fns.el (help-describe-category-set): Remove unused ERR variable.
22144 2011-04-04  Daiki Ueno  <ueno@unixuser.org>
22146         * epa-dired.el:
22147         * epa-mail.el:
22148         * epa-hook.el:
22149         * epa-file.el:
22150         * epa.el:
22151         * epg.el: Use lexical binding.
22153 2011-04-03  Chong Yidong  <cyd@stupidchicken.com>
22155         * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
22157         * textmodes/flyspell.el (flyspell-word): Recognize default
22158         dictionary case for flyspell-mark-duplications-exceptions.
22159         Use regexp matching for languages.
22160         (flyspell-mark-duplications-exceptions): Add "that" and "had" for
22161         default dictionary (Bug#7926).
22163 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
22165         * emacs-lisp/package.el (package--with-work-buffer):
22166         Recognize https URLs.
22168         * net/network-stream.el: Move from gnus/proto-stream.el.
22169         Change prefix to network-stream throughout.
22170         (open-protocol-stream): Merge into open-network-stream, leaving
22171         open-protocol-stream as an alias.  Handle nil BUFFER args.
22173         * subr.el (open-network-stream): Move to net/network-stream.el.
22175 2011-04-02  Glenn Morris  <rgm@gnu.org>
22177         * find-dired.el (find-exec-terminator): New option.
22178         (find-ls-option): Test for -ls support.
22179         (find-ls-subdir-switches): Test for -b in find-ls-option.
22180         (find-dired, find-grep-dired): Doc fixes.
22181         (find-dired): Use find-exec-terminator.
22183         * find-dired.el (find-ls-option, find-ls-subdir-switches)
22184         (find-grep-options): Do not autoload these defcustoms, remove purecopy.
22185         (find-name-arg): Remove purecopy.
22187         * progmodes/grep.el (grep-find-use-xargs): Doc fix.
22188         (grep-compute-defaults): Check for `-exec COMMAND +' support.
22189         Set grep-find-use-xargs, grep-find-command, and grep-find-template
22190         accordingly.  Don't add the null-device if not needed.
22192         * files.el (save-some-buffers): Doc fix.
22194 2011-04-02  Eli Zaretskii  <eliz@gnu.org>
22196         * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
22198 2011-04-01  Juanma Barranquero  <lekktu@gmail.com>
22200         * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
22201         Use `dolist' rather than `mapcar'.
22203 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
22205         Add lexical binding.
22207         * subr.el (apply-partially): Use new closures rather than CL.
22208         (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
22209         (dolist, dotimes): Use slightly different expansion for lexical code.
22210         (functionp): Move to C.
22211         (letrec): New macro.
22212         (with-wrapper-hook): Use it and apply-partially instead of CL.
22213         (eval-after-load): Preserve lexical-binding.
22214         (save-window-excursion, with-output-to-temp-buffer): Turn them
22215         into macros.
22217         * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
22219         * help-fns.el (help-split-fundoc): Return nil if there's nothing else
22220         than the arglist.
22221         (help-add-fundoc-usage): Don't add `Not documented'.
22222         (help-function-arglist): Handle closures, subroutines, and new
22223         byte-code-functions.
22224         (help-make-usage): Remove leading underscores.
22225         (describe-function-1): Handle closures.
22226         (describe-variable): Use special-variable-p for completion.
22228         * files.el (lexical-binding): Declare safe.
22230         * emacs-lisp/pcase.el: Don't use destructuring-bind.
22231         (pcase--memoize): Rename from pcase-memoize.  Change weakness.
22232         (pcase): Add `let' pattern.
22233         Change memoization so it actually works.
22234         (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
22235         (pcase--u1) <guard, pred>: Fix possible shadowing problem.
22236         <let>: New case.
22238         * emacs-lisp/macroexp.el: Use lexical binding.
22239         (macroexpand-all-1): Check obsolete macros.  Expand compiler-macros.
22240         Don't convert ' to #' without checking that it's indeed quoting
22241         a lambda.
22243         * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
22244         Use eval-sexp-add-defvars.
22245         (eval-sexp-add-defvars): New fun.
22247         * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
22249         * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
22250         Don't autoload.
22251         (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
22252         than the internal `byte-compile-lambda'.
22253         (defmethod): Don't hide code under quotes.
22254         (eieio-defmethod): New `code' argument.
22256         * emacs-lisp/eieio-comp.el: Remove.
22258         * emacs-lisp/edebug.el (edebug-eval-defun)
22259         (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
22260         (edebug-toggle): Avoid `eval'.
22262         * emacs-lisp/disass.el (disassemble-internal): Handle new
22263         `closure' objects.
22264         (disassemble-1): Handle new byte codes.
22266         * emacs-lisp/cl.el (pushnew): Silence warning.
22268         * emacs-lisp/cl-macs.el (cl-byte-compile-block)
22269         (cl-byte-compile-throw): Remove.
22270         (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
22272         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
22273         closures.
22275         * emacs-lisp/cconv.el: New file.
22277         * emacs-lisp/bytecomp.el: Use lexical binding instead of
22278         a "bytecomp-" prefix.  Macroexpand everything as a separate phase.
22279         (byte-compile-initial-macro-environment):
22280         Handle declare-function here.
22281         (byte-compile--lexical-environment): New var.
22282         (byte-stack-ref, byte-stack-set, byte-discardN)
22283         (byte-discardN-preserve-tos): New lap codes.
22284         (byte-interactive-p): Don't use any more.
22285         (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
22286         New macros.
22287         (byte-compile-lapcode): Use them and handle new lap codes.
22288         (byte-compile-obsolete): Remove.
22289         (byte-compile-arglist-signature): Handle new byte-code arg"lists".
22290         (byte-compile-arglist-warn): Check late def of inlinable funs.
22291         (byte-compile-cl-warn): Don't silence warnings for compiler-macros
22292         since they should have been expanded by now.
22293         (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
22294         (byte-compile-from-buffer): Remove unused second arg.
22295         (byte-compile-preprocess): New function.
22296         (byte-compile-toplevel-file-form): New function to distinguish
22297         file-form calls from outside from file-form calls from hunk-handlers.
22298         (byte-compile-file-form): Simplify.
22299         (byte-compile-file-form-defsubst): Remove.
22300         (byte-compile-file-form-defmumble): Simplify now that
22301         byte-compile-lambda always returns a byte-code-function.
22302         (byte-compile): Preprocess.
22303         (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
22304         Remove, not used any more.
22305         (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
22306         (byte-compile-make-args-desc): New funs.
22307         (byte-compile-lambda): Handle lexical functions.  Always return
22308         a byte-code-function.
22309         (byte-compile-reserved-constants): New var, to make up room for
22310         closed-over variables.
22311         (byte-compile-constants-vector): Obey it.
22312         (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
22313         (byte-compile-macroexpand-declare-function): New function.
22314         (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
22315         byte-code-functions.
22316         (byte-compile-form): Check obsolescence here.
22317         (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
22318         (byte-compile-variable-ref): Remove.
22319         (byte-compile-dynamic-variable-op): New fun.
22320         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
22321         (byte-compile-variable-set): New funs.
22322         (byte-compile-discard): Add 2 args.
22323         (byte-compile-stack-ref, byte-compile-stack-set)
22324         (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
22325         (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
22326         macroexpand-all instead.
22327         (byte-compile-quote-form): Remove.
22328         (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
22329         (byte-compile-bind, byte-compile-unbind): New funs.
22330         (byte-compile-let): Handle let* and lexical binding.
22331         (byte-compile-let*): Remove.
22332         (byte-compile-catch, byte-compile-unwind-protect)
22333         (byte-compile-track-mouse, byte-compile-condition-case):
22334         Handle a new :fun-body form, used for lexical scoping.
22335         (byte-compile-save-window-excursion)
22336         (byte-compile-with-output-to-temp-buffer): Remove.
22337         (byte-compile-defun): Simplify.
22338         (byte-compile-stack-adjustment): New fun.
22339         (byte-compile-out): Use it.
22340         (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
22342         * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
22343         handler any more.
22345         * emacs-lisp/byte-opt.el: Use lexical binding.
22346         (byte-inline-lapcode): Remove (to bytecomp).
22347         (byte-compile-inline-expand): Pay attention to inlining to/from
22348         lexically bound code.
22349         (byte-compile-unfold-lambda): Don't handle byte-code-functions
22350         any more.
22351         (byte-optimize-form-code-walker): Don't handle save-window-excursion
22352         any more and don't call compiler-macros.
22353         (byte-compile-splice-in-already-compiled-code): Remove.
22354         (byte-code): Don't inline any more.
22355         (disassemble-offset): Receive `bytes' as argument rather than via
22356         dynamic scoping.
22357         (byte-compile-tag-number): Declare before first use.
22358         (byte-decompile-bytecode-1): Handle new byte-codes, don't change
22359         `return' even if make-spliceable.
22360         (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
22361         obsolete interactive-p.
22362         (byte-optimize-lapcode): Optimize new lap-codes.
22363         Don't trip up on new form of `byte-constant' lap code.
22365         * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
22367         * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
22369         * custom.el (custom-initialize-default, custom-declare-variable):
22370         Use `defvar'.
22372         * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
22373         New variables.
22374         (compile-onefile, .el.elc, compile-calc, recompile): Use them.
22375         (COMPILE_FIRST): Add macroexp and cconv.
22376         * makefile.w32-in: Mirror changes in Makefile.in.
22378         * vc/cvs-status.el:
22379         * vc/diff-mode.el:
22380         * vc/log-edit.el:
22381         * vc/log-view.el:
22382         * vc/smerge-mode.el:
22383         * textmodes/bibtex-style.el:
22384         * textmodes/css-mode.el:
22385         * startup.el:
22386         * uniquify.el:
22387         * minibuffer.el:
22388         * newcomment.el:
22389         * reveal.el:
22390         * server.el:
22391         * mpc.el:
22392         * emacs-lisp/smie.el:
22393         * doc-view.el:
22394         * dired.el:
22395         * abbrev.el: Use lexical binding.
22397 2011-04-01  Eli Zaretskii  <eliz@gnu.org>
22399         * info.el (info-display-manual): New function.
22401 2011-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
22403         * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
22405 2011-03-31  Tassilo Horn  <tassilo@member.fsf.org>
22407         * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
22408         an entry for that server in rcirc-authinfo.  (Bug#8385)
22410 2011-03-31  Glenn Morris  <rgm@gnu.org>
22412         * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
22414         * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
22416 2011-03-30  Christoph Scholtes  <cschol2112@googlemail.com>
22418         * progmodes/python.el (python-default-interpreter)
22419         (python-python-command-args, python-jython-command-args)
22420         (python-which-shell, python-which-args, python-which-bufname)
22421         (python-file-queue, python-comint-output-filter-function)
22422         (python-toggle-shells, python-shell): Remove obsolete defcustoms,
22423         variables and functions.
22425 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
22427         * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
22428         (completion-in-region-mode): New minor mode.
22429         (completion-in-region): Use it.
22430         (completion-in-region--data, completion-in-region-mode-map): New vars.
22431         (completion-in-region--postch): New function.
22432         (completion--capf-misbehave-funs, completion--capf-safe-funs):
22433         New vars.
22434         (completion--capf-wrapper): New function.
22435         (completion-at-point): Use it to track well-behavedness of
22436         hook functions.
22437         (completion-help-at-point): New command.
22439 2011-03-30  Jason Merrill  <jason@redhat.com>  (tiny change)
22441         * vc/add-log.el (add-change-log-entry): Don't use whitespace
22442         syntax class to search for whitespace on a single line
22443         (Message-ID: <4D938140.4030905@redhat.com>).
22445 2011-03-30  Leo Liu  <sdl.web@gmail.com>
22447         * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
22448         New commands.
22449         (edit-abbrevs-map): Bind them here.
22450         (write-abbrev-file): New optinal arg VERBOSE.  (Bug#5937)
22452 2011-03-29  Ken Manheimer  <ken.manheimer@gmail.com>
22454         * allout.el (allout-hide-by-annotation, allout-flag-region):
22455         Reduce possibility of overlay leakage by making them volatile.
22457         * allout-widgets.el (allout-widgets-tally): Define as nil so the
22458         hash is not shared between buffers.  Mode initialization is
22459         responsible for giving it a useful starting value.
22460         (allout-item-span): Reduce possibility of overlay leakage by
22461         making them volatile.
22462         (allout-widgets-count-buttons-in-region): Add diagnostic function
22463         for tracking down button overlay leaks.
22465 2011-03-29  Leo Liu  <sdl.web@gmail.com>
22467         * ido.el (ido-read-internal): Use the default history var
22468         minibuffer-history if no HISTORY is specified.
22470 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
22472         * net/imap.el (imap-shell-open, imap-process-connection-type):
22473         Use imap-process-connection-type for 'shell' streams as well as
22474         Kerberos, SSL, other subprocesses.
22476 2011-03-28  Leo Liu  <sdl.web@gmail.com>
22478         * abbrev.el (abbrev-table-empty-p): New function.
22479         (prepare-abbrev-list-buffer): Place empty abbrev tables after
22480         nonempty ones.  (Bug#5937)
22482 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
22484         * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
22486 2011-03-27  Leo Liu  <sdl.web@gmail.com>
22488         * ansi-color.el (ansi-color-names-vector): Allow cons cell value
22489         for foreground and background colors.
22490         (ansi-color-make-color-map): Adapt.
22492 2011-03-25  Leo Liu  <sdl.web@gmail.com>
22494         * midnight.el (midnight-time-float): Remove.  Note it calculates
22495         the microsecond component incorrectly and seconds-to-time does the
22496         same job.
22497         Remove redundant (require 'timer).
22499         * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
22500         (ido-completions): Remove unused arguments.  (Bug#8329)
22502 2011-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
22504         * minibuffer.el (completion--flush-all-sorted-completions):
22505         Remove itself from hook.
22506         (completion-at-point): Let the functions perform the completion
22507         immediately and return nil or t.
22508         * comint.el (comint-dynamic-complete-functions): Now identical to
22509         completion-at-point-functions.
22510         (comint-dynamic-list-input-ring): Remove unused var `index'.
22511         (comint--match-partial-filename, comint--unquote&expand-filename):
22512         New funs, split from comint-match-partial-filename.
22513         (comint-dynamic-complete): Use completion-at-point.
22514         (comint-dynamic-complete-filename): Use comint--match-partial-filename.
22516 2011-03-24  Drew Adams  <drew.adams@oracle.com>
22518         * thingatpt.el: Support `defun'.
22520 2011-03-23  Leo Liu  <sdl.web@gmail.com>
22522         * abbrevlist.el: Move to obsolete/abbrevlist.el.
22524         * help-mode.el (help-mode-finish): Tweak regexp.
22526 2011-03-23  Glenn Morris  <rgm@gnu.org>
22528         * eshell/esh-opt.el (eshell-eval-using-options):
22529         Do not bind unused local variable `eshell-option-stub'.
22531         * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
22533 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
22535         * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
22536         keymap variable in `with-no-warnings' to avoid a warning when the
22537         keymap has been already `defconst'ed.
22539 2011-03-22  Leo Liu  <sdl.web@gmail.com>
22541         * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
22542         encode all chars in abbrevs; otherwise use emacs-mule or
22543         utf-8-emacs.  (Bug#8308)
22545 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
22547         * simple.el (backward-delete-char-untabify):
22548         Avoid warning about using `delete-backward-char'.
22550         * image.el (image-type-file-name-regexps): Make it variable.
22551         `imagemagick-register-types' modifies it, and the user may want
22552         to add new extensions for known image types.
22553         (imagemagick-register-types): Throw error if not using ImageMagick.
22555 2011-03-22  Leo Liu  <sdl.web@gmail.com>
22557         * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
22558         located before rcirc-prompt-end-marker.
22559         (rcirc-complete): Error if point is not after rcirc prompt.
22560         Handle the case when table is nil.
22561         (rcirc-user-authenticated): Define to fix compiler warning.
22563 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
22565         * custom.el (custom--inhibit-theme-enable): Make it affect only
22566         custom-theme-set-variables and custom-theme-set-faces.
22567         (provide-theme): Ignore custom--inhibit-theme-enable.
22568         (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
22569         (custom-enabling-themes): Delete variable.
22570         (enable-theme): Accept only loaded themes as arguments.
22571         Ignore the special custom-enabled-themes variable.
22572         (custom-enabled-themes): Forbid themes from setting this.
22573         Eliminate use of custom-enabling-themes.
22574         (custom-push-theme): Quote "changed" custom var entry.
22576 2011-03-21  Leo Liu  <sdl.web@gmail.com>
22578         * ido.el (ido-read-internal): Add ido-selected to history instead
22579         of user input.
22581 2011-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
22583         * subr.el (deferred-action-list, deferred-action-function):
22584         Mark obsolete.
22586 2011-03-21  Leo Liu  <sdl.web@gmail.com>
22588         * vc/log-view.el: Remove (require 'wid-edit), not needed after the
22589         change on 2011-02-13 (bug#8309).
22591         * minibuffer.el (read-file-name-function): Change default value.
22592         (read-file-name--defaults): Rename from read-file-name-defaults.
22593         (read-file-name-default): Rename from read-file-name.
22594         (read-file-name): Call read-file-name-function.
22596 2011-03-21  Glenn Morris  <rgm@gnu.org>
22598         * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
22599         Doc fixes.
22601 2011-03-21  Chong Yidong  <cyd@stupidchicken.com>
22603         * cus-theme.el: Add missing provide statement.
22604         (customize-create-theme): Extract theme value correctly.
22605         (custom-theme-visit-theme): Autoload.
22606         (customize-create-theme): Prompt before inserting default faces.
22608 2011-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
22610         * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
22611         units and musical notes.
22613 2011-03-20  Leo Liu  <sdl.web@gmail.com>
22615         * ido.el (ido-read-internal): Use completing-read-default.
22616         (ido-completing-read): Fix compatibility with completing-read.
22618 2011-03-20  Christian Ohler  <ohler@gnu.org>
22620         * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
22621         (ert-delete-all-tests): Use `called-interactively-p' rather than
22622         `interactive-p'.
22623         (ert--make-xrefs-region): Respect END.
22625 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
22627         * dired-aux.el (dired-create-directory): Signal an error if the
22628         directory already exists (Bug#8246).
22630         * facemenu.el (list-colors-display): Call list-faces-display
22631         inside with-help-window.
22632         (list-colors-print): Use display property to align the final
22633         column, instead of checking window-width.
22635 2011-03-19  Eli Zaretskii  <eliz@gnu.org>
22637         * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
22638         windows-nt systems.
22639         (emerge-protect-metachars): Quote correctly for ms-dos and
22640         windows-nt systems.
22642 2011-03-19  Ralph Schleicher  <rs@ralph-schleicher.de>
22644         * info.el (info-initialize): Replace all uses of `:' with
22645         path-separator for compatibility with non-Unix systems.
22646         Cache quoting of path-separator.  (Bug#8258)
22648 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
22650         * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
22651         (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
22652         (mouse-avoidance-mode): Fix typos in docstrings.
22654 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
22656         * startup.el (package-subdirectory-regexp): Move from package.el.
22657         Omit \\` and \\', and let callers add them.
22659         * emacs-lisp/package.el (package-strip-version)
22660         (package-load-all-descriptors): Add \\` and \\' to
22661         package-subdirectory-regexp before using it.
22662         (package-untar-buffer): New arg DIR; ensure that file untars only
22663         into this expected directory.  Remove superfluous delete-region.
22664         (package-unpack): Caller changed.
22665         (package-tar-file-info): Use package-subdirectory-regexp.
22667 2011-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
22669         * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
22670         diff-mode-shared-map (bug#8284).
22671         (diff-mode-shared-map): Re-introduce some bindings that were problematic.
22673 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22675         * calendar/time-date.el (format-seconds): Use assoc instead of
22676         assoc-string, since assoc-string doesn't exist in XEmacs.
22678 2011-03-17  Juanma Barranquero  <lekktu@gmail.com>
22680         * custom.el (custom-known-themes): Reflow docstring.
22681         (custom-theme-load-path): Fix typo in docstring.
22682         (load-theme): Fix typo in error message.
22683         (custom-available-themes, custom-variable-theme-value):
22684         Use `let', not `let*'.
22686 2011-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
22688         * calc/README: Mention inclusion of musical notes.
22690         * calc/calc-units.el (calc-lu-quant): Rename from
22691         `calc-logunits-quantity'.
22692         (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
22693         (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
22694         (calc-db): Rename from `calc-dblevel'.
22695         (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
22696         (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
22697         (calc-np): Rename from `calc-nplevel'.
22698         (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
22699         (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
22700         (calc-lu-plus): Rename from `calc-logunits-add'.
22701         (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
22702         (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
22703         (calc-lu-minus): Rename from `calc-logunits-sub'.
22704         (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
22705         (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
22706         (calc-lu-times): Rename from `calc-logunits-mul'.
22707         (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
22708         (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
22709         (calc-lu-divide): Rename from `calc-logunits-div'.
22710         (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
22711         (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
22713         * calc/calc-ext.el (calc-init-extensions): Update the names of the
22714         functions being autoloaded.
22716         * calc/calc.el (calc-lu-power-reference): Rename from
22717         `calc-logunits-power-reference'.
22718         (calc-lu-field-reference): Rename from
22719         `calc-logunits-field-reference'.
22721         * calc/calc-help.el (calc-l-prefix-help):
22722         Mention musical note functions.
22724 2011-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
22726         * minibuffer.el (completion-all-sorted-completions):
22727         Use :completion-cycle-penalty text property if present.
22729 2011-03-16  Ken Manheimer  <ken.manheimer@gmail.com>
22731         * allout.el (allout-yank-processing): Adjust for new rebulleting
22732         regime so bullet being yanked is used without prompting the user
22733         for a choice.
22735 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
22737         * startup.el (command-line): Warn the user that _emacs is deprecated.
22739 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
22741         * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
22742         (delphi-verbose, delphi-comment-face, delphi-string-face)
22743         (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
22744         (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
22745         (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
22746         (delphi-new-comment-line, delphi-font-lock-defaults)
22747         (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
22748         Fix typos in docstrings.
22750 2011-03-15  Ken Manheimer  <ken.manheimer@gmail.com>
22752         * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
22753         Invert the roles of character and string values for INSTEAD, so a
22754         string is used for the more common case of a defaulting prompt.
22756 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22758         * progmodes/ruby-mode.el (ruby-backward-sexp):
22759         * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
22760         * play/gamegrid.el (gamegrid-make-face):
22761         * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
22762         (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
22763         * notifications.el (notifications-notify):
22764         * net/xesam.el (xesam-search-engines):
22765         * net/quickurl.el (quickurl-list-insert):
22766         * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
22768 2011-03-15  Chong Yidong  <cyd@stupidchicken.com>
22770         * startup.el (command-line): Update package subdirectory regexp.
22772 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22774         * allout.el (allout-abbreviate-flattened-numbering)
22775         (allout-mode-deactivate-hook): Fix up obsolescence "date".
22777         * subr.el (read-char-choice): Only show the cursor after the prompt,
22778         not after the answer.
22780 2011-03-15  Kevin Ryde  <user42@zip.com.au>
22782         * help-fns.el (variable-at-point): Skip leading quotes, if any
22783         (bug#8253).
22785 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22787         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
22788         warning message.
22790 2011-03-14  Michael Albinus  <michael.albinus@gmx.de>
22792         * shell.el (shell): When called interactively, offer to change the
22793         shell file name on remote hosts.
22795 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
22797         * net/ldap.el (ldap-search-internal): Add `auth-source-search'
22798         integration for LDAP parameters.  The host, base, user or binddn,
22799         and secret tokens can be specified in a netrc file, for instance.
22800         This is optional because an `auth-source' parameter must be
22801         specified in the search attributes.
22803 2011-03-13  Juanma Barranquero  <lekktu@gmail.com>
22805         * help.el (describe-mode): Link to the mode's definition (bug#8185).
22807 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22809         * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
22810         into declaration.  Remove redundant and harmful binding.
22812 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
22814         * files.el (file-ownership-preserved-p): Pass `integer' as an
22815         explicit 2nd argument to `file-attributes'.  If the file's owner
22816         is the Administrators group on Windows, and the current user is
22817         Administrator, consider that a match.
22819         * server.el (server-ensure-safe-dir): Consider server directory
22820         safe on MS-Windows if its owner is the Administrators group while
22821         the current Emacs user is Administrator.  Use `=' to compare
22822         numerical UIDs, since they could be integers or floats.
22824 2011-03-12  Juanma Barranquero  <lekktu@gmail.com>
22826         * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
22828 2011-03-12  Michael Albinus  <michael.albinus@gmx.de>
22830         Sync with Tramp 2.2.1.
22832         * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
22834         * net/trampver.el: Update release number.
22836 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22838         * progmodes/compile.el (compilation--previous-directory): Fix up
22839         various nil/dead-marker mismatches (bug#8014).
22840         (compilation-directory-properties, compilation-error-properties):
22841         Don't call it at a position past the one we're about to change.
22843         * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
22844         Disable obsolescence warnings in the file that declares it.
22846 2011-03-11  Ken Manheimer  <ken.manheimer@gmail.com>
22848         * allout-widgets.el (allout-widgets-tally):
22849         Initialize allout-widgets-tally as a hash table rather than nil to
22850         prevent mode-line redisplay warnings.  Also, clarify the module
22851         description and fix a comment typo.
22853 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
22855         * help-fns.el (describe-variable): Don't complete keywords.
22856         Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
22858 2011-03-10  Chong Yidong  <cyd@stupidchicken.com>
22860         * emacs-lisp/package.el (package-version-join): Impose a standard
22861         string representation for pre/alpha/beta version lists.
22862         (package-unpack-single): Standardize the directory name by passing
22863         it through package-version-join.
22864         (package-strip-rcs-id): Accept any version string that does not
22865         signal an error in version-to-list.
22867 2011-03-10  Michael Albinus  <michael.albinus@gmx.de>
22869         * simple.el (delete-trailing-whitespace): Return nil for the
22870         benefit of `write-file-functions'.
22872 2011-03-10  Glenn Morris  <rgm@gnu.org>
22874         * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
22876         * vc/vc-git.el (vc-git-program): New option.
22877         (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
22878         (vc-git--call): Use it.
22880         * eshell/esh-util.el (eshell-condition-case): Doc fix.
22882         * cus-edit.el (Custom-newline): If no button at point, look
22883         for a subgroup button at start-of-line.  (Bug#2298)
22885         * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
22887 2011-03-10  Julien Danjou  <julien@danjou.info>
22889         * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
22890         `cursor-type' is nil.
22892 2011-03-09  Jay Belanger  <jay.p.belanger@gmail.com>
22894         * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
22896 2011-03-09  Ken Manheimer  <ken.manheimer@gmail.com>
22898         * allout.el: Change so yank of distinctive-bullet items
22899         preserves the existing header prefix, rebulleting it if necessary,
22900         rather than replacing it.  This is necessary for proper operation
22901         of cooperative addons like allout-widgets.
22902         (allout-make-topic-prefix, allout-rebullet-heading):
22903         Change SOLICIT arg to INSTEAD, and interpret additionally a string
22904         value as alternate bullet to be used, instead of prompting the user
22905         for a bullet character.
22907 2011-03-09  Michael Albinus  <michael.albinus@gmx.de>
22909         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22910         Do not use `tramp-file-name-port', because this returns also
22911         `tramp-default-port'.
22913 2011-03-09  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
22915         * net/rcirc.el (rcirc-handler-001): Remove useless
22916         with-rcirc-process-buffer.
22917         (rcirc-check-auth-status): Swap arguments to string-match.
22919 2011-03-09  Glenn Morris  <rgm@gnu.org>
22921         * shell.el (shell-mode):
22922         Set comint-input-ring-size from HISTSIZE.  (Bug#7889)
22924         * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
22925         Check for GDBHISTFILE, HISTSIZE, etc.  (Bug#7889)
22927 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
22929         * emacs-lisp/package.el (package-refresh-contents)
22930         (package-menu-execute): Use condition-case-no-debug.
22932 2011-03-08  Michael Albinus  <michael.albinus@gmx.de>
22934         * simple.el (shell-command-to-string): Use `process-file'.
22936         * emacs-lisp/package.el (package-tar-file-info): Handle also
22937         remote files.
22939         * emacs-lisp/package-x.el (package-upload-buffer-internal):
22940         Use `equal' for upload base check.
22942 2011-03-08  Arni Magnusson  <arnima@hafro.is>  (tiny change)
22944         * textmodes/texinfo.el (texinfo-environments):
22945         Add deftypecv, deftypeivar, deftypemethod, deftypeop, html.  (Bug#2783)
22947 2011-03-08  Glenn Morris  <rgm@gnu.org>
22949         * cus-start.el (cursor-in-non-selected-windows):
22950         Fix :set quoting oddness.  (Bug#8192)
22952         * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
22953         in some setf expressions.  (Bug#2159)
22955 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
22957         * custom.el (custom-available-themes): Return themes in
22958         alphabetical order.
22960 See ChangeLog.15 for earlier changes.
22962 ;; Local Variables:
22963 ;; coding: utf-8
22964 ;; End:
22966   Copyright (C) 2011-2013 Free Software Foundation, Inc.
22968   This file is part of GNU Emacs.
22970   GNU Emacs is free software: you can redistribute it and/or modify
22971   it under the terms of the GNU General Public License as published by
22972   the Free Software Foundation, either version 3 of the License, or
22973   (at your option) any later version.
22975   GNU Emacs is distributed in the hope that it will be useful,
22976   but WITHOUT ANY WARRANTY; without even the implied warranty of
22977   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22978   GNU General Public License for more details.
22980   You should have received a copy of the GNU General Public License
22981   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.