Use lexical-binding for all of CL, and clean up its namespace.
[emacs.git] / lisp / ChangeLog
bloba251c45f323bf67c571dc3abd01a95a881a6afc9
1 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * emacs-lisp/cl-lib.el: Use lexical-binding.
4         (cl-map-extents, cl-maclisp-member): Remove.
5         (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6         (cl--set-substring, cl--block-wrapper, cl--block-throw)
7         (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
8         * emacs-lisp/cl-extra.el: Use lexical-binding.
9         (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
10         (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
11         (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
12         (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
13         * emacs-lisp/cl-seq.el: Use lexical-binding.
14         (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
15         (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
16         (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
17         * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
18         * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
19         CL's internals.
21 2012-06-11  Michael Albinus  <michael.albinus@gmx.de>
23         Sync with Tramp 2.2.6-pre.
25         * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
26         `print-length' and `print-level' to nil, in order to avoid
27         truncation.  Reported by Christopher Schmidt
28         <christopher@ristopher.com>.
30         * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
32         * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
33         New defmacro.
34         (tramp-compat-copy-directory): Add optional argument
35         COPY-CONTENTS.  It is not handled yet.
37         * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
38         (tramp-ftp-file-name-p): Simplify.
40         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
41         * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
42         connection vector.
44         * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
45         (tramp-methods): Do not use `tramp-password-end-of-line'.
46         (tramp-completion-function-alist-putty): Handle UNIX case.
47         (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
48         (tramp-do-file-attributes-with-stat)
49         (tramp-do-directory-files-and-attributes-with-stat) Return uid and
50         gid as real numbers.  They could run out of integer range on cygwin.
51         (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
52         (tramp-sh-handle-expand-file-name): Handle hops.
53         (tramp-open-connection-setup-interactive-shell): Use
54         `tramp-cleanup'.  Move check for busyboxes ...
55         (tramp-find-shell): ... here.  Simplify implementation.  Set
56         "remote-shell" property also for alternative shells.
57         (tramp-remote-coding-commands): Check "test -c /dev/stdout".  If
58         failing, a regular file would be written otherwise.  Reported by
59         Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
60         (tramp-find-inline-encoding): Cache the coding commands in the
61         process cache.  Apply test command on the remote side, if defined.
62         (tramp-find-inline-compress): Cache the compress commands in the
63         process cache.
64         (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
65         when requested.  Handle hops.
66         (tramp-current-connection): New defvar.
67         (tramp-maybe-open-connection): Use `tramp-cleanup'.  Throw
68         `suppress', if there was a failed connection shortly before.
69         Handle user interrupt.  (Bug#10187)
70         (tramp-get-inline-compress, tramp-get-inline-coding): Read
71         connection properties from the process cache.
73         * net/tramp-smb.el (tramp-smb-server-version)
74         (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar): New
75         defconsts.
76         (tramp-smb-prompt): Extend for powershell prompt.
77         (tramp-smb-file-name-handler-alist): Add handlers for
78         `process-file', `shell-command' and `start-file-process'.
79         (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
80         (tramp-smb-winexe-shell-command-switch): New defcustoms.
81         (tramp-smb-file-name-p): Simplify.
82         (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
83         (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
84         (tramp-smb-shell-quote-argument): New defuns.
85         (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
86         Implement using "tar".  By this, time-stamps are preserved.
87         (tramp-smb-handle-copy-file): Handle also the case of directories.
88         (tramp-smb-do-file-attributes-with-stat)
89         (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities): Use
90         `tramp-get-connection-buffer').
91         (tramp-smb-handle-rename-file): Use "rename", when source and
92         target are on the same share.
93         (tramp-smb-maybe-open-connection): Handle wrong passwords.  Use
94         `tramp-smb-server-version'.
95         (tramp-smb-wait-for-output): Remove prompt.
97         * net/tramp.el (top): Require 'cl.
98         (tramp-methods, tramp-rsh-end-of-line): Remove
99         `tramp-password-end-of-line' from docstring.
100         (tramp-save-ad-hoc-proxies): New defcustom.
101         (tramp-completion-function-alist): Adapt docstring.
102         (tramp-default-password-end-of-line): Remove defcustom.
103         (tramp-shell-prompt-pattern): Allow "[]" style prompts.  (Bug#11065)
104         (tramp-user-regexp, tramp-file-name-regexp-unified)
105         (tramp-file-name-regexp-url): Extend regexp by hop separator.
106         (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
107         (tramp-remote-file-name-spec-regexp): New defconst.
108         (tramp-file-name-structure): Extend structure for hops.
109         (tramp-get-method-parameter): Move up.
110         (tramp-file-name-p, tramp-dissect-file-name)
111         (with-parsed-tramp-file-name): Handle hops.
112         (tramp-file-name-hop): New defun.
113         (tramp-make-tramp-file-name): New optional arg HOP.
114         (tramp-message-show-progress-reporter-message): New defvar.
115         (tramp-with-progress-reporter): Use it.  We cannot use
116         `tramp-message-show-message' here, because this suppresses also
117         error buffers.
118         (tramp-error-with-buffer): Suppress buffer view, if
119         `tramp-message-show-message' is nil.  Use
120         `tramp-get-connection-buffer'.
121         (tramp-cleanup): New defun.
122         (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
123         (tramp-file-name-handler): If `debug-on-error' is set, propagate
124         an error unchanged.
125         (tramp-completion-handle-file-name-all-completions): Handle hops.
126         Fix an error when called from ido.
127         (tramp-completion-dissect-file-name): Use better local variable
128         name.  Add hop to the vector.
129         (tramp-handle-insert-file-contents): Use progress-reporter for the
130         whole scenario.
131         (tramp-action-password): Let-bind `enable-recursive-minibuffers'
132         to `t'.
133         (tramp-check-for-regexp): Simplify search.
134         (tramp-enter-password): Remove it.  Move implementation ...
135         (tramp-action-password): ... here.
136         (tramp-mode-string-to-int, tramp-local-host-p)
137         (tramp-make-tramp-temp-file, tramp-read-passwd)
138         (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff): Set
139         tramp-autoload cookie.
141         * net/trampver.el: Update release number.
143 2012-06-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
144             Michael Albinus  <michael.albinus@gmx.de>
146         * net/tramp.el (tramp-set-completion-function): Fix docstring.
147         (tramp-parse-group, tramp-parse-file)
148         (tramp-parse-shostkeys-sknownhosts): New defuns.
149         (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
150         (tramp-parse-shosts-group, tramp-parse-sconfig)
151         (tramp-parse-sconfig-group, tramp-parse-shostkeys)
152         (tramp-parse-sknownhosts, tramp-parse-hosts)
153         (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
154         Use them.
155         (tramp-parse-passwd-group, tramp-parse-netrc-group)
156         (tramp-parse-putty-group): Don't narrow.
157         (tramp-parse-putty): Make a loop.
158         (tramp-file-name-handler): Catch the `suppress' signal.
160 2012-06-11  Chong Yidong  <cyd@gnu.org>
162         * image.el (imagemagick-register-types): Put the ImageMagick entry
163         at the end of image-type-file-name-regexps.
165 2012-06-11  Johan Bockgård  <bojohan@gnu.org>
167         * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
168         (pcase, pcase-let*, pcase-dolist): Use them.
170 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
172         * emacs-lisp/pcase.el (pcase--let*): New function.
173         (pcase-let*): Use it.  Use pcase--memoize to avoid repeated expansions.
174         (pcase--expand): Use macroexp-let².
176 2012-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
178         * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
179         * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
180         * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
181         * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
182         * emacs-lisp/derived.el: Use pcase instead of `cl'.
183         * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
185 2012-06-10  Glenn Morris  <rgm@gnu.org>
187         * mail/rmail.el (rmail-yank-current-message): Leave point at
188         correct position.  (Bug#11660)
190 2012-06-10  Chong Yidong  <cyd@gnu.org>
192         * allout-widgets.el: Fix code header.
194 2012-06-10  Chong Yidong  <cyd@gnu.org>
196         * cus-edit.el (customize-changed-options-previous-release):
197         Bump to 24.1.
199 2012-06-09  Andreas Schwab  <schwab@linux-m68k.org>
201         * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
203 2012-06-09  Chong Yidong  <cyd@gnu.org>
205         * ebuff-menu.el (electric-buffer-list): Preserve header line.
207 2012-06-09  Martin Rudalics  <rudalics@gmx.at>
209         * window.el (special-display-popup-frame): Don't use
210         window--display-buffer (Bug#11651).
212 2012-06-09  Eli Zaretskii  <eliz@gnu.org>
214         Fix parallel builds: make sure loaddefs.el is not being written
215         while Lisp files are compiled.
216         (compile): Don't depend on 'mh-autoloads'.
217         (compile-CMD, compile-SH): Depend on 'autoloads'.
218         (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
220         * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200.  (Bug#11649)
222 2012-06-09  Chong Yidong  <cyd@gnu.org>
224         * face-remap.el (face-remap-add-relative, face-remap-set-base)
225         (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
226         Doc fixes (Bug#11225).
228 2012-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
230         * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
231         a function if there's a clear indication that it has a compiler-macro.
232         * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
233         (macro-declarations-alist): Add arglist to declaration functions.
234         (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
235         * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
236         * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
237         * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
238         Also add autoload to find the compiler macro.
239         * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
240         (cl--compiler-macro-member, cl--compiler-macro-assoc)
241         (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
242         (cl--compiler-macro-get): New functions, replacing calls to
243         cl-define-compiler-macro.
244         (cl-typep) [compiler-macro]: Use macroexp-let².
246 2012-06-08  Nick Dokos  <nicholas.dokos@hp.com>  (tiny change)
248         * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
249         string properly, fixes Bug#11473.
251 2012-06-08  Chong Yidong  <cyd@gnu.org>
253         * faces.el (set-face-attribute): Doc fix.
254         (modify-face): Don't use :bold and :italic.
255         (error, warning, success): Tweak definitions.
257         * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
258         (custom-modified, custom-set, custom-changed, custom-themed)
259         (custom-saved, custom-button, custom-button-mouse)
260         (custom-button-pressed, custom-state, custom-comment-tag)
261         (custom-variable-tag, custom-group-tag-1, custom-group-tag)
262         (custom-group-subtitle): Use new-style face specs.
263         (custom-invalid-face, custom-rogue-face, custom-modified-face)
264         (custom-set-face, custom-changed-face, custom-saved-face)
265         (custom-button-face, custom-button-pressed-face)
266         (custom-documentation-face, custom-state-face)
267         (custom-comment-face, custom-comment-tag-face)
268         (custom-variable-tag-face, custom-variable-button-face)
269         (custom-face-tag-face, custom-group-tag-face-1)
270         (custom-group-tag-face): Remove obsolete face alias.
272         * epa.el (epa-validity-high, epa-validity-medium)
273         (epa-validity-low, epa-mark, epa-field-name, epa-string)
274         (epa-field-name, epa-field-body):
275         * font-lock.el (font-lock-comment-face, font-lock-string-face)
276         (font-lock-keyword-face, font-lock-builtin-face)
277         (font-lock-function-name-face, font-lock-variable-name-face)
278         (font-lock-type-face, font-lock-constant-face):
279         * ido.el (ido-first-match, ido-only-match, ido-subdir)
280         (ido-virtual, ido-indicator, ido-incomplete-regexp):
281         * speedbar.el (speedbar-button-face, speedbar-file-face)
282         (speedbar-directory-face, speedbar-tag-face)
283         (speedbar-selected-face, speedbar-highlight-face)
284         (speedbar-separator-face):
285         * whitespace.el (whitespace-newline, whitespace-space)
286         (whitespace-hspace, whitespace-tab, whitespace-trailing)
287         (whitespace-line, whitespace-space-before-tab)
288         (whitespace-space-after-tab, whitespace-indentation)
289         (whitespace-empty):
290         * emulation/cua-base.el (cua-global-mark):
291         * eshell/em-prompt.el (eshell-prompt):
292         * net/newst-plainview.el (newsticker-new-item-face)
293         (newsticker-old-item-face, newsticker-immortal-item-face)
294         (newsticker-obsolete-item-face, newsticker-date-face)
295         (newsticker-statistics-face, newsticker-default-face):
296         * net/newst-reader.el (newsticker-feed-face)
297         (newsticker-extra-face, newsticker-enclosure-face):
298         * net/newst-treeview.el (newsticker-treeview-face)
299         (newsticker-treeview-new-face, newsticker-treeview-old-face)
300         (newsticker-treeview-immortal-face)
301         (newsticker-treeview-obsolete-face)
302         (newsticker-treeview-selection-face):
303         * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
304         (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
305         (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
306         (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
307         * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
308         (nxml-outline-active-indicator, nxml-outline-ellipsis):
309         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
310         (mpuz-text):
311         * progmodes/vera-mode.el (vera-font-lock-number)
312         (vera-font-lock-function, vera-font-lock-interface):
313         * textmodes/table.el (table-cell): Use new-style face specs, and
314         don't use the old :bold and :italic attributes.
316         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
317         (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
318         (ebrowse-member-class, ebrowse-progress): Likewise.
319         (ebrowse-tree-mark-face, ebrowse-root-class-face)
320         (ebrowse-file-name-face, ebrowse-default-face)
321         (ebrowse-member-attribute-face, ebrowse-member-class-face)
322         (ebrowse-progress-face): Remove obsolete faces.
324         * progmodes/flymake.el (flymake-errline, flymake-warnline):
325         Inherit from error and warning faces respectively.
327         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
328         Likewise.
329         (flyspell-incorrect-face, flyspell-duplicate-face):
330         Remove obsolete aliases.
332 2012-06-08  Michael Albinus  <michael.albinus@gmx.de>
334         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
335         Avoid infloop.
337 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
339         * startup.el (argv, argi): Make lexically scoped.
340         * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
341         * emacs-lisp/cl-macs.el: Use lexical-binding.
342         Rename cl-bind-* to cl--bind-*.
343         * files.el: Don't require `cl' since it doesn't use it.
344         * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
346 2012-06-08  Juanma Barranquero  <lekktu@gmail.com>
348         * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
349         (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
350         instead of calling external sort utility.
351         (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
353 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
355         * descr-text.el (describe-char): Mention how to insert the
356         character, if the current input method doesn't support it.
357         See the discussion in this thread for the details:
358         http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
360 2012-06-08  Sam Steingold  <sds@gnu.org>
362         * bindings.el (global-map): Bind XF86Forward to next-buffer and
363         XF86Back to previous-buffer.
364         (minibuffer-local-map): Bind them to next-history-element and
365         previous-history-element respectively.
366         * help-mode.el (help-mode-map): Bind them to help-go-forward and
367         help-go-back respectively.
368         * info.el (Info-mode-map): Bind them to Info-history-forward and
369         Info-history-back respectively.
370         These are the keys next to Up on the ThinkPad keyboard.
372 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
374         Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
375         * emacs-lisp/cl-macs.el: Provide itself.
376         (cl--labels-convert-cache): New var.
377         (cl--labels-convert): New function.
378         (cl-flet, cl-labels): New implementation with new semantics, relying on
379         lexical-binding.
380         * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
381         (cl-closure-vars, cl--function-convert-cache)
382         (cl--function-convert): Move from cl-macs.el.
383         (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
384         rename by removing the "cl-" prefix.
385         * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
387 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
389         * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
390         (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
391         (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
392         (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
393         (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
394         (cl-hash-table-count): Add old compatibility aliases.
396         * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
397         Use macroexpand-all-environment instead.
398         (cl--old-macroexpand): New var.
399         (cl--sm-macroexpand): New function.
400         (cl-symbol-macrolet): Use it during macro expansion.
401         (cl--function-convert-cache): New var.
402         (cl--function-convert): New function, extracted from
403         cl-macroexpand-all.
404         (cl-lexical-let): Use it.
406         * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
407         (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
408         (cl-member): Remove old alias.
410         * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
411         (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
412         (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
413         (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
414         (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
415         (cl-macroexpand-cmacs): Remove var.
416         (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
417         Use macroexpand-all instead.
419 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
421         * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
422         (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
423         (macroexp-copyable-p): New functions and macros.
424         * emacs-lisp/edebug.el (edebug-unwrap):
425         * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
426         * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
427         (pcase--let*): Remove.
428         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
429         (byte-compile-constp): Remove.  Use macroexp--const-symbol-p and
430         macroexp-const-p instead.
431         * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
433         * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
434         instead of "cl-" for internal definitions.  Use macroexp-const-p.
435         (cl-old-bc-file-form): Remove var.
436         (cl-const-exprs-p): Remove fun.
437         (cl-labels, cl-macrolet): Use backquote.
438         (cl-lexical-let): Use cl-symbol-macrolet.  Don't use cl-defun-expander.
439         (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
440         (cl-define-setf-expander): Rename from cl-define-setf-method.
441         * emacs-lisp/cl.el: Adjust alias for define-setf-method.
443         * international/mule-cmds.el: Don't require CL.
444         (view-hello-file): Don't use `letf'.
446 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
448         * tmm.el (tmm-prompt): Use string-prefix-p.
449         (tmm-completion-delete-prompt): Don't affect current-buffer outside.
450         (tmm-add-prompt): Use minibuffer-completion-help.
451         (tmm-delete-map): Remove.
453         * subr.el (kbd): Make it its own function.
455 2012-06-07  Stefan Merten  <smerten@oekonux.de>
457         * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
458         Silence compiler warnings.  Fix versions.
459         (rst-position-if, rst-position, rst-some, rst-signum): New functions.
460         (rst-shift-region, rst-adornment-level, rst-compute-tabs)
461         (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
462         (rst-package-emacs-version-alist): Correct Emacs version to
463         represent major merge with upstream.
464         (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
466 2012-06-06  Glenn Morris  <rgm@gnu.org>
468         * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
469         Only print environment variables if set.
471 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
473         * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
474         (macroexp--cons): Rename from maybe-cons.
475         (macroexp--accumulate): Rename from macroexp-accumulate.
476         (macroexp--all-forms): Rename from macroexpand-all-forms.
477         (macroexp--all-clauses): Rename from macroexpand-all-clauses.
478         (macroexp--expand-all): Rename from macroexpand-all-1.
480 2012-06-06  Sam Steingold  <sds@gnu.org>
482         * calendar/calendar.el (calendar-in-read-only-buffer):
483         Call `special-mode' to enable the standard read-only keybindings.
485 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
487         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
488         with "loading" messages (bug#11635).
490 2012-06-06  Michael Albinus  <michael.albinus@gmx.de>
492         * files.el (enable-remote-dir-locals): New option.
493         (hack-dir-local-variables): Use it.  (Bug#1933, Bug#6731)
495         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
496         Ensure, that the temp directory is local.
498         * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
499         `temporary-file-directory'.
501         * progmodes/python.el (python-send-region): Ensure, that the
502         temporary file is created also in the remote case.
504 2012-06-06  Glenn Morris  <rgm@gnu.org>
506         * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
507         (vc-rcs-update-changelog): Use it.
509         * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff
511         * vc/vc-sccs.el (vc-sccs-write-revision): New function.
512         (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
513         (vc-sccs-diff): Replace use of the external vcdiff script.
515 2012-06-05  Glenn Morris  <rgm@gnu.org>
517         * ledit.el: Move to obsolete/.
519 2012-06-05  Sam Steingold  <sds@gnu.org>
521         * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
522         patch (Bug#11140).
524 2012-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
526         * emacs-list/cust-print.el: Move to obsolete.
528         * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
529         compiler-macro expansion.
531         Add native compiler-macro support.
532         * emacs-lisp/macroexp.el (macroexpand-all-1):
533         Support compiler-macros directly.  Properly follow aliases and apply
534         the compiler macros more thoroughly.
535         * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
536         macroexpand now properly follows aliases.
537         * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
538         (cl-compiler-macroexpand): Use new prop.
539         * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
541         * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
543 2012-06-05  Martin Rudalics  <rudalics@gmx.at>
545         * window.el (get-lru-window, get-mru-window, get-largest-window):
546         New argument NOT-SELECTED to avoid picking the selected window.
547         (window--display-buffer-1, window--display-buffer-2): Replace by
548         new function window--display-buffer
549         (display-buffer-same-window, display-buffer-reuse-window)
550         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
551         Use window--display-buffer.
552         (display-buffer-use-some-window): Remove temporary dedication
553         hack by calling get-lru-window and get-largest-window with
554         NOT-SELECTED argument non-nil.  Call window--display-buffer.
556 2012-06-05  Glenn Morris  <rgm@gnu.org>
558         * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
559         Replace external vcdiff script.
561 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
563         * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
565 2012-06-04  Chong Yidong  <cyd@gnu.org>
567         * image.el (imagemagick-types-inhibit): Revert last change.
568         Add INFO and M.
569         (imagemagick-enabled-types): Remove CIN and EPS*.
571 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
573         * emacs-lisp/cl-lib.el: Rename from cl.el.
574         * emacs-lisp/cl.el: New compatibility file.
575         * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
576         * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
577         to obey the "cl-" prefix.
578         * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
580 2012-06-03  Glenn Morris  <rgm@gnu.org>
582         * emacs-lisp/authors.el (authors-aliases): Addition.
584         * cus-start.el (tool-bar-style, tool-bar-max-label-size):
585         Fix :version.
587 2012-06-03  Stefan Merten  <smerten@oekonux.de>
589         * textmodes/rst.el: Add comments.
590         (rst-transition, rst-adornment): New faces.
591         (rst-adornment-faces-alist): Make default safe to reevaluate.
592         Fixes
593         http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
594         Improve customization tags.
595         (rst-define-level-faces): Clarify meaning.
597 2012-06-03  Chong Yidong  <cyd@gnu.org>
599         * progmodes/compile.el (compilation-mode-line-fail)
600         (compilation-mode-line-run, compilation-mode-line-exit):
601         New faces.
602         (compilation-start, compilation-handle-exit): Use them (Bug#11032).
604 2012-06-03  Jack Duthen  <duthen.mac.01@gmail.com>  (tiny change)
606         * progmodes/which-func.el (which-func-update-ediff-windows):
607         New function.  Use it in ediff-select-hook (Bug#11478).
609 2012-06-03  Chong Yidong  <cyd@gnu.org>
611         * bindings.el: Remove explicit help text from format-mode-line.
612         It is now supplied by mode-line-default-help-echo.
613         (mode-line-front-space, mode-line-end-spaces)
614         (mode-line-misc-info): New variables.
615         (mode-line-modes, mode-line-position): Move the default value to
616         the variable definition.
617         (mode-line-default-help-echo): New defcustom.
618         (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
619         (mode-line-modified-help-echo): New functions.
620         (mode-line-mule-info, mode-line-modified): Use them.
621         (mode-line-eol-desc, propertized-buffer-identification):
622         Consistency fixes for help text.
623         (mode-line-coding-system-map): Allow using mouse-3 to invoke
624         set-buffer-file-coding-system (Bug#289).
625         (mode-line-mule-info-help-echo): Update help text.
627 2012-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
629         * simple.el (execute-extended-command): Set real-this-command
630         (bug#11506).
632 2012-06-02  Chong Yidong  <cyd@gnu.org>
634         Remove incorrect uses of "modeline" in comments, docstrings, and
635         function/variable names (Bug#10329).
637         * cus-edit.el (mode-line):
638         * dframe.el (dframe-mouse-hscroll):
639         * emacs-lisp/re-builder.el:
640         * emacs-lisp/easy-mmode.el (define-minor-mode):
641         * frame.el (set-frame-name):
642         * help.el (lookup-minor-mode-from-indicator):
643         * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
644         * progmodes/cc-cmds.el (c-toggle-auto-newline)
645         (c-toggle-hungry-state):
646         * progmodes/antlr-mode.el (antlr-language-alist):
647         * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
648         * progmodes/vhdl-mode.el (vhdl-mode):
649         * progmodes/which-func.el (which-func, which-func-cleanup-function):
650         * term/ns-win.el (ns-face-at-pos):
651         * term/sup-mouse.el (sup-mouse-report):
652         * textmodes/flyspell.el (flyspell-mode-line-string):
653         * textmodes/ispell.el (ispell-highlight-face):
654         * textmodes/reftex-global.el:
655         * vc/vc-arch.el (vc-arch-mode-line-string):
656         * vc/vc-cvs.el (vc-cvs-mode-line-string):
657         * vc/vc-git.el (vc-git-mode-line-string):
658         * vc/vc-hooks.el (vc-display-status)
659         (vc-default-mode-line-string):
660         * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
662         * ansi-color.el (ansi-color-faces-vector): Change default faces.
664         * dired.el (dired-sort-set-mode-line): Rename from
665         dired-sort-set-modeline.  All callers changed.
667         * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
668         eshell-status-in-modeline.
670         * foldout.el (foldout-mode-line-string): Rename from
671         foldout-modeline-string.  All callers changed.
672         (foldout-update-mode-line): Rename from foldout-update-modeline.
674         * subr.el (redraw-modeline): Make into obsolete alias.
676         * calendar/timeclock.el (timeclock-mode-line-display): Rename from
677         timeclock-modeline-display.  Make old name an alias.
678         (timeclock-update-mode-line): Likewise.  All callers changed.
679         (timeclock-mode-line-display): No need to check before using
680         add-hook.
681         (timeclock-relative, timeclock-day-over-hook)
682         (timeclock-use-elapsed, timeclock-mode-string)
683         (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
685         * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
686         crisp-mode-modeline-string.
688         * play/solitaire.el (solitaire-build-mode-line): Rename from
689         solitaire-build-modeline.  All callers changed.
691         * play/zone.el (zone-hiding-mode-line): Rename from
692         zone-hiding-modeline.  All callers changed.
693         (zone): Remove unusued `modeline-hidden-level' property.
695         * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
696         xscheme-modeline-initialize.  All callers changed.
698         * strokes.el (strokes-lighter): Rename from
699         strokes-modeline-string.
701         * textmodes/sgml-mode.el (html-face-tag-alist)
702         (html-tag-face-alist): Use mode-line face instead of obsolete
703         alias modeline.
705 2012-06-02  Stefan Merten  <smerten@oekonux.de>
707         * textmodes/rst.el: Always require `cl'.
708         (rst-mode-map): Fix meaning of C-M-a / C-M-e.
710 2012-06-02  Chong Yidong  <cyd@gnu.org>
712         * image.el (imagemagick-enabled-types): Rename from
713         imagemagick-types-enable.  Add many more types.
714         (imagemagick-types-inhibit): Change default to nil.
715         (imagemagick-filter-types): Caller changed.
717 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
719         * emacs-lisp/cl-macs.el: Use backquotes.
720         (cl-transform-function-property): Use eval-and-compile rather than
721         abusing `require'.
722         (defstruct): Use declare-function instead of with-no-warnings.
724         * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
725         (byte-compile-output-docform): Re-add the print-circle bindings.
726         (byte-compile-fix-header): Use #$ just because it's shorter.
727         (byte-compile-output-file-form): Remove defun/defmacro.
729 2012-06-01  Martin Rudalics  <rudalics@gmx.at>
731         * simple.el (choose-completion): Remove now obsolete binding for
732         owindow.
734 2012-06-01  Michael Albinus  <michael.albinus@gmx.de>
736         * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
737         in order to avoid "Stack overflow in regexp matcher".
739 2012-05-31  Glenn Morris  <rgm@gnu.org>
741         * image.el: For clarity, call imagemagick-register-types at
742         top-level, rather than relying on a custom :initialize.
743         (imagemagick-types-enable): New option.  (Bug#11557)
744         (imagemagick-filter-types): New function.  (Bug#7406)
745         (imagemagick-register-types): Use imagemagick-filter-types.
746         If disabling support, remove elements altogether rather
747         than using an impossible regexp.
748         (imagemagick-types-inhibit): Give it the default init function.
750 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
752         * emacs-lisp/bytecomp.el (byte-compile-fix-header):
753         Handle arbitrary file name lengths (Bug#11585).
755 2012-05-31  Martin Rudalics  <rudalics@gmx.at>
757         * desktop.el (desktop-read): Clear previous and next buffers for
758         all windows and bury *Messages* buffer (bug#11556).
760 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
762         Add `declare' for `defun'.  Align `defmacro's with it.
763         * emacs-lisp/easy-mmode.el (define-minor-mode)
764         (define-globalized-minor-mode): Don't autoload the var definitions.
765         * emacs-lisp/byte-run.el: Use lexical-binding.
766         (defun-declarations-alist, macro-declarations-alist): New vars.
767         (defmacro, defun): Use them.
768         (make-obsolete, define-obsolete-function-alias)
769         (make-obsolete-variable, define-obsolete-variable-alias):
770         Use `declare'.
771         (macro-declaration-function): Mark obsolete.
772         * emacs-lisp/autoload.el: Use lexical-binding.
773         (make-autoload): Add `expansion' arg.  Rely more on macro expansion.
775 2012-05-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
777         * textmodes/ispell.el (ispell-with-no-warnings):
778         Define as a macro.
779         (ispell-kill-ispell, ispell-change-dictionary):
780         Use `called-interactively-p' for Emacs instead of obsolete
781         `interactive-p'.
783 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
785         * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
786         (macro-declaration-function): Move var from C code.
787         (macro-declaration-function): Define function with defalias.
788         * emacs-lisp/macroexp.el (macroexpand-all-1):
789         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
790         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
791         defun/defmacro any more.
792         * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
793         Provide fallback for unknown arglist.
794         (byte-compile-arglist-warn): Change calling convention.
795         (byte-compile-output-file-form): Move print-vars binding.
796         (byte-compile-output-docform): Simplify accordingly.
797         (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
798         (byte-compile-defmacro-declaration): Remove.
799         (byte-compile-file-form-defmumble): Generalize to defalias.
800         (byte-compile-output-as-comment): Return byte-positions.
801         Simplify callers accordingly.
802         (byte-compile-lambda): Use `assert'.
803         (byte-compile-defun, byte-compile-defmacro): Remove.
804         (byte-compile-file-form-defalias):
805         Use byte-compile-file-form-defmumble.
806         (byte-compile-defalias-warn): Remove.
808 2012-05-29  Stefan Merten  <smerten@oekonux.de>
810         * textmodes/rst.el: Silence `checkdoc-ispell' errors where
811         possible.  Fix authors.  Improve comments.  Improve loading of `cl'.
813         (rst-mode-abbrev-table): Merge definition.
814         (rst-mode): Make sure `font-lock-defaults' is buffer local.
815         (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
817 2012-05-29  Ulf Jasper  <ulf.jasper@web.de>
819         * calendar/icalendar.el
820         (icalendar-export-region): Export UID properly.
822 2012-05-29 Leo <sdl.web@gmail.com>
823         * calendar/icalendar.el (icalendar-import-format):
824         Add `icalendar-import-format-uid' (Bug#11525).
825         (icalendar-import-format-uid): New.
826         (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
827         Export UID.
829 2012-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
831         * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
832         different alternative patterns.
833         (pcase-codegen): Be more careful to preserve identity.
834         (pcase--u1): Don't forget to mark vars as used.
836         * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
837         (byte-compile-close-variables): Bind byte-compile--outbuffer here...
838         (byte-compile-from-buffer): ...rather than here.
840         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
841         functions from byte-compile-function-environment.
843 2012-05-29  Troels Nielsen  <bn.troels@gmail.com>
845         * window.el (window-deletable-p): Avoid deleting the root window
846         of a frame with an active minibuffer.
848 2012-05-29  Martin Rudalics  <rudalics@gmx.at>
850         * simple.el (choose-completion): Use quit-window (Bug#11567).
852 2012-05-29  Chong Yidong  <cyd@gnu.org>
854         * whitespace.el (whitespace-cleanup): Fix usage of
855         whitespace-empty-at-bob-regexp (Bug#11492).
857 2012-05-29  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
859         * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
860         revert (Bug#11488).
862 2012-05-29  Juri Linkov  <juri@jurta.org>
864         * isearch.el (isearch-mode-map): Bind `M-s _' to
865         `isearch-toggle-symbol'.  Bind `M-s c' to
866         `isearch-toggle-case-fold'.
867         (search-map): Bind `M-s _' to `isearch-forward-symbol'.
868         (isearch-forward): Add `M-s _' to the docstring.
869         (isearch-forward-symbol, isearch-toggle-case-fold)
870         (isearch-symbol-regexp): New functions.  (Bug#11381)
872 2012-05-29  Juri Linkov  <juri@jurta.org>
874         * isearch.el (isearch-word): Add docstring.  (Bug#11381)
875         (isearch-occur, isearch-search-and-update): If `isearch-word' is
876         a function, call it to get the regexp.
877         (isearch-message-prefix): If `isearch-word' holds a symbol, use its
878         property `isearch-message-prefix' instead of the string "word ".
879         (isearch-search-fun-default): For the case of `isearch-word',
880         return a lambda that calls re-search-forward/re-search-backward
881         with a regexp returned by `word-search-regexp' or by the function
882         in `isearch-word'.
884 2012-05-29  Juri Linkov  <juri@jurta.org>
886         * isearch.el (isearch-search-fun-default): New function.
887         (isearch-search-fun): Move default part to the new function
888         `isearch-search-fun-default'.
889         (isearch-search-fun-function): Set the default value to
890         `isearch-search-fun-default'.  (Bug#11381)
892         * comint.el (comint-history-isearch-end):
893         Use `isearch-search-fun-default'.
894         (comint-history-isearch-search): Use `isearch-search-fun-default'
895         and remove spacial case for `isearch-word'.
896         (comint-history-isearch-wrap): Remove spacial case for
897         `isearch-word'.
899         * hexl.el (hexl-isearch-search-function):
900         Use `isearch-search-fun-default'.
902         * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
903         Use `word-search-regexp' for `isearch-word'.
905         * misearch.el (multi-isearch-search-fun):
906         Use `isearch-search-fun-default'.
908         * simple.el (minibuffer-history-isearch-search):
909         Use `isearch-search-fun-default' and remove spacial case for
910         `isearch-word'.
911         (minibuffer-history-isearch-wrap): Remove spacial case for
912         `isearch-word'.
914         * textmodes/reftex-global.el (reftex-isearch-wrap-function):
915         Remove spacial case for `isearch-word'.
916         (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
918 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
920         Decrease XEmacs incompatibilities.
921         * textmodes/flyspell.el (flyspell-check-pre-word-p):
922         Use `string-match'.
923         (flyspell-delete-region-overlays): Use alternative definition for
924         XEmacs.
925         (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
926         (flyspell-word): Use `process-kill-without-query' if XEmacs.
927         (flyspell-mode-on): Use `interactive-p' if XEmacs.
928         (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
929         `define-obsolete-face-alias' under XEmacs, but old method.
931         * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
932         `with-no-warnings' definition or Emacs alias.
933         (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
934         (ispell-word): Do not use `region-p' if XEmacs.
936 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
938         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
939         Check for `ispell-dictionary-base-alist' instead of full
940         `ispell-dictionary-alist'.
941         (ispell-init-process): Show spellchecker when starting new Ispell
942         process.
944 2012-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
946         * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
947         http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
949 2012-05-27  Juanma Barranquero  <lekktu@gmail.com>
951         * version.el (motif-version-string, gtk-version-string)
952         (ns-version-string): Declare.
954 2012-05-27  Juri Linkov  <juri@jurta.org>
956         * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
957         after the `eval-defun-1' specialcaseing
958         like in `edebug-eval-defun' (bug#10181).
960         * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
961         like in `eval-defun-1'.
963 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
965         * mail/sendmail.el (mail-yank-region):
966         Recognize rmail-yank-current-message in addition to insert-buffer.
967         Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
968         a *mail* buffer created through rmail-start-mail with sendmail as
969         mail-user-agent.
971 2012-05-27  Chong Yidong  <cyd@gnu.org>
973         * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
974         Default to 256 (Bug#11267).
976         * help.el (describe-mode): Doc fix.
978 2012-05-26  Glenn Morris  <rgm@gnu.org>
980         * w32-fns.el (w32-init-info): Remove.
981         * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
983         * info.el (info-initialize): For self-contained NS builds, put the
984         included info/ directory at the front.  (Bug#2791)
986         * paths.el (Info-default-directory-list): Make it a defcustom,
987         mainly so that we can use custom-initialize-delay.
989 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
991         * subr.el (buffer-has-markers-at): Mark obsolete.
993         * subr.el (lambda): Use declare.
995         * emacs-lisp/lisp-mode.el (lambda):
996         * emacs-lisp/edebug.el (lambda): Move properties to its definition.
998 2012-05-26  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
1000         * thingatpt.el (forward-same-syntax): Handle no ARG case.  (Bug#11560)
1002 2012-05-26  Glenn Morris  <rgm@gnu.org>
1004         * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
1006 2012-05-25  Glenn Morris  <rgm@gnu.org>
1008         * paths.el: Remove no-byte-compile.
1009         * loadup.el: No need to load paths.el uncompiled.
1011         * image.el (imagemagick-types-inhibit): Doc fix.
1013         * version.el: Remove no-byte-compile and associated formatting.
1014         * loadup.el: No need to load version.el uncompiled.  AFAICS, this
1015         is ancient code from when there was an "inc-vers.el".
1017 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1019         * progmodes/gdb-mi.el: Minor style changes.
1020         (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
1021         Turn into minor modes.
1022         (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
1023         (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
1024         (gdb-shell): Remove unneeded let-binding.
1025         (gdb-get-many-fields): Eliminate O(n²) behavior.
1027 2012-05-25  Eli Zaretskii  <eliz@gnu.org>
1029         * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
1030         platforms that don't link in fontset.c.
1032 2012-05-25  Juri Linkov  <juri@jurta.org>
1034         Use the same diff color scheme as in modern VCSes (bug#10181).
1036         * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
1037         to avoid confusion with `diff-added' that now uses green colors.
1038         (diff-removed): Use shades of red.
1039         (diff-added): Use shades of green.
1040         (diff-changed): Leave just the yellow color.
1041         (diff-use-changed-face): New variable.
1042         (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
1043         how to highlight context diff changes.
1044         (diff-refine-change): Use shades of yellow.
1045         (diff-refine-removed): New face that uses shades of red.
1046         (diff-refine-added): New face that uses shades of green.
1047         (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
1048         `diff-refine-removed' in the call to `smerge-refine-subst'
1049         depending on the value of `diff-use-changed-face'.
1051         * vc/smerge-mode.el (smerge-mine): Use shades of red.
1052         (smerge-other): Use shades of green.
1053         (smerge-base): Use shades of yellow.
1054         (smerge-refined-change): Empty face.
1055         (smerge-refined-removed): New face that uses shades of red.
1056         (smerge-refined-added): New face that uses shades of green.
1057         (smerge-refine-subst): Rename arg `props' to `props-c'.  Add new
1058         args `props-r' and `props-a', and use them.  Doc fix.
1059         (smerge-refine): Evaluate `smerge-use-changed-face' and depending
1060         on its value use different faces `smerge-refined-change',
1061         `smerge-refined-removed', `smerge-refined-added' in the call to
1062         `smerge-refine-subst'.
1064         * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
1065         Add face condition `min-colors 88' with shades of red.
1066         (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
1067         `min-colors 88' with shades of green.
1068         (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
1069         `min-colors 88' with shades of yellow.
1071 2012-05-24  Glenn Morris  <rgm@gnu.org>
1073         * paths.el (prune-directory-list, remote-shell-program): Move to...
1074         * files.el (prune-directory-list, remote-shell-program): ...here.
1075         For the latter, delay initialization, prefer ssh, just search PATH.
1077         * paths.el (term-file-prefix): Move to faces.el (the only user).
1078         * faces.el (term-file-prefix): Move here, make it a defcustom.
1080         * paths.el (news-directory, news-path, news-inews-program):
1081         Move to gnus/nnspool.el.
1083         * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
1085         * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
1086         * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
1087         Make the latter a defcustom, with a delayed initialization.
1089         * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
1090         These were deleted from Gnus itself late 2010.
1092 2012-05-22  Juanma Barranquero  <lekktu@gmail.com>
1094         * progmodes/which-func.el (which-func-ff-hook):
1095         Check against user-error, not error.
1097         * emacs-lisp/edebug.el (top): Do not load or set up loading of
1098         cl-specs.el, which no longer exists.
1100 2012-05-22  Glenn Morris  <rgm@gnu.org>
1102         * info.el (info-emacs-bug): New command.
1103         * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
1104         * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
1106 2012-05-21  Glenn Morris  <rgm@gnu.org>
1108         * makefile.w32-in (update-subdirs-SH):
1109         * Makefile.in (update-subdirs): Update for moved update-subdirs.
1111 2012-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1113         * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
1115         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1116         Simplify Maven regexp, and make sure the file can't start with a space
1117         (bug#11517).
1119 2012-05-21  Glenn Morris  <rgm@gnu.org>
1121         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1122         Scrap superfluous subshells.
1124 2012-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1126         * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
1127         (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
1129 2012-05-19  Jay Belanger  <jay.p.belanger@gmail.com>
1131         * calc/calc.el (calc-ensure-consistent-units): New variable.
1133         * calc/calc-units.el (math-consistent-units-p)
1134         (math-check-unit-consistency): New functions.
1135         (calc-quick-units, calc-convert-units):
1136         Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
1137         is non-nil.
1138         (calc-extract-units): Fix typo.
1140 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1142         * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
1144         * textmodes/flyspell.el: Commenting style, plus code simplifications.
1145         (flyspell-default-deplacement-commands): Don't spell check after
1146         repeated window/frame switches (e.g. triggered by mouse-movement).
1147         (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
1148         (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
1149         (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
1150         (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
1151         Remove unused vars.
1152         (flyspell-get-casechars, flyspell-get-not-casechars):
1153         Simplify; Don't bother removing a ] just to add it back.
1154         * textmodes/ispell.el (ispell-program-name): Use executable-find.
1156 2012-05-18  Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1158         * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
1159         New functions.
1160         (math-function-table): Add support for more C functions.
1162 2012-05-18  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1164         * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1165         (flyspell-debug-signal-word-checked): Protect delay handling for
1166         otherchars against empty otherchars.
1168 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1170         * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
1171         their respective macro declarations.
1172         * skeleton.el (define-skeleton):
1173         * progmodes/compile.el (define-compilation-mode):
1174         * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
1175         (define-ibuffer-filter):
1176         * emacs-lisp/generic.el (define-generic-mode):
1177         * emacs-lisp/easy-mmode.el (define-minor-mode)
1178         (define-globalized-minor-mode):
1179         * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
1180         * emacs-lisp/byte-run.el (defsubst):
1181         * custom.el (deftheme): Add doc-string metadata.
1183 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1185         * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
1187 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1189         * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
1191         * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
1192         * emacs-lisp/cl-macs.el: Idem.
1193         * emacs-lisp/cl-specs.el: Remove.
1195 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1197         Minor renaming of internal CL functions and variables.
1198         * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
1199         (cl--position): Rename from cl-position.
1200         (cl--delete-duplicates): Rename from cl-delete-duplicates.
1201         * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
1202         (cl--random-state): Rename from *random-state*.
1204 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1206         * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
1207         parens around the arg list (bug#11499).
1209 2012-05-17  Juri Linkov  <juri@jurta.org>
1211         * isearch.el (word-search-regexp, word-search-backward)
1212         (word-search-forward, word-search-backward-lax)
1213         (word-search-forward-lax): Move functions from search.c
1214         (bug#10145, bug#11381).
1216 2012-05-16  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1218         * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1219         (flyspell-debug-signal-word-checked): Delay for otherchars as for
1220         normal word components.
1222 2012-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1224         * minibuffer.el (completion--sifn-requote): Fix last change.
1225         (minibuffer-local-must-match-filename-map):
1226         Move define-obsolete-variable-alias before its var.
1228 2012-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1230         * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
1232         * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
1233         behavior.
1234         (completion--string-equal-p): New function.
1235         (completion--twq-all): Use it to get better assertion failure data.
1237         Only handle ".." and '..' quoting in shell-mode (bug#11466).
1238         * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
1239         (shell--requote-argument): New functions.
1240         (shell-completion-vars): Use them.
1241         (shell--parse-pcomplete-arguments): Rename from
1242         shell-parse-pcomplete-arguments.
1243         * comint.el (comint-word): Obey comint-file-name-quote-list.  Simplify.
1244         (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
1245         Obey comint-file-name-quote-list.
1247         * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
1248         (smie-indent-keyword): Use it.
1250 2012-05-14  Stefan Merten  <smerten@oekonux.de>
1252         * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
1254 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1256         * net/rlogin.el (rlogin-mode-map): Fix last change.
1258 2012-05-14  Jason L. Wright  <jason.wright@inl.gov>  (tiny change)
1260         * mail/smtpmail.el (smtpmail-send-command): Send the command and
1261         the following \r\n using a single `process-send-string', since the
1262         Lotus SMTP server refuses to accept any commands if they are sent
1263         with two `process-send-string's (Bug#11444).
1265 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1267         * shell.el (shell-parse-pcomplete-arguments):
1268         Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
1270 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
1272         * image-mode.el: Fit to width/height for rotated images (Bug#11431).
1273         (image-transform-scale, image-transform-right-angle-fudge): New vars.
1274         (image-transform-width, image-transform-fit-width): New functions.
1275         (image-transform-properties): Use them.
1276         (image-transform-check-size): New function.
1277         (image-toggle-display-image): Use it (for testing).
1278         (image-transform-set-rotation): Reduce angle mod 360.
1279         Delete obsolete comment.
1281 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
1283         * image-mode.el: Fix scaling (bug#11399).
1284         (image-transform-resize): Doc fix.
1285         (image-transform-properties): Default scale is 1 and height should
1286         be an integer.
1288 2012-05-13  Johan Bockgård  <bojohan@gnu.org>
1290         * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
1291         than hard-coding `car', to fix misbehavior when moving forward.
1293 2012-05-13  Chong Yidong  <cyd@gnu.org>
1295         * emacs-lisp/tabulated-list.el (tabulated-list-format)
1296         (tabulated-list-entries, tabulated-list-padding)
1297         (tabulated-list-sort-key): Make permanent-local.
1299         * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
1300         (electric-buffer-list): Put electric buffer menu
1301         command descriptions in this docstring, instead of the docstring
1302         of electric-buffer-menu-mode.  Code cleanups.
1303         (electric-buffer-menu-mode): Use define-derived-mode.  Rename from
1304         Electric-buffer-menu-mode.
1305         (electric-buffer-update-highlight): Minor code cleanup.
1307 2012-05-13  Michael Albinus  <michael.albinus@gmx.de>
1309         * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
1310         (Bug#11447)
1312 2012-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1314         Move define-obsolete-variable-alias before the var's definition.
1315         * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
1316         * tooltip.el (tooltip-hook):
1317         * textmodes/reftex-toc.el (reftex-toc-map):
1318         * textmodes/reftex-sel.el (reftex-select-label-map)
1319         (reftex-select-bib-map):
1320         * textmodes/reftex-index.el (reftex-index-map)
1321         (reftex-index-phrases-map):
1322         * speedbar.el (speedbar-syntax-table, speedbar-key-map):
1323         * progmodes/meta-mode.el (meta-mode-map):
1324         * novice.el (disabled-command-hook):
1325         * loadhist.el (unload-hook-features-list):
1326         * frame.el (blink-cursor):
1327         * files.el (find-file-not-found-hooks, write-file-hooks)
1328         (write-contents-hooks):
1329         * emulation/tpu-edt.el (GOLD-map):
1330         * emacs-lock.el (emacs-lock-from-exiting):
1331         * emacs-lisp/generic.el (generic-font-lock-defaults):
1332         * emacs-lisp/chart.el (chart-map):
1333         * dos-fns.el (register-name-alist):
1334         * dired-x.el (dired-omit-files-p):
1335         * desktop.el (desktop-enable):
1336         * cus-edit.el (custom-mode-hook):
1337         * buff-menu.el (buffer-menu-mode-hook):
1338         * bookmark.el (bookmark-read-annotation-text-func)
1339         (bookmark-exit-hooks):
1340         * allout.el (allout-mode-deactivate-hook)
1341         (allout-exposure-change-hook, allout-structure-added-hook)
1342         (allout-structure-deleted-hook, allout-structure-shifted-hook):
1343         * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
1344         (dirtrack-debug): Move call to define-obsolete-variable-alias so it
1345         comes before the corresponding variable's definition.
1347 2012-05-12  Chong Yidong  <cyd@gnu.org>
1349         * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
1350         (Buffer-menu-mouse-select): Restore function (Bug#11459).
1351         (Buffer-menu-mode-map): Bind it.
1352         (Buffer-menu--pretty-name): Add a mouse-face property.
1354 2012-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1356         * progmodes/prolog.el: Use SMIE.  Cleanup regexp setup.
1357         (prolog-upper-case-string, prolog-lower-case-string)
1358         (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
1359         (prolog-use-smie, prolog-smie-grammar): New vars.
1360         (prolog-smie-forward-token, prolog-smie-backward-token)
1361         (prolog-smie-rules): New funs.
1362         (prolog-comment-indent): Remove.
1363         (prolog-mode-variables): Use default comment indentation instead.
1364         Setup SMIE.
1365         (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
1366         (prolog-mode): Don't call them any more.
1367         (prolog-electric-colon, prolog-electric-dash)
1368         (prolog-edit-menu-insert-move): Use indent-according-to-mode.
1370         * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
1372         * minibuffer.el (completion--twq-all): Again, allow case differences.
1374         * term.el: Move keymap initialization code to be more idiomatic.
1375         (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
1376         (term-terminal-menu): Move initialization into declaration.
1377         (term-escape-char): Let the user set it in her .emacs.
1379         * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
1380         Provide SMIE-based indentation (not enabled by default yet).
1381         (sh-mode-map): Don't bind electric keys.
1382         Use electric-pair-mode instead of skeleton-pair.
1383         (sh-assignment-regexp): Fit within 80 columns.
1384         (sh-indent-supported): Specify actual shell name instead of boolean.
1385         (sh--maybe-here-document): New fun, from sh-maybe-here-document.
1386         (sh-maybe-here-document): Use it.  Make obsolete.
1387         (sh-electric-here-document-mode) New minor mode.
1388         (sh-mode): Use it.  Don't set sh-indent-supported-here here.
1389         (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
1390         (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
1391         (sh-smie-rc-grammar, sh-use-smie): New vars.
1392         (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
1393         (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
1394         (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
1395         (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
1396         (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
1397         (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
1398         (sh-set-shell): Use smie-setup if requested.
1400         * term.el (term-set-escape-char): Properly set term-escape-char.
1401         See http://stackoverflow.com/questions/10524656.
1403 2012-05-10  Chong Yidong  <cyd@gnu.org>
1405         * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
1406         Use url-generic-parse-url, and handle host names and Windows
1407         filenames properly.
1408         (ffap-url-unwrap-remote): Use url-generic-parse-url.
1409         (ffap-url-unwrap-remote): Accept list values, specifying a list of
1410         URL schemes to work on.
1411         (ffap--toggle-read-only): New function.
1412         (ffap-read-only, ffap-read-only-other-window)
1413         (ffap-read-only-other-frame): Use it.
1414         (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
1415         necessary for ffap-url-unwrap-remote.
1417 2012-05-10  Dave Abrahams  <dave@boostpro.com>
1419         * cus-start.el (create-lockfiles): Add it.
1421 2012-05-09  Chong Yidong  <cyd@gnu.org>
1423         * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
1424         (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
1426 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1428         * shell.el (shell-completion-vars): Fix last change (bug#11348).
1430 2012-05-09  Chong Yidong  <cyd@gnu.org>
1432         * ansi-color.el (ansi-color-process-output): Check for validity of
1433         comint-last-output-start before using it.  This avoids a bad
1434         interaction with gdb-mi's input/output buffer.
1436 2012-05-09  Glenn Morris  <rgm@gnu.org>
1438         * files.el (dir-locals-read-from-file):
1439         Mention dir-locals in any error message.
1441 2012-05-09  Chong Yidong  <cyd@gnu.org>
1443         * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
1444         package (Bug#11410).
1446         * emacs-lisp/package.el (package-buffer-info): Avoid putting local
1447         variables into description.
1449 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1451         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
1452         shell-delimiter-argument-list (bug#11348).
1453         (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
1455 2012-05-09  Juanma Barranquero  <lekktu@gmail.com>
1457         * textmodes/rst.el: Silence byte-compiler warnings.
1458         (rst-re-alist, rst-reset-section-caches): Move around.
1459         (rst-re): Use `characterp', not `char-valid-p'.
1460         (font-lock-beg, font-lock-end): Declare.
1462         * progmodes/idlw-shell.el (specs): Remove reference to deleted
1463         variable `idlwave-shell-activate-alt-keybindings' and simplify.
1465         * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
1467 2012-05-08  Glenn Morris  <rgm@gnu.org>
1469         * files.el (auto-mode-alist): Treat ".make" like ".mk".
1471 2012-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1473         * vc/log-edit.el: Add GNU coding standards highlighting.
1474         (log-edit-font-lock-gnu-style)
1475         (log-edit-font-lock-gnu-keywords): New vars.
1476         (log-edit-font-lock-keywords): New fun.
1477         (log-edit-mode): Don't fold case in font-lock.
1478         (log-edit-font-lock-keywords): Do not assume case-folding.
1480         * imenu.el: Misc cleanup.  Make docstrings out of comments.
1481         Use lexical-binding.
1482         (imenu--index-alist, imenu--last-menubar-index-alist)
1483         (imenu-menubar-modified-tick): Use defvar-local.
1484         (imenu--split-menu): Remove unused var.
1485         (imenu--cleanup-seen): Declare as global.
1486         (imenu--cleanup): Use dolist.
1488         * subr.el (defvar-local): Add debug spec and doc-string position.
1490 2012-05-08  Glenn Morris  <rgm@gnu.org>
1492         * lisp/language/burmese.el, language/cham.el, language/czech.el:
1493         * language/english.el, language/georgian.el, language/greek.el:
1494         * language/japanese.el, language/khmer.el, language/korean.el:
1495         * language/lao.el, language/misc-lang.el, language/romanian.el:
1496         * language/sinhala.el, language/slovak.el, language/tai-viet.el:
1497         * language/thai.el, language/utf-8-lang.el:
1498         Remove no-byte-compile setting.
1500         * play/zone.el (zone-pgm-stress): Don't pollute kill-ring.  (Bug#11388)
1502 2012-05-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
1504         * progmodes/make-mode.el (makefile-browse):
1505         Remove unnecessary interactive.  (Bug#11324)
1507 2012-05-07  Glenn Morris  <rgm@gnu.org>
1509         * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
1511         * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
1513 2012-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1515         * loadup.el: Preload newcomment.el.
1516         * newcomment.el: Move autoload-only code to toplevel.
1518         * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
1519         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
1520         Handle new :right-align column property.
1521         (tabulated-list-print-col): Idem, plus use `display' text-property to
1522         try and preserve alignment for variable pitch fonts.
1524 2012-05-07  Chong Yidong  <cyd@gnu.org>
1526         * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
1527         (tabulated-list-use-header-line): New var.
1528         (tabulated-list-init-header): Use it.
1529         (tabulated-list-print-fake-header): New function.
1530         (tabulated-list-print): Use it.
1531         (tabulated-list-sort-button-map): Add non-header-line commands.
1532         (tabulated-list-init-header): Add column name property to basic
1533         labels as well.
1534         (tabulated-list-col-sort): Handle non-header-line button case.
1535         (tabulated-list--sort-by-column-name): Fix a corner case.
1537         * buff-menu.el (list-buffers--refresh):
1538         Handle Buffer-menu-use-header-line.
1540 2012-05-06  Chong Yidong  <cyd@gnu.org>
1542         * buff-menu.el: Convert to Tabulated List mode.
1543         (Buffer-menu-buffer+size-width): Make obsolete.
1544         (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
1545         (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
1546         (Buffer-menu-mode): Derive from tabulated-list-mode.  Move command
1547         documentation into docstring of buffer-menu.
1548         (Buffer-menu-toggle-files-only): Add an informative message.
1549         (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
1550         (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
1551         (Buffer-menu-unmark, Buffer-menu-backup-unmark)
1552         (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
1553         (Buffer-menu-execute, Buffer-menu-select)
1554         (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
1555         (Buffer-menu-bury): Use Tabulated List machinery.
1556         (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
1557         (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
1558         Delete.
1559         (list-buffers--refresh): New function.
1560         (list-buffers-noselect): Use it.
1561         (tabulated-list-entry-size->, Buffer-menu--pretty-name)
1562         (Buffer-menu--pretty-file-name): New helper functions.
1564         * loadup.el: Preload tabulated-list.
1566         * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
1567         tabulated-list-sort-column.
1568         (tabulated-list-init-header): Add the initial aligning space even
1569         if tabulated-list-padding is zero.
1571 2012-05-06  Christopher Schmidt  <christopher@ch.ristopher.com>
1573         * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
1574         whose cdr is not a cons cell correctly (bug#11038).
1576 2012-05-06  Chong Yidong  <cyd@gnu.org>
1578         * emacs-lisp/tabulated-list.el (tabulated-list-format):
1579         Accept additional plist in column descriptors.
1580         (tabulated-list-init-header): Obey it.
1581         (tabulated-list-get-entry): New function.
1582         (tabulated-list-put-tag): Use it.  Use string-width instead of
1583         length.
1584         (tabulated-list--column-number): New function.
1585         (tabulated-list-print): Use it.
1586         (tabulated-list-print-col): New function.
1587         Set `tabulated-list-column-name' property on each column's text.
1588         (tabulated-list-print-entry): Use it.
1589         (tabulated-list-delete-entry, tabulated-list-set-col):
1590         New functions.
1591         (tabulated-list-sort-column): New command (Bug#11337).
1593         * buff-menu.el (list-buffers): Move C-x C-b binding from
1594         buff-menu.el to bindings.el.
1596         * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
1597         :advertised-binding feature.
1599 2012-05-06  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
1601         * progmodes/compile.el (compilation-internal-error-properties):
1602         Calculate start position correctly when end-col is set but
1603         end-line is not (Bug#11382).
1605 2012-05-06  Wolfgang Jenkner  <wjenkner@inode.at>
1607         * man.el (Man-unindent): Use text-property-default-nonsticky to
1608         prevent untabify from inheriting face properties (Bug#11408).
1610 2012-05-05  Stefan Merten  <smerten@oekonux.de>
1612         * textmodes/rst.el: Major merge with upstream development up to
1613         Docutils SVN r7399 / rst.el V1.2.1.
1615         Clarify maintainership and authors.
1617         (rst-extract-version, rst-cvs-header, rst-cvs-rev)
1618         (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
1619         (rst-official-version, rst-official-cvs-rev, rst-version)
1620         (rst-package-emacs-version-alist): New functions and variables
1621         for version information.
1623         (rst-bullets, rst-uri-schemes, rst-adornment-chars)
1624         (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
1625         (rst-mode-syntax-table, rst-mode): New and corrected functions
1626         and variables representing reStructuredText features.
1628         (rst-re): New function for reStructuredText regexes.  Use in
1629         many places.
1631         (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
1632         (rst-mode-map): Rebind keys.
1634         (rst-mode-lazy, rst-font-lock-keywords)
1635         (rst-font-lock-extend-region)
1636         (rst-font-lock-extend-region-internal)
1637         (rst-font-lock-extend-region-extend)
1638         (rst-font-lock-find-unindented-line-limit)
1639         (rst-font-lock-find-unindented-line-match)
1640         (rst-adornment-level, rst-font-lock-adornment-level)
1641         (rst-font-lock-adornment-match)
1642         (rst-font-lock-handle-adornment-pre-match-form)
1643         (rst-font-lock-handle-adornment-matcher): Major revision of
1644         font-locking.  Integrate with other code.  Use `jit-lock-mode'.
1646         (rst-preferred-adornments, rst-adjust-hook)
1647         (rst-new-adornment-down, rst-preferred-bullets)
1648         (rst-preferred-bullets, rst-indent, rst-indent-width)
1649         (rst-indent-field, rst-indent-literal-normal)
1650         (rst-indent-literal-minimized, rst-indent-comment): Change,
1651         extend and improve customization.
1653         (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
1654         (rst-normalize-cursor-position, rst-get-decoration)
1655         (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
1656         (rst-rstrip, rst-toc-insert-find-delete-contents)
1657         (rst-shift-fill-region, rst-compute-bullet-tabs)
1658         (rst-debug-print-tabs, rst-debug-mark-found)
1659         (rst-shift-region-guts, rst-shift-region-right)
1660         (rst-shift-region-left, rst-use-char-classes)
1661         (rst-font-lock-keywords-function)
1662         (rst-font-lock-indentation-point)
1663         (rst-font-lock-find-unindented-line-begin)
1664         (rst-font-lock-find-unindented-line-end)
1665         (rst-font-lock-find-unindented-line)
1666         (rst-font-lock-adornment-point, rst-font-lock-level)
1667         (rst-adornment-level-alist): Remove functions and variables.
1669         (rst-compare-adornments, rst-get-adornment-match)
1670         (rst-suggest-new-adornment, rst-get-adornments-around)
1671         (rst-adornment-complete-p, rst-get-next-adornment)
1672         (rst-adjust-adornment, rst-display-adornments-hierarchy)
1673         (rst-straighten-adornments): Standardize function names to
1674         use "adornment" instead of "decoration".  Correct callers.
1675         Similar standardizing in many places.
1677         (rst-update-section, rst-adjust, rst-promote-region)
1678         (rst-enumerate-region, rst-bullet-list-region)
1679         (rst-repeat-last-character): Correct use of `interactive'.
1681         (rst-classify-adornment, rst-find-all-adornments)
1682         (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
1683         (rst-find-leftmost-column, rst-repeat-last-character):
1684         Refactor functions.
1686         (rst-find-title-line, rst-reset-section-caches)
1687         (rst-get-adornments-around, rst-adjust-adornment-work)
1688         (rst-arabic-to-roman, rst-roman-to-arabic)
1689         (rst-insert-list-pos, rst-insert-list-new-item)
1690         (rst-insert-list-continue, rst-insert-list, rst-forward-line):
1691         New functions.
1693         (rst-all-sections, rst-section-hierarchy)
1694         (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
1695         New variables.
1697         (rst-toc-return-wincfg, rst-toc-quit-window): Use window
1698         configuration instead of only buffer.  Change where necessary.
1700         (rst-line-tabs, rst-compute-tabs, rst-indent-line)
1701         (rst-shift-region, rst-adaptive-fill): New functions for
1702         indentation and filling.
1704         (rst-comment-line-break, rst-comment-indent)
1705         (rst-comment-insert-comment, rst-comment-region)
1706         (rst-uncomment-region): New functions for handling comments.
1708         (rst-compile): Quote shell arguments.
1710         (rst-compile-pdf-preview, rst-compile-slides-preview):
1711         Delete temporary files after use.
1713 2012-05-05  Glenn Morris  <rgm@gnu.org>
1715         * calendar/cal-html.el: Optionally include holidays in the output.
1716         Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
1717         (cal-html-holidays): New option.
1718         (cal-html-css-default): Add holiday entry.
1719         (holiday-in-range): Autoload it.
1720         (cal-html-htmlify-entry): Add optional class argument.
1721         (cal-html-htmlify-list): Add optional holidays argument.
1722         (cal-html-insert-agenda-days): Include holidays in the output.
1723         (cal-html-one-month): Maybe include holidays.
1725         * calendar/holidays.el (holiday-in-range):
1726         Move here from cal-tex-list-holidays.
1727         * calendar/cal-tex.el (cal-tex-list-holidays):
1728         Make it an obsolete alias for holiday-in-range.  Update all callers.
1730 2012-05-05  Chong Yidong  <cyd@gnu.org>
1732         * select.el (xselect--encode-string): Always use utf-8 for TEXT on
1733         Nextstep.
1735 2012-05-05  Ransom Williams  <auvergnerw@gmail.com>  (tiny change)
1737         * files.el (file-auto-mode-skip): New var.
1738         (set-auto-mode-1): Use it.
1740 2012-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1742         * repeat.el: Use lexical-binding.
1743         (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
1744         (repeat-undo-count): Remove.
1745         (repeat):
1746         * progmodes/octave-mod.el (octave-abbrev-start):
1747         * progmodes/f90.el (f90-abbrev-start):
1748         * face-remap.el (text-scale-adjust):
1749         * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
1751         * emacs-lisp/pcase.el (pcase--let*): New function.
1752         (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
1753         a bit more.
1754         (pcase--split-pred): Be more clever about ruling out overlap between
1755         a predicate and some constant pattern.
1756         (pcase--q1): Use `null' instead of (eq foo nil).
1758         * subr.el (setq-local, defvar-local): New macros.
1759         (kbd): Redefine as an alias.
1760         (with-selected-window): Leave unrelated frames alone.
1761         (set-temporary-overlay-map): New function.
1763 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1765         * subr.el (user-error): New function.
1766         * window.el (switch-to-buffer):
1767         * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
1768         (smerge-match-conflict):
1769         * simple.el (previous-matching-history-element)
1770         (next-matching-history-element, goto-history-element, undo-more)
1771         (undo-start):
1772         * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
1773         (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
1774         (next-file, tags-loop-scan, list-tags, complete-tag):
1775         * progmodes/compile.el (compilation-loop):
1776         * mouse.el (mouse-minibuffer-check):
1777         * man.el (Man-bgproc-sentinel, Man-goto-page):
1778         * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
1779         (Info-history-forward, Info-follow-reference, Info-menu)
1780         (Info-extract-menu-item, Info-extract-menu-counting)
1781         (Info-forward-node, Info-backward-node, Info-next-menu-item)
1782         (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
1783         (Info-next-reference, Info-prev-reference, Info-index)
1784         (Info-index-next, Info-follow-nearest-node)
1785         (Info-copy-current-node-name):
1786         * imenu.el (imenu--make-index-alist)
1787         (imenu-default-create-index-function, imenu-add-to-menubar):
1788         * files.el (basic-save-buffer, recover-file):
1789         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
1790         * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
1791         (checkdoc-message-text, checkdoc-defun):
1792         * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
1793         * cus-edit.el (customize-changed-options, customize-rogue)
1794         (customize-saved, custom-variable-set, custom-variable-mark-to-save)
1795         (custom-variable-mark-to-reset-standard)
1796         (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
1797         (custom-file):
1798         * completion.el (check-completion-length):
1799         * comint.el (comint-search-arg)
1800         (comint-previous-matching-input-string-position)
1801         (comint-previous-matching-input)
1802         (comint-replace-by-expanded-history-before-point, comint-send-input)
1803         (comint-copy-old-input, comint-backward-matching-input)
1804         (comint-goto-process-mark, comint-set-process-mark):
1805         * calendar/calendar.el (calendar-cursor-to-date): Use it.
1806         * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
1808 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1810         * dabbrev.el (dabbrev--ignore-case-p): New function.
1811         (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
1812         Use it.
1814         * files.el (automount-dir-prefix): Mark as obsolete.
1816 2012-05-04  Glenn Morris  <rgm@gnu.org>
1818         * patcomp.el, play/bruce.el: Move to obsolete/.
1820 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
1822         Fix minor Y10k bugs.
1823         * arc-mode.el (archive-unixdate):
1824         * autoinsert.el (auto-insert-alist):
1825         * calc/calc-forms.el (math-this-year):
1826         * emacs-lisp/copyright.el (copyright-current-year)
1827         (copyright-update-year, copyright):
1828         * tar-mode.el (tar-clip-time-string):
1829         * time.el (display-time-update):
1830         Don't assume years have 4 digits.
1832 2012-05-04  Chong Yidong  <cyd@gnu.org>
1834         * dos-w32.el (file-name-buffer-file-type-alist)
1835         (direct-print-region-use-command-dot-com):
1836         * ffap.el (ffap-menu-regexp):
1837         * find-file.el (ff-special-constructs):
1838         * follow.el (follow-debug):
1839         * forms.el (forms--debug):
1840         * iswitchb.el (iswitchb-all-frames):
1841         * ido.el (ido-all-frames):
1842         * emacs-lisp/timer.el (timer-max-repeats):
1843         * mail/feedmail.el (feedmail-mail-send-hook)
1844         (feedmail-mail-send-hook-queued):
1845         * mail/footnote.el (footnote-signature-separator):
1846         * mail/mailabbrev.el (mail-alias-separator-string)
1847         (mail-abbrev-mode-regexp):
1848         * mail/rmail.el (rmail-speedbar-match-folder-regexp):
1849         * progmodes/idlwave.el (idlwave-libinfo-file)
1850         (idlwave-default-completion-case-is-down)
1851         (idlwave-library-routines): Convert defvars to defcustoms.
1853         * mail/rmail.el (rmail-decode-mime-charset):
1854         * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
1855         (idlwave-shell-fix-inserted-breaks)
1856         (idlwave-shell-activate-alt-keybindings)
1857         (idlwave-shell-use-breakpoint-glyph):
1858         * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
1860 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1862         * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
1864 2012-05-03  Wilson Snyder  <wsnyder@wsnyder.org>
1866         * progmodes/verilog-mode.el (font-lock-keywords):
1867         Fix mis-highligting auto.  Reported by Craig Barner.
1868         (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
1869         defines from global name space. Reported by Dan Dever.
1870         (verilog-auto-reset, verilog-auto-reset-widths)
1871         (verilog-auto-tieoff): Support using unbased numbers for
1872         AUTORESET and AUTOTIEOFF.
1873         (verilog-submit-bug-report): Update variable list.
1874         (verilog-read-auto-params): Fix AUTOINPUT regexps containing
1875         parenthesis from not matching. Reported by Michael Rytting.
1876         (verilog-auto-template-lint): Fix hash error when linting modules
1877         with no used templates.
1878         (verilog-warn, verilog-warn-error)
1879         (verilog-warn-fatal): When non-interactive report multiple
1880         warnings before exiting.  Suggested by Brad Dobbie.
1881         (verilog-auto-template-lint, verilog-auto-template-warn-unused)
1882         (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
1883         to report unused template errors.  Reported by Brad Dobbie.
1884         (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
1885         nets, bug438. Reported by Vns Blore.
1886         (verilog-auto-inout-module, verilog-auto-reg)
1887         (verilog-read-decls, verilog-read-sub-decls-sig)
1888         (verilog-signals-edit-wire-reg, verilog-signals-with):
1889         Fix passing of Verilog data types in ANSI input/output ports
1890         such as "output logic" into the AUTOs. Special case "wire" and
1891         "reg" for backwards compatibility presuming Verilog 2001.
1892         (verilog-auto-ascii-enum): Add "auto enum" as alias.
1893         (verilog-preprocess): Fix replication of preprocess output.
1894         Reported by Brad Dobbie.
1895         (verilog-auto-inst-interfaced-ports):
1896         Create verilog-auto-inst-interfaced-ports, bug429.
1897         Reported by Julian Gorfajn.
1898         (verilog-after-save-font-hook)
1899         (verilog-before-save-font-hook): New variable.
1900         (verilog-modi-cache-results, verilog-save-font-mod-hooked)
1901         (verilog-save-font-mods): Wrap disabling fontification, reported
1902         by David Rogoff.
1903         (verilog-do-indent, verilog-pretty-declarations-auto)
1904         (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
1905         Reported by Pierre-David Pfister.
1906         (verilog-set-auto-endcomments): Fix endtask auto comments outside
1907         of class declarations, bug292.  Reported by Kevin Heilman.
1908         (verilog-read-decls): Fix 'parameter type' not appearing in
1909         AUTOINSTPARAM, bug340.  Reported by Jonathan Greenlaw.
1910         (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
1911         AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
1912         (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
1913         Reported by David Kravitz.
1915 2012-05-03  Michael McNamara  <mac@mail.brushroad.com>
1917         * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
1918         assignment with tests in ifs and for loops.
1919         (verilog-extended-complete-re, verilog-complete-reg): Change so
1920         that DPI inport functions don't look like fuction declarations.
1921         (verilog-pretty-expr): Don't line up assignment
1922         operations to the test and increment in if and for loops
1923         (verilog-extended-complete-re, verilog-complete-reg): Change so
1924         that DPI inport functions don't look like fuction declarations
1926 2012-05-03  Kenichi Handa  <handa@m17n.org>
1928         * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
1929         decoding, and show a warning message without signaling an error
1930         (Bug#11282).
1932 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1934         * emacs-lisp/bytecomp.el
1935         (byte-compile-file-form-custom-declare-variable): Compile all elements,
1936         since cconv.el might have introduced :fun-body, internal-make-closure,
1937         and friends for bytecomp to handle (bug#11391).
1938         * custom.el (defcustom): Avoid ((λ ..) ..).
1940 2012-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1942         * subr.el (read-passwd): Better clean after ourselves (bug#11392).
1944 2012-05-02  Juanma Barranquero  <lekktu@gmail.com>
1946         * notifications.el (dbus-debug):
1947         * term/linux.el (gpm-mouse-enable):
1948         * term/screen.el (xterm-register-default-colors): Declare.
1950 2012-05-02  Chong Yidong  <cyd@gnu.org>
1952         * cus-start.el (gc-cons-percentage, exec-suffixes)
1953         (dos-display-scancodes, dos-hyper-key, dos-super-key)
1954         (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
1955         (make-cursor-line-fully-visible, void-text-area-pointer)
1956         (font-list-limit): Add customization data.
1958         * allout.el (allout-exposure-change-functions)
1959         (allout-structure-added-functions)
1960         (allout-structure-deleted-functions)
1961         (allout-structure-shifted-functions): Rename abnormal hooks from
1962         *-hook, and convert to defcustoms.
1963         (allout-after-copy-or-kill-hook, allout-post-undo-hook):
1964         Convert to defcustoms.
1965         (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
1967         * allout-widgets.el: Hook callers changed.
1969 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
1971         * mail/rmail.el (rmail-yank-current-message): Use the encoding of
1972         the yanked message in preference to the default value of
1973         buffer-file-coding-system.
1975 2012-05-02  Martin Rudalics  <rudalics@gmx.at>
1977         * window.el (display-buffer--action-function-custom-type):
1978         Fix entry.
1980 2012-05-02  Alan Mackenzie  <acm@muc.de>
1982         * progmodes/cc-defs.el (c-version): Update to 5.32.3.
1984 2012-05-01  Glenn Morris  <rgm@gnu.org>
1986         * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
1988         * eshell/esh-cmd.el (eshell-debug-command): Doc fix.  Add :set.
1990         * cus-edit.el (custom-variable-documentation): Simplify with format.
1992 2012-05-01  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
1993             Stefan Monnier  <monnier@iro.umontreal.ca>
1995         * simple.el (suggest-key-bindings, execute-extended-command):
1996         Move from keyboard.c.
1998 2012-05-01  Chong Yidong  <cyd@gnu.org>
2000         * follow.el: Eliminate advice.
2001         (set-process-filter, process-filter, sit-for): Advice deleted.
2002         (follow-mode-off-hook): Obsolete hook removed.
2003         (follow-avoid-tail-recenter-p, follow-process-filter-alist):
2004         Vars deleted.
2005         (follow-auto): Use a :set function.
2006         (follow-mode): Rewritten.  Don't advise process filters.
2007         (follow-switch-to-current-buffer-all, follow-scroll-up)
2008         (follow-scroll-down): Assume follow-mode is bound.
2009         (follow-comint-scroll-to-bottom)
2010         (follow-align-compilation-windows): New functions.
2011         (follow--window-sorter): New function.
2012         (follow-all-followers): Use it to explicitly sort windows by their
2013         positions; don't make assumptions about next-window order.
2014         (follow-windows-start-end, follow-delete-other-windows-and-split)
2015         (follow-calc-win-start): Doc fix.
2016         (follow-windows-aligned-p, follow-select-if-visible): Don't call
2017         vertical-motion unnecessarily.
2018         (follow-adjust-window): New function.
2019         (follow-post-command-hook): Use it.
2020         (follow-call-set-process-filter, follow-call-process-filter)
2021         (follow-intercept-process-output, follow-tidy-process-filter-alist)
2022         (follow-stop-intercept-process-output, follow-generic-filter):
2023         Functions deleted.
2024         (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
2025         (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
2026         New functions, replacing advice on scroll-bar-* commands.
2027         (follow-mwheel-scroll): New function (Bug#4112).
2029         * comint.el (comint-adjust-point): New function.
2030         (comint-postoutput-scroll-to-bottom): Use it.
2031         Call follow-comint-scroll-to-bottom for Follow mode buffers.
2033 2012-05-01  Glenn Morris  <rgm@gnu.org>
2035         * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
2036         * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
2037         * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
2038         * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
2039         * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
2040         Remove no-byte-compile setting.
2042 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2044         * minibuffer.el (completion-table-with-quoting): Fix compatibility
2045         all-completions code to not return a number in the last cdr.
2047 2012-04-30  Leo Liu  <sdl.web@gmail.com>
2049         * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
2050         read-only error.
2052 2012-04-29  Chong Yidong  <cyd@gnu.org>
2054         * follow.el (follow-calc-win-end): Rewrite to handle partial
2055         screen lines correctly (Bug#8390).
2056         (follow-avoid-tail-recenter): Minor cleanup.
2058 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2060         Avoid the obsolete `assoc' package.
2061         * speedbar.el (speedbar-refresh): Avoid adelete.
2062         (speedbar-file-lists): Simplify and avoid aput.
2063         * man.el (Man--sections, Man--refpages): New vars, replacing
2064         Man-sections-alist and Man-refpages-alist.
2065         (Man-build-section-alist, Man-build-references-alist):
2066         Use them; avoid aput.
2067         (Man--last-section, Man--last-refpage): New vars.
2068         (Man-follow-manual-reference): Use them.
2069         Use the `default' arg of completing-read.
2070         (Man-goto-section): Idem.  Move prompt to the `interactive' spec.
2072 2012-04-27  Chong Yidong  <cyd@gnu.org>
2074         * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
2076         * startup.el (x-apply-session-resources): New function.
2078         * term/ns-win.el (ns-initialize-window-system):
2079         * term/w32-win.el (w32-initialize-window-system):
2080         * term/x-win.el (x-initialize-window-system): Use it to properly
2081         set menu-bar-mode and other vars from X resources, even if the
2082         initial frame is not a window-system frame (Bug#2299).
2084         * subr.el (read-key): Avoid running filter function when setting
2085         up temporary tool bar entries (Bug#9922).
2087 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
2089         * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
2090         (Bug#11344)
2092 2012-04-27  Chong Yidong  <cyd@gnu.org>
2094         * select.el (xselect--encode-string): New function, split from
2095         xselect-convert-to-string.
2096         (xselect-convert-to-string): Use it.
2097         (xselect-convert-to-filename, xselect-convert-to-os)
2098         (xselect-convert-to-host, xselect-convert-to-user): Ensure that
2099         returned strings are properly encoded (Bug#11315).
2101 2012-04-27  Chong Yidong  <cyd@gnu.org>
2103         * simple.el (delete-active-region): Move to killing custom group.
2105 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
2107         * progmodes/which-func.el (which-func-current): Quote %
2108         characters for mode-line processing.
2110 2012-04-27  Chong Yidong  <cyd@gnu.org>
2112         * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
2113         reaching eob (Bug#11286).
2115 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
2117         * progmodes/gdb-mi.el (gdb-control-level): New variable.
2118         (gdb): Make it buffer-local and init to zero.
2119         (gdb-control-commands-regexp): New variable.
2120         (gdb-send): Don't wrap in "-interpreter-exec console" if
2121         gdb-control-level is positive.  Increment gdb-control-level
2122         whenever the command matches gdb-control-commands-regexp, and
2123         decrement it each time the command is "end".  (Bug#11279)
2125 2012-04-27  Martin Rudalics  <rudalics@gmx.at>
2127         * window.el (adjust-window-trailing-edge, enlarge-window)
2128         (shrink-window, window-resize):
2129         * mouse.el (mouse-drag-line): Fix resizing of minibuffer
2130         windows (Bug#11276).
2132 2012-04-27  Chong Yidong  <cyd@gnu.org>
2134         * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
2135         fix "missing prefix" warning.  All callers changed.
2137 2012-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2139         * emacs-lisp/assoc.el: Move to obsolete/.
2141 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2143         * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
2145         * term/ns-win.el (ns-define-service):
2146         * progmodes/pascal.el (pascal-goto-defun):
2147         * progmodes/js.el (js--read-tab):
2148         * progmodes/etags.el (tags-lazy-completion-table):
2149         * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
2150         * emacs-lisp/ewoc.el (ewoc--wrap):
2151         * emacs-lisp/assoc.el (aput, adelete, amake):
2152         * doc-view.el (doc-view-convert-current-doc):
2153         * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
2155 2012-04-26  Chong Yidong  <cyd@gnu.org>
2157         * image.el (image-type-from-buffer): Only return supported image
2158         type (Bug#9045).
2160         * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
2161         value, for symmetry with diff-end-of-hunk.
2162         (diff-split-hunk, diff-find-source-location)
2163         (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
2164         (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
2165         (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
2166         compute the relevant hunk or file properly (Bug#6005).
2167         (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
2169 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2171         * vc/vc-mtn.el:
2172         * vc/vc-hg.el:
2173         * vc/vc-git.el:
2174         * vc/vc-dir.el:
2175         * vc/vc-cvs.el:
2176         * vc/vc-bzr.el:
2177         * vc/vc-arch.el:
2178         * vc/vc.el: Replace lexical-let by lexical-binding.
2179         * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
2180         * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
2181         * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
2183 2012-04-26  Chong Yidong  <cyd@gnu.org>
2185         * vc/diff-mode.el (diff-undo): New command (Bug#5302).
2186         (diff-mode-shared-map): Bind it to / and [remap undo].
2188         * vc/ediff-wind.el (ediff-setup-windows-default): New function.
2189         (ediff-window-setup-function): Use it as the default, to set up
2190         windows based on whether the current frame is graphical (Bug#2138).
2191         (ediff-choose-window-setup-function-automatically): Make obsolete.
2193         * vc/ediff-init.el: Always define ediff-pixel-width/height.
2195 2012-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2197         * ffap.el: Remove old code for obsolete package.
2198         (ffap-complete-as-file-p): Remove.
2200         Use completion-table-with-quoting for comint and pcomplete.
2201         * comint.el (comint--unquote&requote-argument)
2202         (comint--unquote-argument, comint--requote-argument): New functions.
2203         (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
2204         (comint-quote-filename): Use regexp-opt-charset.
2205         (comint--common-suffix, comint--common-quoted-suffix)
2206         (comint--table-subvert): Remove.
2207         (comint-unquote-function, comint-requote-function): New vars.
2208         (comint--complete-file-name-data): Use them with
2209         completion-table-with-quoting.
2210         * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
2211         * pcomplete.el (pcomplete-arg-quote-list)
2212         (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
2213         (pcomplete-unquote-argument-function): Default to non-nil.
2214         (pcomplete-unquote-argument): Simplify.
2215         (pcomplete--common-quoted-suffix): Remove.
2216         (pcomplete-requote-argument-function): New var.
2217         (pcomplete--common-suffix): New function.
2218         (pcomplete-completions-at-point): Use completion-table-with-quoting
2219         and completion-table-subvert.
2221         * minibuffer.el: Use completion-table-with-quoting for read-file-name.
2222         (minibuffer--double-dollars): Preserve properties.
2223         (completion--sifn-requote): New function.
2224         (completion--file-name-table): Rewrite using it and c-t-with-quoting.
2226         * minibuffer.el: Add support for completion of quoted/escaped data.
2227         (completion-table-with-quoting, completion-table-subvert): New funs.
2228         (completion--twq-try, completion--twq-all): New functions.
2229         (completion--nth-completion): New function.
2230         (completion-try-completion, completion-all-completions): Use it.
2232 2012-04-25  Leo Liu  <sdl.web@gmail.com>
2234         * progmodes/python.el (python-pdbtrack-get-source-buffer):
2235         Use compilation-message if available to find real filename.
2237 2012-04-25  Chong Yidong  <cyd@gnu.org>
2239         * vc/diff-mode.el (diff-setup-whitespace): New function.
2240         (diff-mode): Use it.
2242         * vc/diff.el (diff-sentinel):
2243         * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
2244         Whitespace mode variables based on diff style (Bug#8612).
2246 2012-04-25  Leo Liu  <sdl.web@gmail.com>
2248         * progmodes/python.el (python-send-region): Add suffix .py to the
2249         temp file.
2251         * files.el (auto-mode-alist): Use javascript-mode instead.
2253 2012-04-25  Alex Harsanyi  <AlexHarsanyi@gmail.com>
2255         Sync with soap-client repository.  Support SOAP simpleType (Bug#10331).
2257         * soap-client.el (soap-resolve-references-for-sequence-type)
2258         (soap-resolve-references-for-array-type): Hack to prevent self
2259         references, see Bug#9.
2260         (soap-parse-envelope): Report the contents of the 'detail' node
2261         when receiving a fault reply.
2262         (soap-parse-envelope): Report the contents of the entire 'detail' node.
2264         * soap-inspect.el (soap-sample-value-for-simple-type)
2265         (soap-inspect-simple-type): New function.
2267         * soap-client.el (soap-simple-type): New struct.
2268         (soap-default-xsd-types, soap-default-soapenc-types)
2269         (soap-decode-basic-type, soap-encode-basic-type):
2270         support unsignedInt and double basic types.
2271         (soap-resolve-references-for-simple-type)
2272         (soap-parse-simple-type, soap-encode-simple-type): New function.
2273         (soap-parse-schema): Parse xsd:simpleType declarations.
2275         * soap-client.el (soap-default-xsd-types)
2276         (soap-default-soapenc-types): Add integer, byte and anyURI types.
2277         (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
2278         the local name of "soapenc:Array".
2279         (soap-decode-basic-type, soap-encode-basic-type): Support encoding
2280         decoding integer, byte and anyURI xsd types.
2282 2012-04-25  Chong Yidong  <cyd@gnu.org>
2284         * cus-edit.el (custom-buffer-create-internal): Update header text.
2286 2012-04-25  Eli Zaretskii  <eliz@gnu.org>
2288         * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
2289         settings on 'system-type', not on 'window-system'.  On MS-Windows,
2290         set interactive-mode on in GDB.
2292 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2294         * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
2295         (ruby-syntax-propertize-regexp): Remove.
2296         (ruby-syntax-propertize-function): Split regexp into chunks.
2297         Match following code directly.
2299 2012-04-24  Dmitry Gutov  <dgutov@yandex.ru>
2301         * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
2302         (ruby-syntax-propertize-regexp): New function.
2303         (ruby-syntax-propertize-function): Use it to handle regexp not preceded
2304         by a special keyword.
2306         * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
2307         (ruby-syntax-general-delimiters-goto-beg)
2308         (ruby-syntax-propertize-general-delimiters): New functions.
2309         (ruby-syntax-propertize-function): Use them to handle GDL.
2310         (ruby-font-lock-keywords): Move old handling of GDL...
2311         (ruby-font-lock-syntactic-keywords): .. to here.
2312         (ruby-calculate-indent): Adjust indentation for GDL.
2314 2012-04-24  Michael Albinus  <michael.albinus@gmx.de>
2316         * notifications.el (top): Remove unneeded declarations.
2317         (notifications-specification-version): Change to "1.2".
2318         (notifications-interface, notifications-notify-method)
2319         (notifications-close-notification-method): Fix docstring.
2320         (notifications-get-capabilities-method): New defconst.
2321         (notifications-notify): Add :action-items, :resident and
2322         :transient hints.  Change "image_data" to "image-data" and
2323         "image_path" to "image-path".
2324         (notifications-get-capabilities): New defun.
2326 2012-04-24  Leo Liu  <sdl.web@gmail.com>
2328         * progmodes/python.el: Move hideshow setup to the end.
2330 2012-04-24  Martin Rudalics  <rudalics@gmx.at>
2332         * window.el (handle-select-window): Clear echo area since this is
2333         no more done by read_char (Bug#11304).
2335 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2337         * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
2338         and `/ M' to filter-derived-mode.
2339         * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
2340         (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
2341         (ibuffer-mark-by-mode): Use default rather than initial-input.
2342         (ibuffer-filter-by-derived-mode): Autoload and require-match.
2344 2012-04-24  Ivan Andrus  <darthandrus@gmail.com>  (tiny change)
2346         * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
2347         (ibuffer-filter-by-derived-mode): New filter.
2348         * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
2350 2012-04-23  Andreas Politz  <politza@fh-trier.de>
2352         * subr.el (accept-change-group): Fix arg usage (Bug#6095).
2354 2012-04-23  Chong Yidong  <cyd@gnu.org>
2356         * cus-edit.el (customize-apropos, customize-apropos-options):
2357         Disable matching of non-option variables (Bug#11176).
2358         (customize-option, customize-option-other-window)
2359         (customize-changed-options): Doc fix.
2360         (customize-apropos-options, customize-apropos-faces)
2361         (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
2363         * apropos.el (apropos-read-pattern): Make prompt less cryptic.
2364         Fix word list splitting (Bug#11132).
2365         (apropos-symbol, apropos-keybinding, apropos-label)
2366         (apropos-property, apropos-function-button)
2367         (apropos-variable-button, apropos-misc-button): New faces.
2368         (apropos-symbol-face, apropos-keybinding-face)
2369         (apropos-label-face, apropos-property-face, apropos-match-face):
2370         Variables removed (Bug#8396).
2371         (apropos-library-button, apropos-format-plist, apropos-print)
2372         (apropos-print-doc, apropos-describe-plist): Callers changed.
2374 2012-04-23  Michael Albinus  <michael.albinus@gmx.de>
2376         * net/xesam.el (xesam-mode-map): Use let-bound map in
2377         initialization.  (Bug#11292)
2379 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2381         Preserve ispell session localwords when switching back to
2382         original buffer.
2384         * ispell.el (ispell-buffer-session-localwords): New buffer-local
2385         variable to hold buffer session localwords.
2386         (ispell-kill-ispell): add option 'clear to delete session
2387         localwords.
2388         (ispell-command-loop, ispell-change-dictionary)
2389         (ispell-buffer-local-words): Preserve session localwords when
2390         needed.
2392         * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
2393         Preserve session localwords when needed.
2395 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2397         * ispell.el (ispell-insert-word) Remove unneeded function using
2398         obsolete `translation-table-for-input'.
2399         (ispell-word, ispell-process-line, ispell-complete-word):
2400         Use plain `insert' instead of removed `ispell-insert-word'.
2402 2012-04-22  Chong Yidong  <cyd@gnu.org>
2404         * cus-edit.el (custom-variable-menu)
2405         (custom-variable-reset-saved, custom-face-menu)
2406         (custom-face-reset-saved): If there is no saved value, make the
2407         "reset-saved" operation bring back the default (Bug#9509).
2408         (custom-face-state): Properly detect themed faces.
2410         * faces.el (face-spec-set): Stop supporting deprecated form of
2411         third arg.
2413 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
2415         Move functions from C to Lisp.  Make non-blocking method calls
2416         the default.  Implement further D-Bus standard interfaces.
2418         * net/dbus.el (dbus-message-internal): Declare function.
2419         Remove unneeded function declarations.
2420         (defvar dbus-message-type-invalid, dbus-message-type-method-call)
2421         (dbus-message-type-method-return, dbus-message-type-error)
2422         (dbus-message-type-signal): Declare variables.  Remove local
2423         definitions.
2424         (dbus-interface-dbus, dbus-interface-peer)
2425         (dbus-interface-introspectable, dbus-interface-properties)
2426         (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
2427         Adapt docstring.
2428         (dbus-interface-objectmanager): New defconst.
2429         (dbus-call-method, dbus-call-method-asynchronously)
2430         (dbus-send-signal, dbus-method-return-internal)
2431         (dbus-method-error-internal, dbus-register-service)
2432         (dbus-register-signal, dbus-register-method): New defuns, moved
2433         from dbusbind.c
2434         (dbus-call-method-handler, dbus-setenv)
2435         (dbus-get-all-managed-objects, dbus-managed-objects-handler):
2436         New defuns.
2437         (dbus-call-method-non-blocking): Make it an obsolete function.
2438         (dbus-unregister-object, dbus-unregister-service)
2439         (dbus-handle-event, dbus-register-property)
2440         (dbus-property-handler): Obey the new structure of
2441         `bus-registered-objects'.
2442         (dbus-introspect): Use `dbus-call-method'.  Use a timeout.
2443         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
2444         Use `dbus-call-method'.
2446 2012-04-22  Chong Yidong  <cyd@gnu.org>
2448         * cus-edit.el (custom-commands, custom-reset-menu)
2449         (Custom-reset-standard): Tweak labels.
2450         (custom-reset-button-menu): Change default to t.
2451         (custom-buffer-create-internal): For the custom-reset-button-menu
2452         case, put the revert button first.
2453         (custom-group-subtitle): New face.
2454         (custom-group-value-create): Align docstring to a specific column.
2456         * wid-edit.el (widget-documentation-link-add): Don't handle
2457         indentation in this function.
2458         (widget-documentation-string-indent-to): New function.
2459         (widget-documentation-string-value-create): Use it.
2461         * autorevert.el (auto-revert):
2462         * epg-config.el (epg):
2463         * ibuffer.el (ibuffer):
2464         * mpc.el (mpc):
2465         * ses.el (ses):
2466         * eshell/eshell.el (eshell):
2467         * net/ange-ftp.el (ange-ftp):
2468         * progmodes/ebnf2ps.el (postscript):
2469         * progmodes/flymake.el (flymake):
2470         * progmodes/prolog.el (prolog):
2471         * progmodes/verilog-mode.el (verilog-mode):
2472         * progmodes/which-func.el (which-func):
2473         * term/xterm.el (xterm):
2474         * textmodes/picture.el (picture):
2475         * textmodes/tildify.el (tildify):
2476         * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
2477         customization buffers.
2479 2012-04-22  Alan Mackenzie  <acm@muc.de>
2481         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
2482         Adding a ) can hide the resulting (..) from searches.  Fix it.
2483         Bound the backward search to the position of the existing (.
2485 2012-04-21  Juanma Barranquero  <lekktu@gmail.com>
2487         * progmodes/verilog-mode.el (verilog-mode): Check whether
2488         which-func-modes is t before adding verilog-mode.
2489         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
2491 2012-04-21  Leo Liu  <sdl.web@gmail.com>
2493         * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
2495 2012-04-21  Michael Vehrs  <Michael.Burschik@gmx.de>
2497         * woman.el: Add support for "T{ T}" tbl syntax, and fix the
2498         filling of the last column of a table (Bug#5635).
2499         (woman-find-next-control-line): New arg, specifying an additional
2500         regexp component for the control line.
2501         (woman2-roff-buffer): Use it.
2502         (woman-break-table): New function.
2503         (woman2-TS): Use it.
2505 2012-04-21  Chong Yidong  <cyd@gnu.org>
2507         * woman.el (woman-set-buffer-display-table, woman-decode-region)
2508         (woman-horizontal-escapes, woman-negative-vertical-space)
2509         (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
2510         (WoMan-warn-ignored): Use ?\s instead of ?\ .
2512 2012-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2514         * minibuffer.el (completion-file-name-table): Complete user names.
2516 2012-04-20  Leo Liu  <sdl.web@gmail.com>
2518         * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
2519         and pcase-let*.
2521 2012-04-20  Chong Yidong  <cyd@gnu.org>
2523         * server.el (server-execute): Respect initial-buffer-choice if it
2524         is a string and there are no files to open (Bug#2825).
2525         (server-create-window-system-frame, server-create-tty-frame):
2526         Don't switch buffers here.
2527         (server-process-filter): Only try to open a window system frame if
2528         compiled with graphical support (Bug#8314).
2530 2012-04-20  Dan Nicolaescu  <dann@gnu.org>
2532         * battery.el (battery-echo-area-format): Display remaining time
2533         for sysfs backend too (Bug#11269).
2534         (battery-linux-sysfs): Fix conditional for the charge.
2536 2012-04-20  Chong Yidong  <cyd@gnu.org>
2538         * progmodes/gdb-mi.el (gdb): Revert previous change.
2539         (gdb-inferior-io--init-proc): New function.
2540         (gdb-init-1): Use it.
2541         (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
2542         responsible for allocating a new pty and hooking it to gdb when
2543         the old pty gets an EIO due to process exit.
2544         (gdb-delchar-or-quit): New command.  Bind it in gdb-mi buffers.
2545         (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
2546         (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
2548 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
2550         * window.el (window-min-size, window-sizable, window-min-delta)
2551         (window-max-delta, window--resizable, window-resizable)
2552         (window-total-size, window-full-height-p, window-full-width-p)
2553         (window-in-direction, window--resize-mini-window, window-resize)
2554         (window--resize-child-windows-normal)
2555         (window--resize-child-windows, window--resize-siblings)
2556         (window--resize-this-window, adjust-window-trailing-edge)
2557         (enlarge-window, shrink-window): Doc fixes.
2559 2012-04-20  Chong Yidong  <cyd@gnu.org>
2561         * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
2562         New function to call delete-process on the gdb-inferior buffer's pty.
2563         (gdb-reset): Use it, instead of relying on kill-buffer to kill the
2564         pty process (Bug#11273).
2565         (gdb-update): New arg to suppress talking to the gdb process.
2566         (gdb-done-or-error): Use it.
2567         (gdb-stopped-functions): Rename from gdb-stopped-hooks.
2568         (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
2569         sentinel not being called.
2571         * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
2573         * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
2575 2012-04-20  Glenn Morris  <rgm@gnu.org>
2577         * net/network-stream.el (open-network-stream): Doc fix.
2579 2012-04-20  Chong Yidong  <cyd@gnu.org>
2581         * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
2583 2012-04-20  Alan Mackenzie  <acm@muc.de>
2585         Ensure searching for keywords is case sensitive.
2587         * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
2588         (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
2589         (c-defun-name, c-mark-function, c-cpp-define-name)
2590         (c-comment-indent, c-scan-conditionals, c-indent-defun)
2591         (c-context-line-break): Bind case-fold-search to nil.
2593         * progmodes/cc-mode.el (c-font-lock-fontify-region):
2594         Bind case-fold-search to nil.
2596 2012-04-20  Chong Yidong  <cyd@gnu.org>
2598         * mail/sendmail.el (mail-bury): Call return action with the right
2599         Rmail buffer (Bug#11242).
2601         * server.el (server-process-filter): Handle corner case where both
2602         tty and nowait options are present (Bug#11102).
2604 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
2606         * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
2607         (top level): Put into the executable the ident-style '$Id:' tag on
2608         windows-nt as well.
2610 2012-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2612         * electric.el (electric-indent-post-self-insert-function): Check that
2613         electric-indent-mode is enabled in current buffer.
2615 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
2617         * imenu.el (imenu-progress-message): Restore; it is "used" in
2618         erc/erc-imenu.el and net/snmp-mode.el.
2620 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
2622         * avoid.el (mouse-avoidance-mode): Mark unused arg.
2623         (mouse-avoidance-nudge-mouse): Remove unused binding.
2625         * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
2627         * descr-text.el (describe-char):
2628         * progmodes/python.el (python-describe-symbol):
2629         Don't call `toggle-read-only', set `buffer-read-only'.
2631         * imenu.el (imenu-default-goto-function): Mark unused args.
2632         (imenu-progress-message): Remove obsolete macro; all callers changed.
2634         * subr.el (keymap-canonicalize): Remove unused binding.
2635         (read-passwd): Mark unused arg.
2637         * tutorial.el (tutorial--display-changes): Remove unused binding.
2638         (tutorial--save-tutorial-to): Remove unused variable.
2640         * emacs-lisp/package.el (define-package, package-menu-mark-delete)
2641         (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
2642         (package-generate-autoloads, package-menu--generate)
2643         (package-menu--find-upgrades): Remove unused bindings.
2645         * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
2646         (cua-restrict-prefix-rectangle): Doc fixes.  Remove unused bindings.
2647         (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
2648         (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
2649         (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
2650         (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
2651         (cua--rectangle-aux-replace, cua--left-fill-rectangle)
2652         (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
2653         (cua-delete-char-rectangle): Mark unused args.
2654         (cua-align-rectangle): Remove unused binding.
2656         * mail/rmail.el (compilation--message->loc)
2657         (epa--find-coding-system-for-mime-charset): Declare.
2659         * net/dbus.el (dbus-register-service): Declare.
2660         (dbus-name-owner-changed-handler): Remove unused binding.
2662         * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
2663         (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
2664         (nxml-scan-backward-within): Mark unused arg.
2665         (nxml-dynamic-markup-word): Remove unused binding.
2667         * mouse.el (mouse-menu-major-mode-map):
2668         * emacs-lisp/authors.el (authors-scan-change-log)
2669         (authors-add-to-author-list):
2670         * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
2671         * emacs-lisp/smie.el (smie-auto-fill):
2672         * mail/sendmail.el (mail-bury):
2673         * mail/unrmail.el (unrmail):
2674         * net/tls.el (open-tls-stream):
2675         * textmodes/picture.el (picture-mouse-set-point):
2676         Remove unused bindings.
2678 2012-04-19  Michael Albinus  <michael.albinus@gmx.de>
2680         * net/tramp.el (tramp-action-password): Let-bind
2681         `enable-recursive-minibuffers' to t.
2683 2012-04-18  Sam Steingold  <sds@gnu.org>
2685         * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
2686         instead of 'string to accommodate values like [f11].
2687         Always use `vconcat' instead of `concat' on it, like in `gud-def'.
2688         * progmodes/gdb-mi.el: Likewise.
2690 2012-04-18  Leo Liu  <sdl.web@gmail.com>
2692         * abbrev.el (edit-abbrevs): Move point to the abbrev table of
2693         current buffer.
2694         (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
2695         LOCAL is nil.
2697 2012-04-18  Chong Yidong  <cyd@gnu.org>
2699         * simple.el (line-move): Use forward-line if in batch mode
2700         (Bug#11053).
2702 2012-04-18  Christopher Schmidt  <christopher@ch.ristopher.com>
2704         * files.el (after-find-file): Do not try to add a final newline if
2705         the buffer is read-only (Bug#11156).
2707 2012-04-17  Richard Stallman  <rms@gnu.org>
2709         * mail/rmail.el (rmail-start-mail):
2710         Pass (rmail-mail-return...) for the return-action.
2711         Pass (rmail-yank-current-message...) for the yank-action.
2712         (rmail-yank-current-message): New function.
2713         (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
2714         (rmail-reply): Likewise.
2715         (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
2717         * mail/sendmail.el (mail-bury): Choose the first rmail-mode
2718         buffer, not the last.  Reject temp buffers.  Use the rmail-mode
2719         buffer, not newbuf.
2721 2012-04-17  Juanma Barranquero  <lekktu@gmail.com>
2723         * server.el (server-ensure-safe-dir): Simplify.
2725 2012-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2727         * emacs-lisp/smie.el: Provide smarter auto-filling.
2728         (smie-auto-fill): New function.
2729         (smie-setup): Use it.
2731         * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
2733 2012-04-17  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
2735         * newcomment.el (comment-inline-offset): New custom var (bug#11090).
2736         (comment-indent): Use it.
2738 2012-04-17  Vincent Belaïche  <vincentb1@users.sourceforge.net>
2740         * ses.el: The overall change is to add cell renaming, that is
2741         setting fancy names for cell symbols other than name matching
2742         "\\`[A-Z]+[0-9]+\\'" regexp .
2743         (ses-localvars): Add ses--renamed-cell-symb-list.
2744         (ses-create-cell-variable): New defun.
2745         (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
2746         (ses-relocate-formula): Relocate formulas only for cells the
2747         symbols of which are not renamed, i.e. symbols whose names do not
2748         match regexp "\\`[A-Z]+[0-9]+\\'".
2749         (ses-relocate-all): Relocate values only for cells the symbols of
2750         which are not renamed.
2751         (ses-load): Create cells variables as the (ses-cell ...) are read,
2752         in order to check row col consistency with cell symbol name only
2753         for cells that are not renamed.
2754         (ses-replace-name-in-formula): New defun.
2755         (ses-rename-cell): New defun.
2757 2012-04-17  Peter Oliver  <bzr@mavit.org.uk>  (tiny change)
2759         * progmodes/perl-mode.el (perl-indent-parens-as-block):
2760         New option (bug#11118).
2761         (perl-calculate-indent): Respect it.
2763 2012-04-17  Glenn Morris  <rgm@gnu.org>
2765         * dired-aux.el (dired-mark-read-string): Doc fix.
2767 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
2769         * dired-aux.el (dired-mark-read-string): Offer optional completion.
2770         (dired-do-chxxx): Complete chown, chgrp over users, groups.  (Bug#7900)
2772 2012-04-17  Glenn Morris  <rgm@gnu.org>
2774         * mouse.el (mouse-drag-track):
2775         * speedbar.el (speedbar-frame-mode):
2776         Use auto-hscroll-mode rather than the alias automatic-hscrolling.
2778 2012-04-16  Leo Liu  <sdl.web@gmail.com>
2780         * progmodes/python.el: Trivial cleanup.
2782 2012-04-16  Glenn Morris  <rgm@gnu.org>
2784         * vc/vc.el (vc-string-prefix-p):
2785         * vc/pcvs-util.el (cvs-string-prefix-p):
2786         * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
2787         * mpc.el (mpc-string-prefix-p):
2788         Make all of these into obsolete aliases for string-prefix-p.
2789         Update callers.
2790         * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
2792         * textmodes/two-column.el: Move custom options to the start.
2793         (frame-width): Remove compat definition.
2794         (2C-associate-buffer, 2C-dissociate):
2795         Use with-current-buffer rather than save-excursion.
2796         (2C-dissociate): Force a mode-line update.
2797         (2C-autoscroll): Use ignore-errors.
2799         * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
2800         Autoload trivia.
2802         * emacs-lisp/cl-extra.el (*random-state*):
2803         Remove unnecessary declaration.
2805         * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
2807         * play/cookie1.el (cookie-snarf):
2808         Give an explicit error if input file cannot be read.
2810         * play/yow.el (yow-file): Use expand-file-name rather than concat.
2812         * progmodes/perl-mode.el (c-macro-expand):
2813         Remove unnecessary autoload (it is in loaddefs.el).
2815         * textmodes/picture.el (picture-desired-column)
2816         (picture-update-desired-column): Convert comments to doc-strings.
2817         (picture-substitute): Remove function.
2818         (picture-mode-map): Initialize in the defvar.
2820         * woman.el: Remove eval-after-load for tar-mode.
2821         * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
2822         (woman-tar-extract-file): Autoload it.
2824         * frame.el (automatic-hscrolling): Make this alias obsolete.
2826 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2828         * ispell.el (ispell-set-spellchecker-params): Post-process
2829         `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
2830         (ispell-dictionary-base-alist): Revert to original XEmacs
2831         friendly version for default.  [:alpha:] will be added in
2832         `ispell-set-spellchecker-params' if needed
2834 2012-04-16  Chong Yidong  <cyd@gnu.org>
2836         * image.el (imagemagick--extension-regexp): New variable.
2837         (imagemagick-register-types): Use it.
2838         (imagemagick-types-inhibit): Add :set function.  Allow new value
2839         of t to inhibit all types.
2841         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
2842         so we can preload it.
2844         * loadup.el (fboundp): Preload regexp-opt, needed by
2845         imagemagick-register-types.
2847 2012-04-15  Chong Yidong  <cyd@gnu.org>
2849         * frame.el (scrolling): Remove nearly unused customization group.
2851         * scroll-all.el (scroll-all-mode): Move to windows group.
2853 2012-04-15  Chong Yidong  <cyd@gnu.org>
2855         * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
2857 2012-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2859         Avoid the use of ((lambda ...) ...) in lexical-binding code.
2860         * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
2862 2012-04-15  Glenn Morris  <rgm@gnu.org>
2864         * simple.el (process-file-side-effects): Doc fix.
2866 2012-04-15  Glenn Morris  <rgm@gnu.org>
2868         * international/mule-cmds.el (set-language-environment): Doc fix.
2870 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
2872         * server.el (server-auth-key, server-generate-key): Doc fixes.
2873         (server-get-auth-key): Doc fix.  Use `string-match-p'.
2874         (server-start): Reflow docstring.
2876 2012-04-14  Lars Ingebrigtsen  <larsi@gnus.org>
2878         * server.el (server-generate-key): `called-interactively-p'
2879         requires a parameter.
2881 2012-04-14  Michal Nazarewicz  <mina86@mina86.com>
2883         * server.el (server-auth-key): New variable.
2884         (server-generate-key, server-get-auth-key): New function.
2885         (server-start): Use the new variable and functions to allow
2886         setting a permanent server key (bug#9423).
2888 2012-04-14  Leo Liu  <sdl.web@gmail.com>
2890         * vc/diff-mode.el (diff-file-prev/next): Fix typo.
2892 2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
2894         Spelling fixes.
2895         * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
2896         Emacs uses American spelling.
2898 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
2900         * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
2901         (emacs-lock--exit-locked-buffer): Return the locked buffer.  Doc fix.
2902         (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
2903         (emacs-lock--kill-buffer-query-functions): Run new hook.  (Bug#11017)
2905 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2907         * progmodes/which-func.el (which-func-modes): Change default.
2909 2012-04-14  Kim F. Storm  <storm@cua.dk>
2911         * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
2912         exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
2914 2012-04-14  Chong Yidong  <cyd@gnu.org>
2916         * custom.el (custom-theme-set-variables): Doc fix.
2918 2012-04-14  Glenn Morris  <rgm@gnu.org>
2920         * international/mule.el (set-auto-coding-for-load): Doc fix.
2922 2012-04-14  Alan Mackenzie  <acm@muc.de>
2924         * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
2925         imenu work again for Objective C Mode.  Correct the *-index values,
2926         these having been disturbed by a previous change in 2011-08.
2928         * progmodes/cc-engine.el (c-before-change-check-<>-operators):
2929         Correct two search limits.
2931 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2933         * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
2935 2012-04-14  Andreas Schwab  <schwab@linux-m68k.org>
2937         * international/characters.el: Fix sorting.
2939 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
2941         * international/characters.el: Add more missing Latin case pairs.
2943 2012-04-14  Glenn Morris  <rgm@gnu.org>
2945         * files.el (dir-locals-set-class-variables): Doc fix.
2947 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
2949         * international/characters.el: Add set-case-syntax-pair call for
2950         LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
2951         counterpart.  (Bug#11209)
2953         * simple.el (shell-command-on-region): Doc fix.  (Bug#11208)
2955 2012-04-14  Glenn Morris  <rgm@gnu.org>
2957         * calendar/holidays.el (calendar-check-holidays): Doc fix.
2959 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
2961         * textmodes/ispell.el (ispell-dictionary-base-alist):
2962         Add data for Hebrew.
2964 2012-04-14  Chong Yidong  <cyd@gnu.org>
2966         * net/rcirc.el (rcirc-cmd-quit):
2967         Revert 2012-03-18 change (Bug#11192).
2969 2012-04-14  Glenn Morris  <rgm@gnu.org>
2971         * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
2973 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
2975         * minibuffer.el (completion-in-region-mode-map):
2976         Bind completion-help-at-point to M-? rather than ?.  (Bug#11182)
2978 2012-04-13  Vivek Dasmohapatra  <vivek@etla.org>
2980         * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
2982 2012-04-13  Masatake YAMATO  <yamato@redhat.com>
2984         * minibuffer.el (minibuffer-local-filename-syntax): New variable
2985         to allow `C-M-f' and `C-M-b' to move to the nearest path
2986         separator (bug#9511).
2988 2012-04-13  Lars Ingebrigtsen  <larsi@gnus.org>
2990         * avoid.el: Require cl when compiling.  And also move the
2991         `provide' to the end.
2993 2012-04-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2995         * avoid.el (mouse-avoidance-banish-position): New variable.
2996         (mouse-avoidance-banish-destination): Use it (bug#10165).
2998 2012-04-13  Leo Liu  <sdl.web@gmail.com>
3000         * progmodes/which-func.el (which-func-modes): Add objc-mode.
3002 2012-04-13  Ken Brown  <kbrown@cornell.edu>
3004         * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
3005         this is no longer needed now that cygstart understands file:// URLs.
3006         (browse-url-filename-alist): For the same reason, don't modify
3007         file:// URLs on Cygwin.
3009 2012-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3011         * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
3012         the region on shift if the binding is already shifted (bug#11221).
3014 2012-04-12  Glenn Morris  <rgm@gnu.org>
3016         * mail/mailpost.el: Move to obsolete/.
3018 2012-04-12  Drew Adams  <drew.adams@oracle.com>
3020         * imenu.el (imenu--generic-function): Ignore invisible definitions
3021         (bug#10123).
3023 2012-04-12  Vivek Dasmohapatra  <vivek@etla.org>
3025         * hexl.el (hexl-bits): New variable.
3026         (hexl-options): Mention the variable in the doc string.
3027         (hexl-rulerise, hexl-line-displen): New functions.
3028         (hexl-mode): Mention the new variable.
3029         (hexl-mode, hexl-current-address, hexl-current-address):
3030         Use the displen.
3031         (hexl-ascii-start-column): New function.
3032         (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
3033         (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
3035 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
3037         * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
3038         '("-i" ENCODING), in 2 separate command-line arguments, to specify
3039         the encoding, as expected by hunspell.
3041 2012-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3043         * battery.el (battery--linux-sysfs-regexp): New const.
3044         (battery-status-function): Use it.  Remove yeeloong special case.
3045         (battery-yeeloong-sysfs): Remove.
3046         (battery-echo-area-format): Remove yeeloong special case.
3048 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3050         * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
3051         Reported by Noah Friedman.
3053         * subr.el (read-passwd): Use read-string.
3055 2012-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3057         * vcursor.el (vcursor-move): Increase the priority of the overlay
3058         (bug#9663).
3060 2012-04-11  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
3062         * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
3063         (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
3065 2012-04-11  William Stevenson  <yhvh2000@gmail.com>
3067         * textmodes/artist.el (artist-mode): Convert artist-mode to use
3068         define-minor-mode (bug#10760).
3070 2012-04-11  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
3072         * progmodes/grep.el (rgrep): Tweak the find command line so
3073         that directories matching `grep-find-ignored-files' won't be
3074         pruned (bug#10351).
3076 2012-04-11  Chong Yidong  <cyd@gnu.org>
3078         * startup.el (command-line): Remove support for long-obsolete
3079         variable font-lock-face-attributes.
3081 2012-04-11  Glenn Morris  <rgm@gnu.org>
3083         * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
3085 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3087         * window.el (window--state-get-1): Obey window-point-insertion-type.
3089 2012-04-11  Lennart Borgman  <lennart.borgman@gmail.com>
3091         * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
3092         to previous function when point is on the first character of a
3093         function.  Take care of that in `narrow-to-defun' (bug#6157).
3095 2012-04-11  Glenn Morris  <rgm@gnu.org>
3097         * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
3098         not just file-errors.
3100         * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
3101         (vc-bzr-sha1): Use internal sha1.
3103 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3105         * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
3107 2012-04-10  Sébastien Gross  <seb@chezwam.org>  (tiny change)
3109         * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
3110         that start in the middle of the line (bug#10496).
3112 2012-04-10  Dan Nicolaescu  <dann@gnu.org>
3114         * battery.el (battery-linux-proc-acpi): Only one battery is
3115         discharged at a time, but that seems to confuse battery.el when
3116         computing `rate-type' for the battery not being discharged
3117         (bug#10332).
3119 2012-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3121         * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
3123         * international/quail.el: Use dolist and simplify.
3124         (quail-define-package, quail-update-keyboard-layout)
3125         (quail-define-rules): Use dolist.
3126         (quail-insert-kbd-layout, quail-get-translation): CSE.
3128         * tmm.el: Use dolist, remove left over hook.
3129         (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
3130         Use dolist.
3131         (calendar-load-hook): Don't mess with it.
3133         * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3134         Use derived-mode-p.  Run the diff asynchronously.
3136 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3138         * obsolete/mouse-sel.el: Add an Obsolete-since header.
3140 2012-04-10  Juanma Barranquero  <lekktu@gmail.com>
3142         * misc.el: Display absolute path of loaded DLLs (bug#10424).
3143         (list-dynamic-libraries--loaded): New function.
3144         (list-dynamic-libraries--refresh): Use it.
3146 2012-04-10  Nathan Weizenbaum  <nweiz@google.com>
3148         * progmodes/python.el (python-fill-paragraph):
3149         Make python-fill-region in a multiline string work when font-lock is
3150         disabled (bug#7018).
3152 2012-04-10  Laimonas Vėbra  <laimonas.vebra@gmail.com>  (tiny change)
3154         * language/european.el (cp775): Add oem/legacy (en)coding on
3155         DOS/MS Windows for the Baltic languages.  There are still plenty
3156         of texts written in this encoding/codepage (bug#6519).
3158 2012-04-10  Glenn Morris  <rgm@gnu.org>
3160         * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
3161         Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
3163 2012-04-10  Florian Adamsky  <florian@adamsky.it>  (tiny change)
3165         * recentf.el (recentf-dialog-mode-map): Add two keybindings for
3166         next-line "n" and previous-line "p" in order to make recentf more
3167         consistent with ibuffer, dired or org-mode (bug#9387).
3169 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3171         * image.el (put-image): Return the overlay created instead of the
3172         optional input string (bug#7834).  Note that this may break code
3173         that is (for some reason or other) depending on `put-image'
3174         returning the string.
3176         * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
3178         * simple.el (zap-to-char): Allow zapping using input methods
3179         (bug#1580).
3181         * textmodes/fill.el (fill-region): Leave point and mark where they
3182         were before filling (bug#5399).
3184 2012-04-09  Glenn Morris  <rgm@gnu.org>
3186         * version.el (emacs-bzr-get-version):
3187         Handle lightweight checkouts of local branches.
3189 2012-04-09  Andreas Schwab  <schwab@linux-m68k.org>
3191         * international/characters.el: Recover lost case pairs.  (Bug#11209)
3193 2012-04-09  Chong Yidong  <cyd@gnu.org>
3195         * custom.el (custom-variable-p): Return nil for non-symbol
3196         arguments instead of signaling an error.
3197         (user-variable-p): Obsolete alias for custom-variable-p.
3199         * apropos.el (apropos-variable):
3200         * files-x.el (read-file-local-variable):
3201         * simple.el (set-variable):
3202         * woman.el (woman-mini-help):
3203         * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
3205 2012-04-09  Glenn Morris  <rgm@gnu.org>
3207         * startup.el (normal-top-level): Don't look for leim-list.el
3208         in places where it will not be found.  (Bug#910)
3210         * international/mule-cmds.el (set-default-coding-systems):
3211         * files.el (normal-mode):
3212         Remove guarded calls to ucs-set-table-for-input.  (Bug#9821)
3213         This function was removed with ucs-tables.el in 2008.
3215 2012-04-08  Eli Zaretskii  <eliz@gnu.org>
3217         * textmodes/ispell.el (ispell-check-version): For hunspell, set
3218         ispell-encoding8-command to "-i", without a trailing space.
3219         (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
3220         separate command-line arguments, to specify the encoding, since
3221         that's how hunspell expects it.
3223 2012-04-08  Glenn Morris  <rgm@gnu.org>
3225         * loadup.el: Load bindings before cus-start.
3226         This reduces somewhat the number of "rogue" settings in emacs -Q.
3228 2012-04-07  Glenn Morris  <rgm@gnu.org>
3230         * version.el (emacs-bzr-get-version): New function.
3231         (emacs-bzr-version): New variable.
3232         * loadup.el (emacs-bzr-version): Set it.  (Bug#8054)
3233         * mail/emacsbug.el (report-emacs-bug): Include bzr version.
3235 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
3237         * international/uni-bidi.el, international/uni-category.el:
3238         * international/uni-combining.el, international/uni-decimal.el:
3239         * international/uni-decomposition.el, international/uni-digit.el:
3240         * international/uni-lowercase.el, international/uni-mirrored.el:
3241         * international/uni-name.el, international/uni-numeric.el:
3242         * international/uni-titlecase.el, international/uni-uppercase.el:
3243         Update for Unicode 6.1.
3245 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
3247         * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
3249 2012-04-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3251         * window.el (shrink-window): Mention the `window-min-height'
3252         variable in the doc string.
3254 2012-04-05  Bastien Guerry  <bzg@altern.org>
3256         * color.el (color-lighten-name): Fix typo.
3258 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3260         * server.el (server--on-display-p): New function.
3261         (server--on-display-p): Use it.
3263 2012-04-04  Gabor Vida  <vidagabor@gmail.com>  (tiny change)
3265         * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
3266         (bug#11145).
3268 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3270         * comint.el (comint--common-quoted-suffix): Check string boundary
3271         before comparing (bug#11158).
3272         * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
3274 2012-04-04  Chong Yidong  <cyd@gnu.org>
3276         * minibuffer.el (completion-extra-properties): Doc fix.
3278         * subr.el (delayed-warnings-hook): Doc fix.
3280 2012-04-04  Daiki Ueno  <ueno@unixuser.org>
3282         * epa.el (epa--select-keys): Bind C-c C-c to finish the key
3283         selection (Bug#11159).
3284         (epa-insert-keys): Inform that the default public key will be
3285         exported if no key is selected.
3287 2012-04-04  Richard Stallman  <rms@gnu.org>
3289         * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
3291 2012-04-03  Chong Yidong  <cyd@gnu.org>
3293         * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
3294         mail-insert-file, not its obsolete alias mail-attach-file.
3296 2012-04-03  Michael Albinus  <michael.albinus@gmx.de>
3298         * notifications.el (notifications-notify): Fix docstring.
3300 2012-04-02  Glenn Morris  <rgm@gnu.org>
3302         * emacs-lisp/authors.el (authors-aliases): Another addition.
3304 2012-04-02  Michael Albinus  <michael.albinus@gmx.de>
3306         * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
3307         `tramp-compat-call-process' instead of `tramp-local-call-process'.
3308         Reported by Magnus Henoch <magnus.henoch@gmail.com>.
3310 2012-04-01  Chong Yidong  <cyd@gnu.org>
3312         * files.el (file-in-directory-p): Rename from file-subdir-of-p.
3313         Handle root directory properly.
3314         (copy-directory): Caller changed.
3316         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3317         * net/tramp.el (tramp-file-name-for-operation): Callers changed.
3319 2012-03-31  Glenn Morris  <rgm@gnu.org>
3321         * term/xterm.el (xterm-extra-capabilities): Doc fix.
3323         * language/indian.el ("Devanagari"): Fix typo.  (Bug#11103)
3325         * calendar/calendar.el (calendar-window-list)
3326         (calendar-hide-window): Restore.  (Bug#11140)
3327         (calendar-exit): Use calendar-window-list, calendar-hide-window again.
3329         * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
3331 2012-03-30  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3333         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
3334         Check if file is a symlink (Bug#10489).
3336         * files.el (copy-directory): Likewise.
3338 2012-03-30  Chong Yidong  <cyd@gnu.org>
3340         * image.el (imagemagick-types-inhibit)
3341         (imagemagick-register-types): Doc fix.
3343 2012-03-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
3345         * ispell.el (ispell-get-extended-character-mode):
3346         Disable extended-char-mode for hunspell.  hunspell does not support it
3347         and treats ~word as ordinary words in pipe mode.
3349 2012-03-30  Glenn Morris  <rgm@gnu.org>
3351         * tutorial.el (help-with-tutorial): Ensure local variables don't
3352         happen to make the buffer read-only.  (Bug#11127)
3354 2012-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3356         * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
3357         (perl-calculate-indent): Return `noindent' in strings.
3359 2012-03-28  Sam Steingold  <sds@gnu.org>
3361         * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
3362         instead of the broken adhockery which does not prevent calendar
3363         buffers from being displayed at random after exit.
3364         (calendar-window-list, calendar-hide-window): Remove the broken
3365         adhockery.
3367 2012-03-28  Glenn Morris  <rgm@gnu.org>
3369         * replace.el (query-replace-map): Doc fix.
3371 2012-03-28  Andreas Schwab  <schwab@linux-m68k.org>
3373         * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
3374         contents.  (Bug#11109)
3376 2012-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3378         * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
3379         (bug#11077).
3380         (avl-tree--check, avl-tree--check-node): New funs.
3382 2012-03-27  Martin Rudalics  <rudalics@gmx.at>
3384         * window.el (switch-to-visible-buffer): New option.
3385         (switch-to-prev-buffer, switch-to-next-buffer):
3386         Observe switch-to-visible-buffer.  Make sure that checking for a window
3387         showing a buffer already is done on the same frame.
3389 2012-03-27  Glenn Morris  <rgm@gnu.org>
3391         * startup.el (mail-host-address): Doc fix.
3393 2012-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3395         * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
3396         than 197 variables.
3398 2012-03-26  Ami Fischman  <ami@fischman.org>
3400         * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
3402 2012-03-26  Glenn Morris  <rgm@gnu.org>
3404         * files.el (save-buffers-kill-emacs): Doc fix.
3406         * startup.el (normal-top-level, command-line, command-line-1):
3407         Give them doc strings.
3409 2012-03-25  Eli Zaretskii  <eliz@gnu.org>
3411         * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
3412         of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
3414 2012-03-25  Chong Yidong  <cyd@gnu.org>
3416         * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
3417         theme if it was previously enabled before (Bug#11031).
3419         * cus-theme.el (custom-theme-write-faces): Retrieve current face
3420         spec with custom-face-get-current-spec if its :shown-value is not
3421         determined yet (Bug#9337).
3422         (customize-create-theme, custom-theme-revert): Doc fixes.
3424         * button.el (button-at): Minor addition to docstring.
3426 2012-03-24  Simon Leinen  <simon.leinen@gmail.com>
3428         * vc/vc.el (vc-merge): Fix a prompt.
3430 2012-03-24  Chong Yidong  <cyd@gnu.org>
3432         * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
3433         point (Bug#9623).
3435         * button.el (button-at): Minor addition to docstring.
3437 2012-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3439         * newcomment.el (comment-choose-indent): No space after BOL.
3441 2012-03-22  Sam Steingold  <sds@gnu.org>
3443         * window.el (switch-to-prev-buffer): Revert last patch because the
3444         bug turned out to be an advertised feature (Elisp manual 28.14).
3446 2012-03-22  Glenn Morris  <rgm@gnu.org>
3448         * vc/vc-bzr.el (vc-bzr-status-switches): New option.  (Bug#6724)
3449         (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
3451 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3453         * net/network-stream.el (network-stream-open-starttls): Make error
3454         message under Windows be less misleading.
3456 2012-03-22  Liang Wang  <netcasper@gmail.com>  (tiny change)
3458         * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
3459         understands (bug#9942).
3461 2012-03-22  Chong Yidong  <cyd@gnu.org>
3463         * simple.el (end-of-visible-line): Handle return value of
3464         next-single-property-change properly (Bug#9371).
3466 2012-03-22  Kenichi Handa  <handa@m17n.org>
3468         * international/quail.el (quail-insert-kbd-layout): Fix previous
3469         change.  To avoid unwanted bidi reordering, use
3470         bidi-string-mark-left-to-right instead of inserting LRO and PDF.
3472 2012-03-21  Dmitry Gutov  <dgutov@yandex.ru>
3474         * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
3475         (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
3476         (ruby-beginning-of-indent): Be more careful with the difference
3477         between word-boundary and symbol boundary.
3478         (ruby-mode-syntax-table): Make : a symbol constituent.
3480 2012-03-21  Andreas Politz  <politza@fh-trier.de>
3482         * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
3484 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3486         * progmodes/etags.el (tags-completion-at-point-function):
3487         Improve last fix.
3489         * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
3491 2012-03-21  Sam Steingold  <sds@gnu.org>
3493         * progmodes/etags.el (tags-completion-at-point-function):
3494         Avoid the error when point is inside the pattern.
3496 2012-03-21  John Yates  <john@yates-sheets.org>  (tiny change)
3498         * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
3499         line (Bug#10855).
3501 2012-03-21  Drew Adams  <drew.adams@oracle.com>
3503         * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
3505 2012-03-21  Anmol Khirbat  <anmol@khirbat.net>  (tiny change)
3507         * ido.el (ido-set-current-directory, ido-read-internal)
3508         (ido-choose-completion-string, ido-completion-help): Handle nil
3509         value of ido-completion-buffer (Bug#11008).
3511 2012-03-21  Sam Steingold  <sds@gnu.org>
3513         * window.el (switch-to-prev-buffer): Do not switch to a visible
3514         window previous buffer, just like with the frame previous buffers.
3516 2012-03-21  Chong Yidong  <cyd@gnu.org>
3518         * faces.el (make-face, make-empty-face, copy-face):
3519         * face-remap.el (face-remap-add-relative, face-remap-set-base):
3520         Doc fixes.
3522 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3524         * wid-edit.el (widget-complete-field): Remove (bug#11051).
3525         (widget-complete): Remove broken use of it.
3527 2012-03-20  Chong Yidong  <cyd@gnu.org>
3529         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
3530         Use string-width and truncate-string-width to handle arbitrary
3531         characters.
3533 2012-03-20  Tassilo Horn  <tassilo@member.fsf.org>
3535         * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
3536         to draw rectangles, not squares.  (Regression introduced by revno
3537         2011-03-02T03:48:01Z!cyd@stupidchicken.com)
3539 2012-03-18  Chong Yidong  <cyd@gnu.org>
3541         * faces.el (face-spec-reset-face): Don't call display-graphic-p if
3542         it is not yet defined (for temacs).
3544 2012-03-18  Leo Liu  <sdl.web@gmail.com>
3546         * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
3548 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
3550         * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
3551         (ispell-choices-win-default-height, ispell-silently-savep)
3552         (ispell-dictionary-alist, ispell-encoding8-command)
3553         (ispell-check-version, ispell-aspell-find-dictionary)
3554         (ispell-valid-dictionary-list, ispell-words-keyword)
3555         (ispell-get-word, ispell-internal-change-dictionary)
3556         (ispell-region, ispell-skip-region-list)
3557         (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
3558         (ispell-process-line, ispell-minor-mode, ispell-minor-check)
3559         (ispell-message-text-end, ispell-message)
3560         (ispell-buffer-local-parsing): Doc fix.
3562 2012-03-13  Jambunathan K  <kjambunathan@gmail.com>
3564         * htmlfontify.el: Add support for code block fontification for ODT
3565         export (Bug #9914).
3566         (hfy-optimisations): Define new option
3567         `body-text-only'
3568         (hfy-fontify-buffer): Honor above setting.
3569         (hfy-begin-span, hfy-end-span): New routines factored out form
3570         `hfy-fontify-buffer'.
3571         (hfy-begin-span-handler, hfy-end-span-handler): New variables
3572         that permit insertion of custom tags.
3573         (hfy-fontify-buffer): Use above handlers.
3574         (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
3575         (hfy-face-to-css): Re-defined to be a variable.
3576         (hfy-compile-stylesheet): Modify.  Allow stylesheet to be built
3577         over multiple runs.  This is made possible by having the caller let
3578         bind a special variable `hfy-user-sheet-assoc'.
3579         (htmlfontify-string): New defun.
3580         (hfy-compile-face-map): Make sure that the last char in the
3581         buffer is correctly fontified.
3582         (hfy-face-resolve-face): Whitespace only change.
3584 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
3586         * textmodes/ispell.el (ispell-get-decoded-string): Make the error
3587         message more clear.
3589 2012-03-16  Leo Liu  <sdl.web@gmail.com>
3591         * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
3593 2012-03-16  Alan Mackenzie  <acm@muc.de>
3595         Further optimise the handling of large macros.
3597         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
3598         limit to a call of `c-literal-limits'.
3599         (c-determine-+ve-limit): New function.
3600         (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
3601         (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
3602         In CASE 5B, restrict a search limit to 500.
3603         (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
3605         * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
3606         Restrict macro bounds to +-500 from after-change's BEG END.
3608 2012-03-16  Leo Liu  <sdl.web@gmail.com>
3610         * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
3612 2012-03-16  Aaron S. Hawley  <Aaron.S.Hawley@gmail.com>
3614         * tar-mode.el (tar-mode): Fix saving by conditionally undoing
3615         `special-mode' setting of `buffer-read-only'.  (Bug#11010)
3617 2012-03-16  Glenn Morris  <rgm@gnu.org>
3619         * view.el (view-buffer, view-buffer-other-window)
3620         (view-buffer-other-frame): Doc fixes re special mode-class.
3622         * subr.el (eval-after-load): If named feature is provided not from
3623         a file, run after-load forms.  (Bug#10946)
3625         * calendar/calendar.el (calendar-insert-at-column):
3626         Handle non-unit-width characters a bit better.  (Bug#10978)
3628 2012-03-15  Chong Yidong  <cyd@gnu.org>
3630         * emacs-lisp/ring.el (ring-extend): New function.
3631         (ring-insert+extend): Extend the ring correctly (Bug#11019).
3633         * comint.el (comint-read-input-ring)
3634         (comint-add-to-input-history): Grow comint-input-ring lazily.
3636 2012-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3638         * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
3639         Fix up parsing of multiline twoarg non-paired elements (bug#11014).
3641         * imenu.el: Fix multiple inheritance breakage (bug#9199).
3642         (imenu-add-to-menubar): Don't add a redundant index.
3643         (imenu-update-menubar): Handle a dynamically composed keymap.
3645 2012-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
3647         * mail/sendmail.el (mail-encode-header):
3648         Bind rfc2047-encode-encoded-words to nil.
3650 2012-03-13  Glenn Morris  <rgm@gnu.org>
3652         * calendar/calendar.el (calendar-string-spread):
3653         Handle non-unit-width characters a bit better.  (Bug#10978)
3655 2012-03-13  Leo Liu  <sdl.web@gmail.com>
3657         * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
3658         directory and file as argument (Bug#10822).
3660 2012-03-13  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
3662         * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
3663         For dynamically generated code, follow $PC.
3664         (gdb-disassembly-handler-custom): Handle no function name case.
3666 2012-03-13  Tim Landscheidt  <tim@tim-landscheidt.de>  (tiny change)
3668         * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
3669         * emulation/ws-mode.el (ws-query-replace):
3670         * sort.el (sort-regexp-fields):
3671         Fix missing trailing whitespace in interactive prompts.  (Bug#11002)
3673 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3675         * dabbrev.el: Fix cycle completion order (bug#10963).
3676         (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
3677         (dabbrev-completion): Don't use an obarray; provide
3678         a cycle-sort-function.
3680 2012-03-12  Leo Liu  <sdl.web@gmail.com>
3682         * simple.el (kill-new): Use equal-including-properties for comparison.
3683         (kill-do-not-save-duplicates): Doc fix.
3685 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3687         * dabbrev.el: Fix cycle completion (bug#10963).
3688         Use lexical binding and wrap to 80 columns.
3689         (dabbrev-completion): Delay computing the list of completions.
3691 2012-03-12  Kenichi Handa  <handa@m17n.org>
3693         * international/quail.el (quail-insert-kbd-layout): Surround each
3694         row by LRO and PDF instead of inserting many LRMs.  Pad the left
3695         and right of each non-spacing marks.  Insert invisible space
3696         between lower and upper characters to prevent composition.
3698 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3700         * minibuffer.el (minibuffer-complete): Don't get confused when the
3701         function is run twice via different commands (bug#10958).
3702         (complete-with-action): Fix docstring.
3704 2012-03-12  Chong Yidong  <cyd@gnu.org>
3706         * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
3707         (nxml-completion-at-point-function): New function.
3708         (nxml-mode): Use it.
3709         (nxml-bind-meta-tab-to-complete-flag): Default to t.
3711         * emacs-lisp/package.el (package-unpack, package-unpack-single):
3712         Load generated autoloads file before byte compiling (Bug#10970).
3713         (package--make-autoloads-and-compile): New helper fun.
3715 2012-03-12  Christopher Schmidt  <christopher@ch.ristopher.com>
3717         * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
3719 2012-03-11  Michael Albinus  <michael.albinus@gmx.de>
3721         * autorevert.el (auto-revert-handler): Ensure, that
3722         file-readable-p is applied only for local files or in
3723         auto-revert-tail-mode.
3725 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
3727         * server.el (server-eval-at): Handle non-tcp connections.
3728         Decode result string.
3730         * server.el (server-msg-size): New constant.
3731         (server-reply-print): New function.
3732         (server-eval-and-print): Use it.
3733         (server-eval-at): Use server-quote-arg and server-unquote-arg.
3734         Handle -print-nonl.
3736 2012-03-11  Christopher Schmidt  <christopher@ch.ristopher.com>
3738         * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
3739         (Bug#10987).
3741 2012-03-11  Chong Yidong  <cyd@gnu.org>
3743         * simple.el (goto-line): Doc fix (Bug#9938).
3745         * subr.el (save-window-excursion): Doc fix (Bug#9979).
3747         * dabbrev.el (dabbrev--find-expansion): Update progress reporter
3748         when finished (Bug#10963).
3750 2012-03-11  Martin Rudalics  <rudalics@gmx.at>
3752         * window.el (split-window-below): Fix bug in case where
3753         split-window-keep-point is nil (Bug#10971).
3755 2012-03-11  Juri Linkov  <juri@jurta.org>
3757         * replace.el (replace-highlight): Set isearch-word to nil
3758         unconditionally.  (Bug#10887)
3760 2012-03-10  Eli Zaretskii  <eliz@gnu.org>
3762         * net/mairix.el (mairix-replace-invalid-chars): Rename from
3763         mairix-replace-illegal-chars; all callers changed.  Don't remove
3764         ^, ~, and = characters: they are meaningful in mairix search specs.
3765         (mairix-widget-create-query): Add usage information about mairix
3766         search forms: negating words, searching for substrings, etc.
3768 2012-03-10  Jae-hyeon Park  <jae-hyeon.park@desy.de>  (tiny change)
3770         * international/fontset.el (font-encoding-alist): Add an entry for
3771         ksx1001 (Bug#5667).
3773 2012-03-10  Richard Stallman  <rms@gnu.org>
3775         * mail/sendmail.el (mail-encode-header):
3776         Set rfc2047-encode-encoded-words.
3778         * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
3780         * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
3781         view buffer means not swapped.
3782         (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
3783         (rmail-write-region-annotate): Error if real text has disappeared.
3785         * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
3787 2012-03-10  Chong Yidong  <cyd@gnu.org>
3789         * emulation/cua-rect.el (cua--init-rectangles):
3790         * emulation/cua-base.el (cua--init-keymaps):
3791         Add delete-forward-char to remappings (Bug#9666).
3793 2012-03-10  Martin Rudalics  <rudalics@gmx.at>
3795         * speedbar.el (speedbar-unhighlight-one-tag-line):
3796         Avoid unhighlighting due to frame switching (Bug#10275).
3798 2012-03-10  Chong Yidong  <cyd@gnu.org>
3800         * minibuffer.el (completion-in-region, completion-help-at-point):
3801         Give the completion field overlay a high priority (Bug#6830).
3803         * dired.el (dired-goto-file): Recognize absolute file name
3804         listings (Bug#7126).
3805         (dired-goto-file-1): New helper function.
3806         (dired-toggle-read-only): Inhibit warnings.
3808 2012-03-09  Michael Albinus  <michael.albinus@gmx.de>
3810         * net/dbus.el (dbus-property-handler): Return empty array if
3811         there are no properties.
3813 2012-03-09  Leo Liu  <sdl.web@gmail.com>
3815         * savehist.el (savehist-printable): Stricter check for string
3816         value (Bug#10937).
3818 2012-03-09  Eli Zaretskii  <eliz@gnu.org>
3820         * mail/smtpmail.el (smtpmail-send-it):
3821         Bind coding-system-for-write to *-unix, so that FCC files are kept in
3822         valid mbox format.
3824 2012-03-09  Glenn Morris  <rgm@gnu.org>
3826         * files.el (dir-locals-find-file):
3827         Don't check result is regular, readable.
3828         (dir-locals-read-from-file): Demote errors.
3830 2012-03-08  Eli Zaretskii  <eliz@gnu.org>
3832         * international/quail.el (quail-insert-kbd-layout):
3833         Insert invisible LRM characters before each character in a keyboard
3834         layout cell, to prevent their reordering by bidi display engine.
3835         For details, see the discussion in
3836         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
3838 2012-03-08  Alan Mackenzie  <acm@muc.de>
3840         * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
3841         the starting position; make it extend the marked region when
3842         invoked repeatedly - all under appropriate circumstances.
3843         Fixes bugs #5525, #10906.
3845 2012-03-08  Glenn Morris  <rgm@gnu.org>
3847         * files.el (locate-dominating-file, dir-locals-find-file):
3848         Undo 2012-03-06 change.
3850 2012-03-07  Eli Zaretskii  <eliz@gnu.org>
3852         * international/quail.el (quail-help):
3853         Force bidi-paragraph-direction be left-to-right.  See discussion in
3854         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
3855         for the reason.
3857 2012-03-07  Michael Albinus  <michael.albinus@gmx.de>
3859         Avoid superfluous registering of signals.  (Bug#10807)
3861         * notifications.el (notifications-on-action-object)
3862         (notifications-on-close-object): New defvars.
3863         (notifications-on-action-signal, notifications-on-closed-signal):
3864         Unregister the signal if not needed any longer.
3865         (notifications-notify): Register `notifications-action-signal' or
3866         `notifications-closed-signal', if :on-action or :on-close has been
3867         passed as argument.
3869 2012-03-07  Chong Yidong  <cyd@gnu.org>
3871         * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
3872         non-X platforms.
3874 2012-03-06  Glenn Morris  <rgm@gnu.org>
3876         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
3877         (x-disown-selection-internal, x-get-selection-internal):
3878         Doc fix (add arglist signatures).  (Bug#10783)
3880 2012-03-06  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
3882         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
3883         Handle breakpoints with no "type".
3885 2012-03-06  Glenn Morris  <rgm@gnu.org>
3887         * files.el (locate-dominating-file): Add optional predicate argument.
3888         (dir-locals-find-file): Make use of above change.
3890 2012-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>
3892         * info.el (Info-insert-dir): Also try "dir.gz".
3894 2012-03-06  Glenn Morris  <rgm@gnu.org>
3896         * files.el (dir-locals-find-file):
3897         Ignore non-readable or non-regular files.  (Bug#10928)
3899         * files.el (locate-dominating-file): Doc fix.
3901 2012-03-06  Adam Spiers  <emacs@adamspiers.org>  (tiny change)
3903         * calendar/calendar.el (calendar-set-mode-line):
3904         `getenv' returns a string.  (Bug#10951)
3906 2012-03-05  Leo Liu  <sdl.web@gmail.com>
3908         * simple.el (backward-delete-char-untabify): Constrain point to
3909         field (Bug#10939).
3911         * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
3913 2012-03-05  Chong Yidong  <cyd@gnu.org>
3915         * simple.el (count-words): If called from Lisp, return the word
3916         count, for symmetry with `count-lines'.  Arglist changed.
3917         (count-words--message): Args changed.  Consolidate counting code
3918         from count-words and count-words-region.
3919         (count-words-region): Caller changed.
3920         (count-lines-region): Make it an obsolete alias.
3922 2012-03-04  Tassilo Horn  <tassilo@member.fsf.org>
3924         * saveplace.el (save-place-to-alist)
3925         (save-place-ignore-files-regexp): Allow value nil to disable this
3926         feature.
3928 2012-03-04  Chong Yidong  <cyd@gnu.org>
3930         * faces.el (face-spec-reset-face): For the default face, reset the
3931         attributes to default values (Bug#10748).
3933 2012-03-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3935         * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
3936         previous patch: Check `message-send-mail-function', and not the
3937         default function (bug#10897).
3939 2012-03-04  Michael Albinus  <michael.albinus@gmx.de>
3941         * notifications.el (notifications-on-action-signal)
3942         (notifications-on-closed-signal): Check for unique service name of
3943         incoming event.  Fix error in removing entry.
3944         (top): Register for signals with wildcard service name.
3945         (notifications-notify): Use daemon unique service name for map entries.
3947 2012-03-04  Chong Yidong  <cyd@gnu.org>
3949         * cus-start.el: Make x-select-enable-clipboard-manager customizable.
3951 2012-03-04  Glenn Morris  <rgm@gnu.org>
3953         * abbrev.el (copy-abbrev-table, abbrev-table-p)
3954         (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
3955         (expand-abbrev, define-abbrev-table): Doc fixes.
3957 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3959         * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
3960         `message-default-send-mail-function' and not `send-mail-function'
3961         when doing the prompting for `sendmail-query-once' before sending
3962         in Message buffers (bug#10897).
3964         * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
3965         This is inconsistent with all the other stream functions, which leave
3966         the setting up to the higher levels (if so wanted) (bug#10931).
3968 2012-03-02  Alan Mackenzie  <acm@muc.de>
3970         Depessimize the handling of very large macros.
3972         * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
3973         (c-macro-cache-syntactic): New variables to implement a one
3974         element macro cache.
3975         (c-invalidate-macro-cache): New function.
3976         (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
3977         Adapt to use the new cache.
3978         (c-state-safe-place): Use better the cache of safe positions.
3979         (c-state-semi-nonlit-pos-cache)
3980         (c-state-semi-nonlit-pos-cache-limit):
3981         New variables for...
3982         (c-state-semi-safe-place): New function.  Here, in a macro is "safe".
3983         (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
3984         (c-in-literal, c-literal-limits, c-determine-limit-get-base):
3985         Use c-state-semi-safe-place.
3987         * progmodes/cc-langs.el (c-get-state-before-change-functions):
3988         Add c-invalidate-macro-cache to the C, C++, Obj entries.
3990 2012-03-02  Michael Albinus  <michael.albinus@gmx.de>
3992         * jka-compr.el (jka-compr-call-process):
3993         Apply `file-accessible-directory-p' only when the default directory is
3994         not remote.
3996 2012-03-01  Michael Albinus  <michael.albinus@gmx.de>
3998         * files.el (file-equal-p): Fix docstring.  Avoid unnecessary
3999         access of FILE2, if FILE1 does not exist.
4001         * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
4002         Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
4004         * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
4005         Add "PAGER=" to `process-environment'.
4007 2012-03-01  Michael R. Mauger  <mmaug@yahoo.com>
4009         * progmodes/sql.el: Bug fix
4010         (sql-get-login-ext): Save login values in globals.
4011         (sql-get-login): Use new version of `sql-get-login-ext'.
4012         (sql-interactive-mode): Set global `sql-connection' to nil.
4013         (sql-connect): Set global values for connection.
4014         (sql-product-interactive): Save global values as buffer local.
4016 2012-02-29  Leo Liu  <sdl.web@gmail.com>
4018         * abbrev.el (define-abbrevs): Reset sys to nil.
4020 2012-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4022         * files.el (file-equal-p): Rename from `files-equal-p'.
4023         Return nil when one or both files don't exist.
4024         (file-subdir-of-p): Now only top directory must exists,
4025         return nil if it doesn't.
4026         (copy-directory): No need to test with `file-subdir-of-p' after
4027         creating dir.
4028         * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
4029         to `file-equal-p'.
4031 2012-02-28  Glenn Morris  <rgm@gnu.org>
4033         * shell.el (shell-mode):
4034         * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
4035         * play/landmark.el (landmark-font-lock-face-O):
4036         * play/handwrite.el (handwrite):
4037         * play/gomoku.el (gomoku-O):
4038         * net/browse-url.el (browse-url-browser-display):
4039         * international/mule.el (define-charset):
4040         * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
4041         * filesets.el (filesets-find-file-delay):
4042         * eshell/em-xtra.el (eshell-xtra):
4043         * eshell/em-unix.el (eshell-grep):
4044         * emulation/viper.el (viper-mode):
4045         * emacs-lisp/regexp-opt.el (regexp-opt-group):
4046         * emacs-lisp/easymenu.el (easy-menu-define):
4047         * calendar/timeclock.el (timeclock-use-display-time):
4048         * bs.el (bs-mode):
4049         * bookmark.el (bookmark-save-flag):
4050         Doc fix (standardize possessive apostrophe usage).
4052 2012-02-27  Chong Yidong  <cyd@gnu.org>
4054         * emulation/viper-cmd.el (viper-intercept-ESC-key):
4055         Fix key-binding lookup for ESC key (Bug#9146).
4057         * font-lock.el (font-lock-specified-p): Rename from
4058         font-lock-spec-present.  Callers changed.
4060 2012-02-27  Daniel Hackney  <dan@haxney.org>
4062         * emacs-lisp/package.el (package-compute-transaction):
4063         Handle holding a package version to t in package-load-list.
4065 2012-02-26  Michael Albinus  <michael.albinus@gmx.de>
4067         * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
4068         (tramp-get-inode, tramp-get-device): Use cached values.
4070 2012-02-26  Alan Mackenzie  <acm@muc.de>
4072         Check there is a font-lock specification before doing initial
4073         fontification.
4075         * font-core.el (font-lock-mode): Move the conditional from
4076         :after-hook to font-lock-initial-fontify.
4077         (font-lock-default-function): Move the check for a specification
4078         to font-lock-spec-present.
4080         * font-lock.el (font-lock-initial-fontify): Call ...
4081         (font-lock-spec-present): New function.
4083 2012-02-26  Jim Blandy  <jimb@red-bean.com>
4085         * progmodes/gdb-mi.el (gdb-mi-quote): New function.
4086         (gdb-send): Apply it to the operand of the '-interpreter-exec
4087         console' command, so that we can pass arguments with (say) quotes
4088         in them.  Store exact string sent in gdb-debug-log (Bug#10765).
4090 2012-02-26  Chong Yidong  <cyd@gnu.org>
4092         * help-fns.el (describe-function-1): Clarify description of
4093         remapping (Bug#10844).
4095         * files.el (files-equal-p): Doc fix.
4096         (file-subdir-of-p): Doc fix.  Convert loop macro to plain Lisp,
4097         and quit the loop once a mismatch is found.
4099 2012-02-25  Juanma Barranquero  <lekktu@gmail.com>
4101         * bs.el (bs--show-with-configuration): Don't throw an error
4102         if the window cannot be split; otherwise, subsequent calls to
4103         bs-show fail, restoring a stale window config.  (Bug#10882)
4105 2012-02-25  Jan Djärv  <jan.h.d@swipnet.se>
4107         * term/ns-win.el (global-map): Bind ns-drag-file to
4108         ns-find-file (Bug#5855, Bug#10050).
4110 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
4112         * calendar/parse-time.el (parse-time-string): Allow extractor to
4113         return nil.
4115 2012-02-25  Michael Albinus  <michael.albinus@gmx.de>
4117         * net/tramp.el (tramp-file-name-for-operation):
4118         Add `files-equal-p' and `file-subdir-of-p'.
4120         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
4121         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
4122         Add COPY-CONTENTS argument.
4124 2012-02-25  Chong Yidong  <cyd@gnu.org>
4126         Add custom groups for VC backends, for consistency with vc-bzr.
4128         * vc/vc-arch.el (vc-arch):
4129         * vc/vc-cvs.el (vc-cvs):
4130         * vc/vc-git.el (vc-git):
4131         * vc/vc-hg.el (vc-hg):
4132         * vc/vc-mtn.el (vc-mtn):
4133         * vc/vc-rcs.el (vc-rcs):
4134         * vc/vc-sccs.el (vc-sccs):
4135         * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
4136         All relevant defcustoms reassigned.
4138 2012-02-25  Chong Yidong  <cyd@gnu.org>
4140         * newcomment.el (comment-styles): Add autoload (Bug#10868).
4142         * term/x-win.el (x-initialize-window-system): Reduce default for
4143         x-selection-timeout to 5 seconds (Bug#8869).
4145 2012-02-24  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4147         * files.el (files-equal-p, file-subdir-of-p): New functions.
4148         (copy-directory): Error when trying to copy a directory on itself.
4149         Add missing copy-contents arg to tramp handler.
4150         * dired-aux.el (dired-copy-file-recursive): Same.
4151         (dired-create-files): Modify destination when source is equal to
4152         dest when copying files.
4153         Return also when dest is a subdir of source.  (Bug#10489)
4155 2012-02-24  Michael Albinus  <michael.albinus@gmx.de>
4157         * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
4158         (Bug#10874)
4160 2012-02-23  Alan Mackenzie  <acm@muc.de>
4162         * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
4163         parameter "after-hook:" to allow the expansion to run code after
4164         the execution of the mode hooks.
4166         * font-lock.el (font-lock-initial-fontify): New function extracted
4167         from font-lock-mode-internal.
4169         * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
4170         :after-hook.
4172 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4174         * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
4175         (completion--cache-all-sorted-completions): New function.
4176         (completion-all-sorted-completions): Use it.
4177         (completion--do-completion, minibuffer-force-complete):
4178         Use it to re-instate the flush hook.
4180         * icomplete.el (icomplete-completions): Replace last fix with a better
4181         one (bug#10850).
4183 2012-02-23  Dmitry Gutov  <dgutov@yandex.ru>
4185         * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
4186         when it might call us back infinitely (bug#10797).
4188 2012-02-23  Glenn Morris  <rgm@gnu.org>
4190         * minibuffer.el (completion-category-overrides): Doc fix.
4192 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4194         * minibuffer.el (completion-table-with-context): Fix inf-loop.
4195         Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
4197 2012-02-23  Glenn Morris  <rgm@gnu.org>
4199         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
4200         (authors-obsolete-files-regexps, authors-ignored-files)
4201         (authors-ambiguous-files, authors-renamed-files-alist):
4202         Add more entries.
4204 2012-02-23  Juri Linkov  <juri@jurta.org>
4206         * isearch.el (isearch-occur): Sync interactive spec with occur's
4207         new feature in `occur-read-primary-args'.  Doc fix.  (Bug#10705)
4209         * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
4211 2012-02-22  Juri Linkov  <juri@jurta.org>
4213         * international/mule-cmds.el (read-char-by-name): Use \` and \'.
4214         (ucs-insert): Doc fix.  Check for hex digits in the string.
4215         Don't display `nil' in the error message.  (Bug#10857)
4217 2012-02-22  Alan Mackenzie  <acm@muc.de>
4219         * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
4221 2012-02-22  Glenn Morris  <rgm@gnu.org>
4223         * ffap.el (ffap-c-path):
4224         * man.el (Man-header-file-path): Handle multiarch.  (Bug#10702)
4226 2012-02-22  Chong Yidong  <cyd@gnu.org>
4228         * custom.el (load-theme): Doc fix.
4230 2012-02-22  Glenn Morris  <rgm@gnu.org>
4232         * dired-x.el (dired-guess-shell-alist-default):
4233         Remove escape sequences from nroff output.  (Bug#172)
4235 2012-02-21  Glenn Morris  <rgm@gnu.org>
4237         * vc/emerge.el (emerge-defvar-local):
4238         Set `permanent-local' property rather than unused `preserved'.
4240         * textmodes/picture.el (picture-delete-char): New alias.
4241         (picture-mode-map): Use it.  (Bug#10860)
4242         (picture-mode): Doc fix.
4244 2012-02-21  Juanma Barranquero  <lekktu@gmail.com>
4246         * newcomment.el (uncomment-region-default): Remove unused binding.
4248 2012-02-21  Glenn Morris  <rgm@gnu.org>
4250         * textmodes/picture.el (picture-motion, picture-motion-reverse)
4251         (picture-self-insert, picture-tab-chars): Doc fix.
4252         (picture-mode-map): Fix C-a, C-e.
4254 2012-02-20  Glenn Morris  <rgm@gnu.org>
4256         * emacs-lisp/authors.el (authors-aliases): Add another entry.
4258 2012-02-20  Leo Liu  <sdl.web@gmail.com>
4260         * icomplete.el (icomplete-completions): Check FROM arg before
4261         passing to substring (Bug#10850).
4263 2012-02-19  Chong Yidong  <cyd@gnu.org>
4265         * comint.el: Require ansi-color.
4266         (comint-output-filter-functions): Add ansi-color-process-output.
4268         * ansi-color.el: Don't set comint-output-filter-functions; it is
4269         now in the initial value defined in comint.el.
4270         (ansi-color-apply-face-function): New variable.
4271         (ansi-color-apply-on-region): Use it.
4272         (ansi-color-apply-overlay-face): New function.
4274         * shell.el (shell): No need to require ansi-color.
4275         (shell-mode): Use ansi-color-apply-face-function to highlight
4276         color escapes using font-lock-face property (Bug#10835).
4278 2012-02-19  Chong Yidong  <cyd@gnu.org>
4280         * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
4281         mode-line formats (Bug#10839).
4283 2012-02-18  Glenn Morris  <rgm@gnu.org>
4285         * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
4287         * mail/undigest.el (unforward-rmail-message): Doc fix.
4289         * saveplace.el (save-place-ignore-files-regexp): Add :version.
4291 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
4293         * international/characters.el (script-list): Sync with the latest
4294         Unicode Character Database.
4296 2012-02-18  Andreas Schwab  <schwab@linux-m68k.org>
4298         * international/titdic-cnv.el: Remove duplicate coding tag.
4299         * language/cham.el: Likewise.
4300         * language/tai-viet.el: Likewise.
4302 2012-02-18  Glenn Morris  <rgm@gnu.org>
4304         * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
4305         * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
4306         (calendar-bahai-all-holidays-flag, calendar-other-dates):
4307         * calendar/diary-lib.el (diary-abbreviated-year-flag):
4308         * calendar/holidays.el (holiday-bahai-holidays)
4309         (calendar-holidays, list-holidays):
4310         Use utf-8 Bahá'í in doc-strings, menus, etc.
4312 2012-02-17  Tassilo Horn  <tassilo@member.fsf.org>
4314         * saveplace.el (save-place-ignore-files-regexp): New variable
4315         allowing for excluding files from saving their location of point.
4316         The default value matches the temporary commit message editing
4317         files from Git, SVN, Bazaar, and Mercurial.
4318         (save-place-to-alist): Use it.
4320 2012-02-17  Lawrence Mitchell <wence@gmx.li>
4321             Stefan Monnier  <monnier@iro.umontreal.ca>
4323         * newcomment.el (uncomment-region-default): Don't leave extra space
4324         when an arg is provided (bug#8150).
4326 2012-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
4328         * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
4330 2012-02-17  Glenn Morris  <rgm@gnu.org>
4332         * net/socks.el: Require network-stream.  (Bug#10599)
4334 2012-02-17  Kenichi Handa  <handa@m17n.org>
4336         * international/charprop.el:
4337         * international/uni-name.el:
4338         * international/uni-old-name.el:
4339         * international/uni-comment.el: Regenerate.
4341 2012-02-16  Glenn Morris  <rgm@gnu.org>
4343         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
4344         Interactively in calendar buffer, give an error if not on a date.
4346 2012-02-15  Glenn Morris  <rgm@gnu.org>
4348         * shell.el (shell-delimiter-argument-list):
4349         Revert 2011-02-17 change.  (Bug#8027)
4351 2012-02-15  Chong Yidong  <cyd@gnu.org>
4353         * minibuffer.el (completion-at-point-functions): Doc fix.
4355         * custom.el (defcustom): Doc fix; note use of defvar.
4357 2012-02-15  Glenn Morris  <rgm@gnu.org>
4359         * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
4360         Doc fixes.
4362 2012-02-14  Glenn Morris  <rgm@gnu.org>
4364         * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
4366 2012-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
4368         * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
4369         way the ports list is computed.
4370         (smtpmail-query-smtp-server): Prompt the user for a port number if
4371         we can't connect to any of the standard ports (bug#10810).
4373 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
4375         * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
4377 2012-02-13  Glenn Morris  <rgm@gnu.org>
4379         * minibuffer.el (read-file-name): Doc fix.  (Bug#10798)
4381 2012-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
4383         * net/gnutls.el (gnutls-trustfiles): New variable.
4384         (gnutls-negotiate): Use it.
4386 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
4388         * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
4389         does its stuff if Gnus is running.
4391 2012-02-13  Alan Mackenzie  <acm@muc.de>
4393         Fix a loop in c-set-fl-decl-start.
4395         * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
4396         c-backward-syntactic-ws actually moves backwards.
4398 2012-02-13  Leo Liu  <sdl.web@gmail.com>
4400         * net/rcirc.el (rcirc-markup-attributes): Move point to the
4401         beginning so that all \C-o chars are removed.
4403 2012-02-12  Teodor Zlatanov  <tzz@lifelogs.com>
4405         * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
4407 2012-02-12  Alan Mackenzie  <acm@muc.de>
4409         Fix infinite loop with long macros.
4410         * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
4412 2012-02-12  Chong Yidong  <cyd@gnu.org>
4414         * window.el (display-buffer): Doc fix (Bug#10785).
4416 2012-02-12  Glenn Morris  <rgm@gnu.org>
4418         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
4419         (x-disown-selection-internal, x-get-selection-internal):
4420         Sync docs with the xselect.c versions.
4422         * allout-widgets.el: Add missing license notice.
4424 2012-02-11  Glenn Morris  <rgm@gnu.org>
4426         * select.el (x-get-selection-internal, x-own-selection-internal)
4427         (x-disown-selection-internal):
4428         * x-dnd.el (x-get-selection-internal): Update declarations.
4430         * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
4432         * window.el (window-sides-slots):
4433         * tool-bar.el (tool-bar-position):
4434         * term/xterm.el (xterm-extra-capabilities):
4435         * ses.el (ses-self-reference-early-detection):
4436         * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
4437         (verilog-auto-wire-type)
4438         (verilog-auto-delete-trailing-whitespace)
4439         (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
4440         (verilog-auto-tieoff-declaration):
4441         * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
4442         (sql-oracle-statement-starters, sql-oracle-scan-on):
4443         * progmodes/prolog.el (prolog-align-comments-flag)
4444         (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
4445         (prolog-left-indent-regexp, prolog-paren-indent-p)
4446         (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
4447         (prolog-types, prolog-mode-specificators)
4448         (prolog-determinism-specificators, prolog-directives)
4449         (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
4450         (prolog-electric-dot-flag)
4451         (prolog-electric-dot-full-predicate-template)
4452         (prolog-electric-underscore-flag, prolog-electric-tab-flag)
4453         (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
4454         (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
4455         (prolog-program-switches, prolog-prompt-regexp)
4456         (prolog-debug-on-string, prolog-debug-off-string)
4457         (prolog-trace-on-string, prolog-trace-off-string)
4458         (prolog-zip-on-string, prolog-zip-off-string)
4459         (prolog-use-standard-consult-compile-method-flag)
4460         (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
4461         (prolog-imenu-max-lines, prolog-info-predicate-index)
4462         (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
4463         (prolog-char-quote-workaround):
4464         * progmodes/cc-vars.el (c-defun-tactic):
4465         * net/tramp.el (tramp-encoding-command-interactive)
4466         (tramp-local-end-of-line):
4467         * net/soap-client.el (soap-client):
4468         * net/netrc.el (netrc-file):
4469         * net/gnutls.el (gnutls):
4470         * minibuffer.el (completion-category-overrides)
4471         (completion-cycle-threshold)
4472         (completion-pcm-complete-word-inserts-delimiters):
4473         * man.el (Man-name-local-regexp):
4474         * mail/feedmail.el (feedmail-display-full-frame):
4475         * international/characters.el (glyphless-char-display-control):
4476         * eshell/em-ls.el (eshell-ls-date-format):
4477         * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
4478         (lisp-lambda-list-keyword-parameter-indentation)
4479         (lisp-lambda-list-keyword-parameter-alignment):
4480         * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
4481         * dired-x.el (dired-omit-verbose):
4482         * cus-theme.el (custom-theme-allow-multiple-selections):
4483         * calc/calc.el (calc-highlight-selections-with-faces)
4484         (calc-lu-field-reference, calc-lu-power-reference)
4485         (calc-note-threshold):
4486         * battery.el (battery-mode-line-limit):
4487         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
4488         (archive-7z-update):
4489         * allout.el (allout-prefixed-keybindings)
4490         (allout-unprefixed-keybindings)
4491         (allout-inhibit-auto-fill-on-headline)
4492         (allout-flattened-numbering-abbreviation):
4493         * allout-widgets.el (allout-widgets-auto-activation)
4494         (allout-widgets-icons-dark-subdir)
4495         (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
4496         (allout-widgets-theme-dark-background)
4497         (allout-widgets-theme-light-background)
4498         (allout-widgets-item-image-properties-emacs)
4499         (allout-widgets-item-image-properties-xemacs)
4500         (allout-widgets-run-unit-tests-on-load)
4501         (allout-widgets-time-decoration-activity)
4502         (allout-widgets-hook-error-post-time)
4503         (allout-widgets-track-decoration):
4504         Add missing :version tags to new defcustoms and defgroups.
4506         * progmodes/sql.el (sql-ansi-statement-starters)
4507         (sql-oracle-statement-starters): Add custom type.
4509         * progmodes/prolog.el: Remove leading '*' from defcustom docs.
4510         (prolog-system-version): Give it a type.
4512 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
4514         * term/pc-win.el (x-select-text, x-selection-owner-p)
4515         (x-own-selection-internal, x-disown-selection-internal)
4516         (x-get-selection-internal): Sync doc strings and argument lists
4517         with xselect.c, common-win.el and x-win.el.  (Bug#10783)
4519 2012-02-11  Leo Liu  <sdl.web@gmail.com>
4521         * progmodes/python.el (python-end-of-statement): Fix infinite
4522         loop.  (Bug#10788)
4524 2012-02-10  Glenn Morris  <rgm@gnu.org>
4526         * international/mule-cmds.el (unify-8859-on-encoding-mode)
4527         (unify-8859-on-decoding-mode): Properly mark as obsolete.
4529 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
4531         * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
4532         about SMTP before checking the From header.
4534         * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
4535         into own function for reuse by emacsbug.el.
4537 2012-02-10  Leo Liu  <sdl.web@gmail.com>
4539         * subr.el (condition-case-unless-debug): Rename from
4540         condition-case-no-debug.  All callers changed.
4541         (with-demoted-errors): Fix caller.
4543         * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
4544         * nxml/rng-valid.el (rng-do-some-validation):
4545         * emacs-lisp/package.el (package-refresh-contents)
4546         (package-menu-execute):
4547         * desktop.el (desktop-create-buffer):
4548         * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
4550 2012-02-10  Glenn Morris  <rgm@gnu.org>
4552         * textmodes/bibtex.el:
4553         Add missing :version tags for new/changed defcustoms.
4555         * files.el (remote-file-name-inhibit-cache): Doc fixes.
4557 2012-02-09  Lars Ingebrigtsen  <larsi@rusty>
4559         * mail/smtpmail.el (smtpmail-user-mail-address): New function.
4560         (smtpmail-via-smtp): Use it, or fall back on the From address.
4561         (smtpmail-send-it): Ditto.
4563 2012-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4565         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
4566         Don't fallback on byte-compile-defvar.  Optimize (defvar foo) away.
4567         (byte-compile-tmp-var): New const.
4568         (byte-compile-defvar): Use it to minimize .elc size.
4569         Just use `defvar' rather than simulate it (bug#10761).
4571 2012-02-09  Glenn Morris  <rgm@gnu.org>
4573         * files.el (rename-uniquely): Doc fix.  (Bug#3806)
4575         * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
4576         Add :version tags.
4578         * progmodes/compile.el (compilation-error-screen-columns)
4579         (compilation-first-column, compilation-filter-start): Doc fixes.
4581         * vc/log-view.el (log-view-toggle-entry-display):
4582         * vc/vc.el (vc-merge, vc-pull): Doc fixes.
4584         * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
4585         (report-emacs-bug-can-use-xdg-email):
4586         (report-emacs-bug-insert-to-mailer): Doc fixes.
4587         (report-emacs-bug): Message fix.
4589         * net/browse-url.el (browse-url-can-use-xdg-open)
4590         (browse-url-xdg-open): Doc fixes.
4592         * electric.el (electric-indent-mode, electric-pair-mode)
4593         (electric-layout-rules, electric-layout-mode): Doc fixes.
4594         (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
4596 2012-02-08  Martin Rudalics  <rudalics@gmx.at>
4598         * server.el (server-unselect-display): Don't inadvertently kill
4599         the current buffer.  (Bug#10729)
4601 2012-02-08  Glenn Morris  <rgm@gnu.org>
4603         * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
4604         (sql-list-table): Doc fixes.
4606         * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
4607         Comment out (does nothing).
4609         * completion.el (dynamic-completion-mode):
4610         * dirtrack.el (dirtrack-debug-mode):
4611         * electric.el (electric-layout-mode):
4612         * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
4613         * face-remap.el (text-scale-mode, buffer-face-mode):
4614         * iimage.el (iimage-mode):
4615         * image-mode.el (image-transform-mode):
4616         * minibuffer.el (completion-in-region-mode):
4617         * scroll-lock.el (scroll-lock-mode):
4618         * simple.el (next-error-follow-minor-mode):
4619         * tar-mode.el (tar-subfile-mode):
4620         * tooltip.el (tooltip-mode):
4621         * vcursor.el (vcursor-use-vcursor-map):
4622         * wid-browse.el (widget-minor-mode):
4623         * emulation/tpu-edt.el (tpu-edt-mode):
4624         * emulation/tpu-extras.el (tpu-cursor-free-mode):
4625         * international/iso-ascii.el (iso-ascii-mode):
4626         * language/thai-util.el (thai-word-mode):
4627         * mail/supercite.el (sc-minor-mode):
4628         * net/goto-addr.el (goto-address-mode):
4629         * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
4630         * progmodes/cwarn.el (cwarn-mode):
4631         * progmodes/flymake.el (flymake-mode):
4632         * progmodes/glasses.el (glasses-mode):
4633         * progmodes/hideshow.el (hs-minor-mode):
4634         * progmodes/pascal.el (pascal-outline-mode):
4635         * textmodes/enriched.el (enriched-mode):
4636         * vc/smerge-mode.el (smerge-mode):
4637         Doc fixes (minor mode argument).
4639 2012-02-07  Eli Zaretskii  <eliz@gnu.org>
4641         * ls-lisp.el (ls-lisp-sanitize): New function.
4642         (ls-lisp-insert-directory): Use it to fix or remove any elements
4643         in file-alist with missing attributes.  (Bug#4673)
4645 2012-02-07  Alan Mackenzie  <acm@muc.de>
4647         Fix spurious recognition of c-in-knr-argdecl.
4649         * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
4650         putative K&R region.
4652 2012-02-07  Alan Mackenzie  <acm@muc.de>
4654         * progmodes/cc-engine.el (c-forward-objc-directive):
4655         Prevent looping in "#pragma mark @implementation".
4657 2012-02-07  Michael Albinus  <michael.albinus@gmx.de>
4659         * notifications.el (notifications-on-closed-signal): Make `reason'
4660         optional.  (Bug#10744)
4662 2012-02-07  Glenn Morris  <rgm@gnu.org>
4664         * emacs-lisp/easy-mmode.el (define-minor-mode):
4665         Doc fixes for the macro and the mode it defines.
4667         * image.el (imagemagick-types-inhibit): Doc fix.
4669         * cus-start.el (imagemagick-render-type): Add it.
4671 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
4673         * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
4674         Set the default at load time, too, so that `font-lock-fontify-buffer'
4675         can be called without setting up the entire mode first.  This fixes
4676         a bug in `mm-inline-text' with C MIME parts.
4678 2012-02-06  Chong Yidong  <cyd@gnu.org>
4680         * simple.el (list-processes--refresh): Delete exited processes
4681         (Bug#8094).
4683         * comint.el (comint-next-prompt): next-single-char-property-change
4684         and prev-single-char-property-change never return nil (Bug#8657).
4686         * custom.el (defcustom): Doc fix (Bug#9711).
4688 2012-02-05  Chong Yidong  <cyd@gnu.org>
4690         * cus-edit.el (custom-variable-reset-backup): Quote the value
4691         before storing it in the customized-value property (Bug#6712).
4692         (custom-display): Add a customization type tag.
4693         (custom-buffer-create-internal): Improve tooltip message.
4695         * wid-edit.el (widget-field-value-get): New optional arg to
4696         suppress trailing whitespace truncation.
4697         (character): Use it (Bug#2689).
4699 2012-02-05  Andreas Schwab  <schwab@linux-m68k.org>
4701         * progmodes/gud.el (gud-pv): Use pv instead of pv1.
4702         * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
4704 2012-02-05  Chong Yidong  <cyd@gnu.org>
4706         * cus-edit.el (custom-variable-value-create): For mismatched
4707         types, show the current value (Bug#7600).
4709         * custom.el (defcustom): Doc fix.
4711 2012-02-05  Glenn Morris  <rgm@gnu.org>
4713         * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
4715 2012-02-05  Juanma Barranquero  <lekktu@gmail.com>
4717         * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
4718         (pp-buffer): Use `ignore-errors', `looking-at-p'.
4719         (pp-last-sexp): Use `looking-at-p'.
4721 2012-02-04  Glenn Morris  <rgm@gnu.org>
4723         * files.el (revert-buffer):
4724         Doc fix (mention revert-buffer-in-progress-p).
4726         * emacs-lisp/ert-x.el (ert-simulate-command):
4727         Check deferred-action-list (which is obsolete) is bound.
4729         * subr.el (with-wrapper-hook): Doc fixes.
4731         * simple.el (filter-buffer-substring-functions)
4732         (buffer-substring-filters, filter-buffer-substring): Doc fixes.
4734 2012-02-04  Lars Ljung  <lars@matholka.se>  (tiny change)
4736         * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
4737         anywhere in shell-file-name, not just at the beginning.  (Bug#10523)
4739 2012-02-04  Leo Liu  <sdl.web@gmail.com>
4741         * emacs-lisp/smie.el: Fix dead link (Bug#10711).
4743 2012-02-04  Glenn Morris  <rgm@gnu.org>
4745         * image.el (image-extension-data): Add obsolete alias.
4747         * isearch.el (isearch-update): Doc fix.
4749         * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
4751         * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
4753 2012-02-03  Glenn Morris  <rgm@gnu.org>
4755         * image.el (image-animated-p): Doc fix.  Use image-animated-types.
4756         (image-animate-timeout): Doc fix.
4758         * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
4760 2012-02-02  Glenn Morris  <rgm@gnu.org>
4762         * server.el (server-auth-dir): Doc fix.
4763         (server-eval-at): Doc fix.  Give an explicit error if !server-use-tcp.
4765         * subr.el (run-mode-hooks): Doc fix.
4767 2012-02-02  Juri Linkov  <juri@jurta.org>
4769         * image-mode.el (image-toggle-display-image): Remove tautological
4770         `major-mode' from the `derived-mode-p' test.
4772 2012-02-02  Kenichi Handa  <handa@m17n.org>
4774         * composite.el (compose-region): Cancel previous change.
4776 2012-02-02  Kenichi Handa  <handa@m17n.org>
4778         * composite.el (compose-region, compose-string): Signal error for
4779         a null string component (Bug#6988).
4781 2012-02-01  Chong Yidong  <cyd@gnu.org>
4783         * view.el (view-buffer-other-window, view-buffer-other-frame):
4784         Handle special modes like view-buffer (Bug#10650).
4785         (view-buffer): Simplify.
4787         * frame.el (set-frame-font): Tweak meaning of third argument.
4789         * dynamic-setting.el (font-setting-change-default-font):
4790         Use set-frame-font (Bug#9982).
4792 2012-02-01  Glenn Morris  <rgm@gnu.org>
4794         * progmodes/compile.el (compilation-internal-error-properties):
4795         Respect compilation-first-column in the "*compilation*" buffer.
4797         * emacs-lisp/easy-mmode.el (define-minor-mode):
4798         Relax :variable's test for a named function.
4800 2012-01-31  Alan Mackenzie  <acm@muc.de>
4802         * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
4803         off by one error.
4805 2012-01-31  Chong Yidong  <cyd@gnu.org>
4807         * frame.el (set-frame-font): New arg ALL-FRAMES.
4809         * menu-bar.el (menu-set-font): Use set-frame-font.
4811         * faces.el (face-spec-reset-face): Don't apply unspecified
4812         attribute values to the default face.
4814 2012-01-31  Juanma Barranquero  <lekktu@gmail.com>
4816         * progmodes/cwarn.el (cwarn): Remove dead link.
4817         (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
4818         Remove * from defcustom docstrings.
4819         (turn-on-cwarn-mode): Make obsolete.
4820         (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
4821         (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
4823 2012-01-31  Glenn Morris  <rgm@gnu.org>
4825         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
4826         Fix :variable handling of mode a symbol not equal to modefun.
4827         Allow named functions to be used as the cdr of :variable.
4829 2012-01-30  Glenn Morris  <rgm@gnu.org>
4831         * emacs-lisp/authors.el (authors-fixed-entries):
4832         Remove reference to deleted file rnewspost.el.
4834 2012-01-29  Juanma Barranquero  <lekktu@gmail.com>
4836         * window.el (window-with-parameter): Remove unused variable `windows'.
4837         (window--side-check): Remove unused variable `code'.
4838         (window--resize-siblings): Remove unused variable `first'.
4839         (adjust-window-trailing-edge): Remove unused variable `failed'.
4840         (window-deletable-p, window--delete): Remove unused variable `buffer'.
4841         Use `let', not `let*'.
4842         (balance-windows-2): Remove unused variable `found'.
4843         (window--state-put-2): Remove unused variable `splits'.
4844         (window-state-put): Remove unused variable `selected'.
4845         (same-window-p): Use `string-match-p'.
4846         (display-buffer-assq-regexp): Remove unused variable `value'.
4847         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
4848         Mark argument ALIST as ignored.
4849         (pop-to-buffer): Remove unused variable `old-window'.
4851 2012-01-29  Eli Zaretskii  <eliz@gnu.org>
4853         * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
4854         and .lzma compressed files.
4856 2012-01-29  Chong Yidong  <cyd@gnu.org>
4858         * frame.el (window-system-default-frame-alist): Doc fix.
4860         * dynamic-setting.el (font-setting-change-default-font): Don't
4861         change the default face if SET-FONT argument is non-nil (Bug#9982).
4863 2012-01-29  Samuel Bronson  <naesten@gmail.com>  (tiny change)
4865         * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
4867 2012-01-29  Syver Enstad  <syver.enstad@cisco.com>  (tiny change)
4869         * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
4870         breakpoints in files outside current directory (Bug#6098).
4872 2012-01-29  Chong Yidong  <cyd@gnu.org>
4874         * progmodes/python.el: Require ansi-color at top-level.
4876         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
4877         Define and use in Emacs Lisp mode (Bug#9360).
4878         (lisp-mode-abbrev-table): Add doc.
4879         (lisp-mode-variables): Don't set local-abbrev-table.
4880         (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
4882 2012-01-28  Roland Winkler  <winkler@gnu.org>
4884         * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
4886 2012-01-28  Roland Winkler  <winkler@gnu.org>
4888         * textmodes/bibtex.el (bibtex-entry-alist): New function.
4889         (bibtex-set-dialect): Use it.  Either set global values of
4890         dialect-dependent variables or bind these variables buffer-locally
4891         (Bug#10254).
4892         (bibtex-mode): Call bibtex-set-dialect via
4893         hack-local-variables-hook.
4894         (bibtex-dialect): Update docstring.
4895         Add safe-local-variable predicate.
4896         (bibtex-entry-alist, bibtex-field-alist): Initialize via
4897         bibtex-set-dialect.
4898         (bibtex-mode-map): Define menu for each dialect.
4899         (bibtex-entry): Fix docstring.
4901 2012-01-28  Chong Yidong  <cyd@gnu.org>
4903         * eshell/esh-arg.el (eshell-quote-argument): New function.
4905         * eshell/esh-ext.el (eshell-invoke-batch-file):
4906         * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
4907         first arg to eshell-parse-command (Bug#10523).
4909 2012-01-28  Drew Adams  <drew.adams@oracle.com>
4911         * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
4912         `default-directory' is non-nil.
4914 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
4916         * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
4917         line that displays system-configuration-options.  (Bug#9924)
4919 2012-01-28  Drew Adams  <drew.adams@oracle.com>
4921         * descr-text.el (describe-char): Show information about POS, in
4922         addition to information about the character at POS.  Improve and
4923         update the doc string.  Change "code point" to "code point in
4924         charset", to avoid confusion with the character's Unicode code
4925         point shown above that.  (Bug#10129)
4927 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
4929         * descr-text.el (describe-char): Show the raw character, not only
4930         its display form at POS.  Suggested by Kenichi Handa <handa@m17n.org>.
4931         See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
4932         for the reasons.
4934 2012-01-28  Phil Hagelberg  <phil@hagelb.org>
4936         * emacs-lisp/package.el (package-install):
4937         Run package-refresh-contents if there is no archive yet (Bug#9798).
4939 2012-01-28  Chong Yidong  <cyd@gnu.org>
4941         * emacs-lisp/package.el (package-maybe-load-descriptor):
4942         New function, split from package-maybe-load-descriptor.
4943         (package-maybe-load-descriptor): Use it.
4944         (package-download-transaction): Fully load required packages
4945         inside the loop, so that `require' calls work (Bug#10593).
4946         (package-install): No need to call package-initialize now.
4948 2012-01-28  Chong Yidong  <cyd@gnu.org>
4950         * simple.el (deactivate-mark): Doc fix (Bug#8614).
4952         * tooltip.el (tooltip-mode): Doc fix.
4953         (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
4955         * frame.el (set-cursor-color): Doc fix (Bug#352).
4957         * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
4958         (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
4960         * cus-edit.el (custom-buffer-create-internal): Fix search button
4961         action (Bug#10542).
4962         (customize-unsaved, customize-saved): Doc fix (Bug#10541).
4964 2012-01-27  Eduard Wiebe  <usenet@pusto.de>
4966         * dired.el (dired-mark-files-regexp):
4967         Include any subdirectory components.  (Bug#10445)
4969 2012-01-27  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
4971         * pcmpl-unix.el (pcmpl-ssh-known-hosts):
4972         Handle [host]:port syntax.  (Bug#10533)
4974 2012-01-27  Alex Harsanyi  <harsanyi@mac.com>
4976         * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
4978 2012-01-26  Glenn Morris  <rgm@gnu.org>
4980         * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
4981         * term.el (term-raw-escape-map): Use Control-X-prefix.
4982         * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map.  (Bug#10566)
4984 2012-01-25  Martin Rudalics  <rudalics@gmx.at>
4986         * window.el (window-state-get, window--state-get-1): Don't deal
4987         with fixed-sizeness of windows.  Simplify code.
4989 2012-01-25  Jérémy Compostella  <jeremy.compostella@gmail.com>
4991         * window.el (window--state-get-1, window--state-put-2):
4992         Don't save and restore the mark.
4994 2012-01-25  Chong Yidong  <cyd@gnu.org>
4996         * custom.el (custom-variable-p): Doc fix.
4998 2012-01-25  Glenn Morris  <rgm@gnu.org>
5000         * dired.el (dired-goto-file): Handle some of the more common
5001         characters that `ls -b' escapes.  (Bug#10596)
5003         * progmodes/compile.el (compilation-next-error-function):
5004         Respect compilation-first-column in the "*compilation*" buffer.
5005         * progmodes/grep.el (grep-first-column): New variable.  (Bug#10594)
5007         * vc/vc.el (vc-modify-change-comment): Scoping fix.  (Bug#10513)
5009 2012-01-24  Glenn Morris  <rgm@gnu.org>
5011         * pcmpl-gnu.el (pcomplete/tar): Handle " - ".  (Bug#10457)
5013 2012-01-24  Julien Danjou  <julien@danjou.info>
5015         * color.el (color-rgb-to-hsl): Fix value computing.
5016         (color-hue-to-rgb): New function.
5017         (color-hsl-to-rgb): New function.
5018         (color-clamp, color-saturate-hsl, color-saturate-name)
5019         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5020         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
5022 2012-01-24  Glenn Morris  <rgm@gnu.org>
5024         * vc/vc-rcs.el (vc-rcs-create-tag):
5025         * vc/vc-sccs.el (vc-sccs-create-tag):
5026         Fix argument spec to be what vc-create-tag expects.  (Bug#10515)
5028 2012-01-23  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
5030         * eshell/esh-util.el (eshell-read-hosts-file):
5031         Skip comment lines.  (Bug#10549)
5033         * eshell/em-unix.el (pcomplete/ssh): Remove.  (Bug#10548)
5035 2012-01-23  Juanma Barranquero  <lekktu@gmail.com>
5037         * subr.el (display-delayed-warnings): Doc fix.
5038         (collapse-delayed-warnings): New function to collapse identical
5039         adjacent warnings.
5040         (delayed-warnings-hook): Add it.
5042 2012-01-22  Michael Albinus  <michael.albinus@gmx.de>
5044         * net/tramp.el (tramp-action-login): Set connection property "login-as".
5046         * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
5047         (tramp-default-user-alist): Don't add "pscp".
5048         (tramp-do-copy-or-rename-file-out-of-band): Use connection
5049         property "login-as", if set.  (Bug#10530)
5051 2012-01-21  Michael Albinus  <michael.albinus@gmx.de>
5053         * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
5054         "plink1" and "psftp".  (Bug#10530)
5056 2012-01-21  Kenichi Handa  <handa@m17n.org>
5058         * international/mule-cmds.el (prefer-coding-system): Show a
5059         warning message if the default value of file-name-coding-system
5060         was not changed.
5062 2012-01-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
5064         * windmove.el (windmove-reference-loc):
5065         Fix windmove-reference-loc miscalculation.
5067 2012-01-21  Jay Belanger  <jay.p.belanger@gmail.com>
5069         * calc/calc-units.el (math-put-default-units): Don't use "1" as a
5070         default unit.
5072 2012-01-21  Glenn Morris  <rgm@gnu.org>
5074         * international/mule.el (auto-coding-alist): Add .tbz.
5076         * files.el (local-enable-local-variables): Doc fix.
5077         (inhibit-local-variables-regexps): Rename from
5078         inhibit-first-line-modes-regexps.  Keep old name as obsolete alias.
5079         Doc fix.  Add some extensions from auto-coding-alist.
5080         (inhibit-local-variables-suffixes):
5081         Rename from inhibit-first-line-modes-suffixes.  Doc fix.
5082         (inhibit-local-variables-p):
5083         New function, extracted from set-auto-mode-1.
5084         (set-auto-mode): Doc fix.  Respect inhibit-local-variables-regexps.
5085         (set-auto-mode-1): Doc fix.  Use inhibit-local-variables-p.
5086         (hack-local-variables): Doc fix.  Make the mode-only case
5087         respect enable-local-variables and friends.
5088         Respect inhibit-local-variables-regexps for file-locals, but
5089         not for directory-locals.
5090         (set-visited-file-name):
5091         Take account of inhibit-local-variables-regexps.
5092         Whether it applies may change as the file name is changed.
5093         * jka-cmpr-hook.el (jka-compr-install):
5094         * jka-compr.el (jka-compr-uninstall):
5095         Update for inhibit-first-line-modes-suffixes name change.
5097 2012-01-20  Martin Rudalics  <rudalics@gmx.at>
5099         * help-macro.el (make-help-screen): Temporarily restore original
5100         binding for minor-mode-map-alist (Bug#10454).
5102 2012-01-19  Julien Danjou  <julien@danjou.info>
5104         * color.el (color-name-to-rgb): Use the white color to find the max
5105         color component value and return correctly computed values.
5106         (color-name-to-rgb): Add missing float conversion for max value.
5108 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
5110         * window.el (window--state-get-1, window-state-get): Do not use
5111         special state value for window-persistent-parameters.
5112         Rename argument IGNORE to WRITABLE.  Rewrite doc-string.
5113         (window--state-put-2): Reset all window parameters to nil before
5114         assigning values of persistent parameters.
5116 2012-01-18  Alan Mackenzie  <acm@muc.de>
5118         Eliminate sluggishness and hangs in fontification of "semicolon
5119         deserts".
5121         * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
5122         Change value 10000 -> 3000.
5123         (c-state-safe-place): Reformulate so it doesn't stack up an
5124         infinite number of wrong entries in c-state-nonlit-pos-cache.
5125         (c-determine-limit-get-base, c-determine-limit): New functions to
5126         determine backward search limits disregarding literals.
5127         (c-find-decl-spots): Amend commenting.
5128         (c-cheap-inside-bracelist-p): New function which detects "={".
5130         * progmodes/cc-fonts.el
5131         (c-make-font-lock-BO-decl-search-function): Give a limit to a
5132         backward search.
5133         (c-font-lock-declarations): Fix an occurrence of point being
5134         undefined.  Check additionally for point being in a bracelist or
5135         near a macro invocation without a semicolon so as to avoid a
5136         fruitless time consuming search for a declarator.  Give a more
5137         precise search limit for declarators using the new
5138         c-determine-limit.
5140 2012-01-18  Glenn Morris  <rgm@gnu.org>
5142         * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
5143         (set-auto-mode): Doc fixes.
5145 2012-01-17  Glenn Morris  <rgm@gnu.org>
5147         * isearch.el (search-nonincremental-instead): Fix doc typo.
5149         * dired.el (dired-insert-directory): Handle newlines in directory name.
5150         (dired-build-subdir-alist): Unescape newlines in directory name.
5152 2012-01-17  Michael Albinus  <michael.albinus@gmx.de>
5154         * net/tramp.el (tramp-local-end-of-line): New defcustom.
5155         (tramp-action-login, tramp-action-yesno, tramp-action-yn)
5156         (tramp-action-terminal): Use it.  (Bug#10530)
5158 2012-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
5160         * minibuffer.el (completion--replace): Strip properties (bug#10062).
5162 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
5164         * window.el (window-state-ignored-parameters): Remove variable.
5165         (window--state-get-1): Rename argument MARKERS to IGNORE.
5166         Handle persistent window parameters.  Make copy of clone-of
5167         parameter only if requested.  (Bug#10348)
5168         (window--state-put-2): Install a window parameter only if it has
5169         a non-nil value or an existing parameter shall be overwritten.
5171 2012-01-15  Michael Albinus  <michael.albinus@gmx.de>
5173         * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
5175 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
5177         * info.el (Info-toc-build): If the Info file has no "Up" pointer,
5178         don't pass the (nil) value of `upnode' to string-match.
5180 2012-01-14  Chong Yidong  <cyd@gnu.org>
5182         * startup.el (command-line): Fix X resource class for cursorColor.
5183         Fix values recognized by the cursorBlink resource.
5185 2012-01-14  Paul Eggert  <eggert@cs.ucla.edu>
5187         * epg.el (epg--make-temp-file): Avoid permission race condition
5188         when running on old Emacs versions (bug#10403).
5190 2012-01-14  Glenn Morris  <rgm@gnu.org>
5192         * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
5194 2012-01-13  Alan Mackenzie  <acm@muc.de>
5196         Fix filling for when filladapt mode is enabled.
5198         * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
5199         c-mask-paragraph, pass in `fill-paragraph' rather than
5200         `fill-region-as-paragraph'.  (This is a reversion of a previous
5201         change.)
5202         * progmodes/cc-mode.el (c-basic-common-init):
5203         Make fill-paragraph-handle-comment buffer local and set it to nil.
5205 2012-01-13  Glenn Morris  <rgm@gnu.org>
5207         * dired.el (dired-switches-escape-p): New function.
5208         (dired-insert-directory): Use dired-switches-escape-p.
5209         (dired-get-filename): Undo "\ " quoting if needed.  (Bug#10469)
5211         * find-dired.el (find-ls-option): Doc fix.  (Bug#10262)
5213 2012-01-12  Glenn Morris  <rgm@gnu.org>
5215         * mail/sendmail.el (mail-mode): Update paragraph-separate for
5216         changes in adaptive-fill-regexp.  (Bug#10276)
5218 2012-01-11  Alan Mackenzie  <acm@muc.de>
5220         Fix Emacs bug #10463 - put `widen's around the critical spots.
5222         * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
5223         widen around each invocation of c-state-pp-to-literal.  Remove an
5224         unused let variable.
5226 2012-01-11  Glenn Morris  <rgm@gnu.org>
5228         * dired-aux.el (dired-do-shell-command): Fix */? logic.  (Bug#6561)
5229         Doc fix.
5231 2012-01-10  Chong Yidong  <cyd@gnu.org>
5233         * net/network-stream.el (network-stream-open-starttls):
5234         Avoid emitting a confusing error message when the server gives a bad
5235         response to the capability command.
5237 2012-01-10  Glenn Morris  <rgm@gnu.org>
5239         * mail/unrmail.el (unrmail): Tweak previous change.
5241 2012-01-09  Chong Yidong  <cyd@gnu.org>
5243         * custom.el (custom-safe-themes): Use SHA-256 for hashing.
5245 2012-01-08  Alan Mackenzie  <acm@muc.de>
5247         Optimise font locking in long enum definitions.
5249         * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
5250         arm to a cond form to handle enums.
5251         * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
5252         * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
5254 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
5256         * files.el (move-file-to-trash): Preserve default file modes on error.
5257         (Bug#10401)
5259 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5261         * faces.el (set-face-attribute): Clarify the meaning of the nil
5262         frame (bug#10294).
5264         * subr.el (with-selected-frame): Mention that the selected frame
5265         is restored (bug#9980).
5267         * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
5268         (bug#9759).
5270         * mail/smtpmail.el (password-cache-add): Remove unused declaration.
5271         (password-read): Don't autoload unused function.
5273 2012-01-07  Juanma Barranquero  <lekktu@gmail.com>
5275         * progmodes/which-func.el (which-func-mode): Turn into a
5276         non-interactive function and mark as obsolete (bug#10428).
5278 2012-01-06  Chong Yidong  <cyd@gnu.org>
5280         * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
5281         (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
5282         functions, along with 1 and -1.
5284 2012-01-06  Eli Zaretskii  <eliz@gnu.org>
5286         * time.el (display-time-load-average)
5287         (display-time-default-load-average): Doc fixes.  See the thread
5288         starting at
5289         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
5290         for the details.
5292 2012-01-06  Glenn Morris  <rgm@gnu.org>
5294         * mail/unrmail.el (unrmail): Give an explicit error if the input file
5295         has no messages.  (Bug#10377)
5297         * info.el (Info-mode-map): Bind e to end-of-buffer, rather
5298         than Info-edit.  (Bug#10385)
5300         * time.el (display-time-load-average, display-time-next-load-average):
5301         Doc fixes.
5303         * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
5304         local setting of buffer-read-only to the input buffer.  (Bug#10419)
5306         * calendar/calendar.el (calendar-mode):
5307         Locally set scroll-margin to 0.  (Bug#10379)
5309 2012-01-06  Ulrich Mueller  <ulm@gentoo.org>
5311         * play/doctor.el (doctor-death): Escape "," characters.  (Bug#10370)
5313 2012-01-05  Glenn Morris  <rgm@gnu.org>
5315         * eshell/em-unix.el (diff-no-select): Autoload it.
5316         (eshell/diff): Use diff-no-select.  (Bug#10420)
5318 2012-01-05  Chong Yidong  <cyd@gnu.org>
5320         * shell.el (shell-dynamic-complete-functions): Revert last change.
5321         (shell-command-completion-function): New function.
5322         (shell-completion-vars): Use it to implement
5323         shell-completion-execonly (Bug#10417).
5325         * custom.el (enable-theme): Don't set custom-safe-themes.
5327         * cus-theme.el (custom-theme-merge-theme):
5328         Ignore custom-enabled-themes and custom-safe-themes.
5330 2012-01-05  Michael R. Mauger  <mmaug@yahoo.com>
5332         * progmodes/sql.el (sql-login-hook): Add hook to respond to the
5333         first prompt in `sql-interacive-mode'.
5334         (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
5335         keywords.
5336         (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
5337         (sql-product-interactive): Bug fix: Set `sql-buffer' in
5338         context of original buffer.  Invoke `sql-login-hook'.
5340 2012-01-04  Eli Zaretskii  <eliz@gnu.org>
5342         * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
5343         letters in cite-prefix.
5345 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5347         * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
5349 2012-01-03  Chong Yidong  <cyd@gnu.org>
5351         * shell.el (shell-dynamic-complete-functions):
5352         Put pcomplete-completions-at-point, so as to try
5353         comint-filename-completion first (Bug#10417).
5355 2012-01-02  Richard Stallman  <rms@gnu.org>
5357         * battery.el (battery-status-function):
5358         Detect when to use battery-yeeloong-sysfs.
5359         (battery-echo-area-format): Add string for Yeeloong.
5360         (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
5361         (battery-yeeloong-sysfs): New function.
5363 2012-01-02  Chong Yidong  <cyd@gnu.org>
5365         * dirtrack.el (dirtrack-list): Eliminate unused third element.
5366         (dirtrack): Merge code for handling relative filenames in prompt
5367         from shell-dir-cookie-watcher.
5368         (dirtrack-debug-message): New arg to avoid excess format calls.
5370         * shell.el (shell-dir-cookie-re): Variable deleted.
5371         (shell-dir-cookie-watcher): Function deleted.
5372         (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
5373         with dirtrack-mode.
5375 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
5377         * term/w32-win.el (dynamic-library-alist) <gnutls>:
5378         Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
5379         libgnutls-26.dll.
5381 2011-12-31  Andreas Schwab  <schwab@linux-m68k.org>
5383         * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
5385 2011-12-31  Eli Zaretskii  <eliz@gnu.org>
5387         * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
5388         headers of non-MIME messages, when rmail-enable-mime is non-nil.
5390 2011-12-29  Michael Albinus  <michael.albinus@gmx.de>
5392         * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
5393         also for alternative shells.
5394         (tramp-open-connection-setup-interactive-shell): Check, whether
5395         the shell is a busybox.
5396         (tramp-send-command): Don't suppress multiple prompts for
5397         busyboxes, it hurts.
5399 2011-12-28  Chong Yidong  <cyd@gnu.org>
5401         * progmodes/gdb-mi.el (gdb-get-source-file-list)
5402         (gdb-get-source-file): Move mode line update to
5403         gdb-get-source-file (Bug#10087).
5405 2011-12-25  Chong Yidong  <cyd@gnu.org>
5407         * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
5408         gud-gdb-marker-filter without taking it as an argument.
5409         (gud-gdb-run-command-fetch-lines): Caller changed.
5410         (gud-gdb-completion-function): New variable.
5411         (gud-gdb-completion-at-point): Use it.
5412         (gud-gdb-completions-1): Split from gud-gdb-completions.
5414         * progmodes/gdb-mi.el (gdb-input): Accept command and handler
5415         function as separate arguments.
5416         (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
5417         (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
5418         (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
5419         (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
5420         (gdb-stopped, def-gdb-auto-update-trigger)
5421         (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
5422         (gdb-get-changed-registers, gdb-get-main-selected-frame):
5423         Callers changed.
5424         (gud-gdbmi-completions): New function.
5425         (gdb): Use it for generating the completion table.
5427 2011-12-24  Alan Mackenzie  <acm@muc.de>
5429         Introduce a mechanism to widen the region used in context font
5430         locking.  Use this to protect declarations from losing their contexts.
5432         * progmodes/cc-langs.el (c-before-font-lock-functions):
5433         Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
5434         (c-before-context-fontification-functions): New defvar, a list of
5435         functions to be run just before context (etc.) font locking.
5437         * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
5438         New, functionality extracted from
5439         c-neutralize-syntax-in-and-mark-CPP.
5440         (c-in-after-change-fontification): New variable.
5441         (c-after-change): Set c-in-after-change-fontification.
5442         (c-set-fl-decl-start): Rejig its interface, so it can be called
5443         from both after-change and context fontifying.
5444         (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
5445         New functions.
5446         (c-standard-font-lock-fontify-region-function): New variable.
5447         (c-font-lock-fontify-region): New function.
5449 2011-12-24  Juri Linkov  <juri@jurta.org>
5451         * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
5452         (Bug#10348)
5454 2011-12-23  Michael Albinus  <michael.albinus@gmx.de>
5456         * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
5457         existence of source file.  (Bug#10325)
5459 2011-12-23  Alan Mackenzie  <acm@muc.de>
5461         Fix unstable fontification inside templates.
5463         * progmodes/cc-langs.el (c-before-font-lock-functions):
5464         Newly created from the singular version.  The (c c++ objc) entry now
5465         additionally has c-set-fl-decl-start.  The other languages (apart
5466         from AWK) have that as a single entry.
5468         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
5469         The functionality for "local" declarations has been extracted to
5470         c-set-fl-decl-start.
5472         * progmodes/cc-mode.el (c-common-init, c-after-change):
5473         Changes due to pluralisation of c-before-font-lock-functions.
5474         (c-set-fl-decl-start): New function, extracted from
5475         c-font-lock-enclosing-decls and enhanced.
5477 2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
5479         * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
5481 2011-12-22  Juri Linkov  <juri@jurta.org>
5483         * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)
5485 2011-12-22  Chong Yidong  <cyd@gnu.org>
5487         * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
5489 2011-12-21  Drew Adams  <drew.adams@oracle.com>
5491         * files.el (file-remote-p): Fix docstring.  (Bug#10319)
5493 2011-12-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
5495         * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
5497 2011-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
5499         * progmodes/cfengine.el: Add Version.  Improve CFEngine 3.x syntax
5500         highlighting and support.  Fix up comments for capitalization.
5501         (cfengine-mode-debug): New var.
5502         (cfengine3-mode): Change the modeline indicator to "CFE3".
5503         (cfengine3-font-lock-keywords): Improve defun highlighting.
5504         (cfengine2-actions): Rename from `cfengine-actions'.
5505         (cfengine2-font-lock-keywords): Rename from
5506         `cfengine-font-lock-keywords'.
5507         (cfengine2-imenu-expression): Rename from
5508         `cfengine-imenu-expression'.
5509         (cfengine2-outline-level): Rename from `cfengine-outline-level'.
5510         (cfengine2-beginning-of-defun): Rename from
5511         `cfengine-beginning-of-defun'.
5512         (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
5513         (cfengine2-indent-line): Rename from `cfengine-indent-line'.
5514         (cfengine2-mode): Rename from `cfengine-mode'.  Change the
5515         modeline indicator to "CFE2".
5516         (cfengine-mode): Defalias to `cfengine-auto-mode'.
5517         (cfengine-mode-abbrevs): Mark obsolete.
5519 2011-12-21  Chong Yidong  <cyd@gnu.org>
5521         * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
5522         filename argument.
5524 2011-12-20  Martin Rudalics  <rudalics@gmx.at>
5526         * window.el (window-normalize-buffer-to-display): Remove.
5527         (display-buffer): Handle buffer-or-name argument as in Emacs 23.
5529 2011-12-19  Chong Yidong  <cyd@gnu.org>
5531         * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
5532         Don't signal an error in a predicate function; return non-nil.
5533         (vc-dir-mark-file): Move the error here.
5534         (vc-dir-mark-unmark): If acting on the region, keep going if one
5535         of the entries cannot be marked/unmarked.
5536         (vc-dir-mark-all-files): If current entry is a directory, mark
5537         only child files, as documented.
5539 2011-12-19  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5541         * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
5542         branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
5543         addition.
5545 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
5547         * term/ns-win.el (ns-get-selection-internal)
5548         (ns-store-selection-internal): Declare.
5549         (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
5550         Declare as obsolete.
5551         (ns-get-pasteboard, ns-paste-secondary):
5552         Use ns-get-selection-internal.
5553         (ns-set-pasteboard,  ns-copy-including-secondary):
5554         Use ns-store-selection-internal.
5556 2011-12-17  Chong Yidong  <cyd@gnu.org>
5558         * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
5559         (vc-deduce-fileset): Doc fix.
5561 2011-12-16  Andreas Schwab  <schwab@linux-m68k.org>
5563         * calc/calc-misc.el (calc-help): Avoid wrapping help message.
5565 2011-12-13  Sam Steingold  <sds@gnu.org>
5567         * man.el (Man-getpage-in-background): When running under a
5568         window-system, ignore $MANWIDTH and $COLUMNS.
5570 2011-12-15  Kenichi Handa  <handa@m17n.org>
5572         * language/ethio-util.el: Change coding tag to utf-8-emacs.
5573         (setup-ethiopic-environment-internal): Comment out key-binding for
5574         ethio-toggle-punctuation.
5576 2011-12-13  Alan Mackenzie  <acm@muc.de>
5578         Add the switch statement to AWK Mode.
5580         * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
5581         "default" to the keywords regexp.
5583         * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
5584         expression as the rest.
5585         (c-nonlabel-token-key): Allow string literals for AWK.
5586         Refactor for the other modes.
5588         Large brace-block initialisation makes CC Mode slow: Fix.
5589         Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
5590         routines.  Limit backward searching in c-font-lock-enclosing.decl.
5592         * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
5593         pp-state and literal type in addition to the limits.
5594         (c-state-safe-place): New defun, extracted from c-state-literal-at.
5595         (c-state-literal-at): Use the above new defun.
5596         (c-slow-in-literal, c-fast-in-literal): Remove.
5597         (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
5599         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
5600         being in a literal.  Add a limit for backward searching.
5602         * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
5603         c-slow-in-literal.
5605 2011-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5607         * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
5609 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
5611         * window.el (delete-other-windows): Use correct frame in call to
5612         window-with-parameter.
5614 2011-12-12  Daniel Pfeiffer  <occitan@t-online.de>
5616         * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
5617         (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
5618         (makefile-gmake-statements, makefile-makepp-statements):
5619         Use it and add new makepp keywords.
5620         (makefile-makepp-font-lock-keywords): Add new patterns.
5621         (makefile-match-function-end): Match new [...] and [[...]].
5623 2011-12-11  Juanma Barranquero  <lekktu@gmail.com>
5625         * ses.el (ses-call-printer-return, ses-cell-property-get)
5626         (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
5627         (ses-create-cell-variable, ses-reset-header-string)
5628         (ses-cell-set-formula, ses-repair-cell-reference-all)
5629         (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
5630         (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
5631         (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
5632         (ses-aset-with-undo, ses-load, ses-truncate-cell)
5633         (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
5634         (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
5635         (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
5636         (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
5637         (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
5638         (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
5639         (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
5640         (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
5642 2011-12-11  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5644         * ses.el: The overall change is to add cell renaming, that is
5645         setting fancy names for cell symbols other than name matching
5646         "\\`[A-Z]+[0-9]+\\'" regexp .
5647         (ses-create-cell-variable): New defun.
5648         (ses-relocate-formula): Relocate formulas only for cells the
5649         symbols of which are not renamed, i.e. symbols whose names do not
5650         match regexp "\\`[A-Z]+[0-9]+\\'".
5651         (ses-relocate-all): Relocate values only for cells the symbols of
5652         which are not renamed.
5653         (ses-load): Create cells variables as the (ses-cell ...) are read,
5654         in order to check row col consistency with cell symbol name only
5655         for cells that are not renamed.
5656         (ses-replace-name-in-formula): New defun.
5657         (ses-rename-cell): New defun.
5659 2011-12-11  Chong Yidong  <cyd@gnu.org>
5661         * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
5662         for completion via gud-gdb-fetch-lines-filter (Bug#10274).
5664 2011-12-11  Eric Hanchrow  <eric.hanchrow@gmail.com>
5666         * window.el (other-window): Fix docstring.
5668 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
5670         * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
5671         `from' or `to' address before taking its substring.
5672         Fixes incorrect display in Rmail summary buffer whereby an RFC2047
5673         encoded name is chopped in the middle of the encoded string, and
5674         thus displayed encoded.
5676 2011-12-10  Juanma Barranquero  <lekktu@gmail.com>
5678         * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
5680 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
5682         * textmodes/texnfo-upd.el: Update commentary.  Add a warning not
5683         to use texinfo-update-node and commands that call it if the
5684         Texinfo file uses @node lines without next/prev/up pointers.
5685         Correct outdated description about texinfo-master-menu.
5686         (texinfo-all-menus-update, texinfo-master-menu)
5687         (texinfo-update-node, texinfo-every-node-update)
5688         (texinfo-multiple-files-update): Doc fix.  Warn against updating
5689         all the @node lines.
5690         (texinfo-master-menu): Only call texinfo-update-node if the prefix
5691         argument is numeric.  Explain better in the doc string what the
5692         function really does.
5693         (texinfo-insert-master-menu-list): Improve the error message
5694         displayed if there's no menu in the Top node.
5695         (Bug#2975)  See also this thread:
5696         http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
5698 2011-12-09  Manuel Gómez  <mgrojo@gmail.com>  (tiny change)
5700         * speedbar.el (speedbar-supported-extension-expressions):
5701         Add .adb and .ads, commonly used for Ada source code (bug#10256).
5703 2011-12-09  Juanma Barranquero  <lekktu@gmail.com>
5705         * printing.el (pr-mode-alist):
5706         * simple.el (filter-buffer-substring-functions)
5707         (completion-list-insert-choice-function):
5708         * window.el (window-with-parameter, window-atom-root)
5709         (window-sides-slots, window-size-fixed, window-min-delta)
5710         (window-max-delta, window--resize-mini-window)
5711         (window--resize-child-windows-normal, window-tree)
5712         (delete-other-windows, quit-window, split-window)
5713         (display-buffer-record-window, special-display-buffer-names)
5714         (special-display-regexps, special-display-popup-frame)
5715         (same-window-p, split-window-sensibly)
5716         (display-buffer-overriding-action, display-buffer-alist)
5717         (display-buffer-base-action, display-buffer, switch-to-buffer)
5718         (switch-to-buffer-other-window, switch-to-buffer-other-frame)
5719         (fit-window-to-buffer, recenter-positions)
5720         (mouse-autoselect-window-state, mouse-autoselect-window-select):
5721         * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
5722         and remove unneeded backslashes in docstrings.
5724 2011-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5726         * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
5728         * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
5729         (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
5730         end in ".mk".
5731         (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
5732         when reading the makefile (bug#10116).
5734 2011-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5736         * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
5737         (bug#10116).
5739 2011-12-06  Glenn Morris  <rgm@gnu.org>
5741         * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
5743 2011-12-06  Chong Yidong  <cyd@gnu.org>
5745         * progmodes/cc-fonts.el (c-annotation-face): Use defface.
5747 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
5749         * textmodes/table.el (table-shorten-cell): Fix typo.
5751 2011-12-05  Christopher Genovese  <genovese.cr@gmail.com>  (tiny change)
5753         * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
5755 2011-12-05  Eli Zaretskii  <eliz@gnu.org>
5757         * descr-text.el (describe-char): Fix display of strong
5758         right-to-left characters and directional embeddings and overrides.
5760         * simple.el (what-cursor-position): Fix display of codepoints of
5761         strong right-to-left characters.
5763 2011-12-05  Chong Yidong  <cyd@gnu.org>
5765         * faces.el (read-color): Doc fix.
5767 2011-12-05  Glenn Morris  <rgm@gnu.org>
5769         * align.el (align--set-marker): Add doc-string.
5770         Don't try to move something that is not a marker.  (Bug#10216)
5772 2011-12-04  Glenn Morris  <rgm@gnu.org>
5774         * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
5775         overly zealous deletion of trailing whitespace.
5777 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
5779         * server.el (server-delete-client): On Windows, do not try to delete
5780         the only terminal.
5781         (server-process-filter): On Windows, treat requests for a tty frame as
5782         if they were for a GUI frame if the running server is in GUI mode.
5784 2011-12-03  Glenn Morris  <rgm@gnu.org>
5786         * textmodes/texinfmt.el (batch-texinfo-format): Doc fix.  (Bug#10207)
5788 2011-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5790         * electric.el: Streamline electric-indent's hook.
5791         (electric-indent-chars): Revert to simple list.
5792         (electric-indent-functions): New var.
5793         (electric-indent-post-self-insert-function): Use it.
5795         * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
5796         there's no inferior buffer (bug#10196).
5797         (prolog-consult-compile): Don't use toggle-read-only.
5799 2011-12-02  Michael Albinus  <michael.albinus@gmx.de>
5801         * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
5802         interrupt.  (Bug#10187)
5804 2011-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5806         * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
5807         (bug#9160).
5809         * dired-aux.el (dired-query): Don't assume help-char is modifier-free
5810         (bug#10191).
5812 2011-12-02  Juri Linkov  <juri@jurta.org>
5814         * info.el (Info-search): Display "end of manual" when Isearch
5815         reaches the end of single-file Info manual.  (Bug#9918)
5817 2011-12-02  Eli Zaretskii  <eliz@gnu.org>
5819         * isearch.el (isearch-message-prefix): Run the input method part
5820         of the prompt through bidi-string-mark-left-to-right.  (Bug#10183)
5822 2011-12-02  Juri Linkov  <juri@jurta.org>
5824         * isearch.el (isearch-occur): Use `word-search-regexp' for
5825         `isearch-word'.
5826         (isearch-search-and-update): Add condition for `isearch-word' and
5827         call `word-search-regexp'.  (Bug#10145)
5829 2011-12-01  Glenn Morris  <rgm@gnu.org>
5831         * eshell/em-hist.el (eshell-hist-initialize):
5832         Handle eshell-history-size nil and HISTSIZE set or unset.
5833         (eshell-history-file-name, eshell-history-size): Fix custom type.
5835 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5837         * man.el (Man-completion-table): Fix the lambda case (bug#10168).
5839 2011-12-01  Michael McNamara  <mac@mail.brushroad.com>
5841         * progmodes/verilog-mode.el (verilog-pretty-expr):
5842         Rework verilog-pretty-expr to handle new assignment operators in system
5843         verilog, such as += *= and the like.
5844         (verilog-assignment-operator-re): Regular expression to find the
5845         assigment operator in a verilog assignment.
5846         (verilog-assignment-operation-re): Regular expression to find an
5847         assignment statement for pretty-expr.
5848         (verilog-in-attribute-p): Query returns true if point is in an
5849         attribute context; used to skip these for expression line up from
5850         pretty-expr.
5851         (verilog-in-parameter-p): Query returns true if point is in an
5852         parameter definition context; used to skip these for expression
5853         line up from pretty-expr.
5854         (verilog-in-parenthesis-p): Query returns true if point is in a
5855         parenthetical expression, specifically ( ) but not [ ] or { };
5856         used by pretty-expr.
5857         (verilog-just-one-space): If there is no space, don't add one.
5858         (verilog-get-lineup-indent-2): Specifically skip just attribute
5859         contexts for expression lineup, rather than skipping all
5860         parenthetical expressions.
5861         (verilog-calculate-indent): Fix comment, and fix indent.
5862         (verilog-do-indent): Indent declarations in lists (suggested by
5863         Joachim Lechner).
5864         (verilog-mode-abbrev-table): Populate abbrev mode with the various
5865         skeleton items.
5866         (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
5867         by Alain Mellan).
5869 2011-12-01  Wilson Snyder  <wsnyder@wsnyder.org>
5871         * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
5872         parameters with embedded comments.  Reported by Ray Stevens.
5873         (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
5874         verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
5875         Reported by Tim Holt.
5876         (verilog-auto): Fix AUTOing a upper module then AUTOing module
5877         instantiated by upper module causing wrong expansion until AUTOed a
5878         second time.  Reported by K C Buckenmaier.
5879         (verilog-diff-auto): Fix showing .* as a difference when
5880         `verilog-auto-star-save' off.  Reported by Dan Dever.
5881         (verilog-auto-reset, verilog-read-always-signals)
5882         (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
5883         temporary signals in reset list if
5884         verilog-auto-reset-blocking-in-non is nil, and match assignment
5885         style to each signal's assignment type, bug381.
5886         Reported by Thomas Esposito.
5887         (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
5888         (verilog-uvm-statement-re): Support UVM indentation and
5889         highlighting, with old OVM keywords only.
5890         (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
5891         Support AUTOTIEOFF creating non-wire data types.
5892         Suggested by Jonathan Greenlaw.
5893         (verilog-auto-insert-lisp, verilog-delete-to-paren)
5894         (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
5895         (verilog-inject-sense, verilog-read-inst-pins)
5896         (verilog-read-sub-decls, verilog-read-sub-decls-line):
5897         Fix mismatching parenthesis inside commented out code when deleting
5898         AUTOINST, bug383.  Reported by Jonathan Greenlaw.
5899         (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
5900         non-numeric vector width.  Reported by Alex Reed.
5901         (verilog-auto-ascii-enum): Add "onehot" option to work around not
5902         detecting signals with parameter widths.  Reported by Alex Reed.
5903         (verilog-auto-delete-trailing-whitespace):
5904         With `verilog-auto-delete-trailing-whitespace' remove trailing
5905         whitespace in auto expansion, bug371.  Reported by Brad Dobbie.
5906         (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
5907         Fix verilog-scan-cache corruption when running user AUTO expansion
5908         hooks that call indentation routines.
5909         (verilog-simplify-range-expression): Fix typo ignoring lower case
5910         identifiers.
5911         (verilog-delete-auto): Fix delete-autos to also remove user created
5912         automatics, as long as they start with AUTO.
5913         (verilog-batch-diff-auto, verilog-diff-auto)
5914         (verilog-diff-function): Add `verilog-diff-auto' and bind to
5915         "C-c?"  to report differences in AUTO expansion, ignoring spaces.
5916         (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
5917         (verilog-in-paren-quick, verilog-re-search-backward-quick)
5918         (verilog-re-search-forward-quick, verilog-syntax-ppss):
5919         Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
5920         is disabled and its cache will get corrupt, causing AUTOS not to
5921         expand.  Instead use only -quick functions.
5922         (verilog-scan-region): Fix scanning over escaped quotes.
5923         (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
5924         (verilog-re-search-backward-quick)
5925         (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
5926         related functions now ignore strings, to fix misparsing of strings
5927         with magic comments embedded in them.
5928         (verilog-read-auto-template):
5929         Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
5930         Reported by Brad Dobbie.
5931         (verilog-read-auto-template):
5932         Fix 'verilog-auto-inst-template-numbers' with comments.
5933         Reported by Brad Dobbie.
5934         (verilog-auto-inst, verilog-auto-inst-param)
5935         (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
5936         merge conflicts with AUTOINST, bug358.  Reported by Brad Dobbie.
5937         (verilog-auto-inst-template-numbers): Add 'lhs' policy for
5938         debugging templates without merge conflicts, bug357.
5939         Reported by Brad Dobbie.
5940         (verilog-read-auto-template):
5941         Fix verilog-auto-inst-template-numbers with multiple templates.
5942         Reported by Brad Dobbie.
5943         (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
5944         abbrevs so user won't be asked to save.
5945         (verilog-read-auto-lisp-present): Fix to start at beginning of
5946         buffer in case called outside of verilog-auto.
5947         (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
5948         to "X-2".  Reported by Matthew Myers.
5949         (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
5950         all inputs from module templates.  Reported by Leith Johnson.
5951         (verilog-module-inside-filename-p): Fix locating programs as with
5952         modules.
5953         (verilog-auto-inst-port): Fix vl-width expressions when using
5954         verilog-auto-inst-param-value, bug331.  Reported by Julian Gorfajn.
5955         (verilog-decls-get-regs, verilog-decls-get-signals,
5956         verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
5957         verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
5958         verilog-read-decls): Combine reg and wire structures into one var
5959         structure to represent SystemVerilog concepts.
5960         (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
5961         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
5962         (verilog-auto-wire-type, verilog-insert-definition):
5963         Add verilog-auto-wire-type and AUTOLOGIC to support using
5964         SystemVerilog "logic" keyword instead of "wire"/"reg".
5965         (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
5966         to declares outputs that also have assignments (presumably in an
5967         ifdef or generate if so there's not a driver conflict).
5968         Reported by Matthew Myers.
5969         (verilog-auto-declare-nettype, verilog-insert-definition):
5970         Add verilog-auto-declare-nettype to fix declarations using
5971         `default_nettype none.  Reported by Julian Gorfajn.
5972         (verilog-read-always-signals-recurse, verilog-read-decls)
5973         (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
5974         malformed end statement, bug325.  Reported by Joshua Wise and
5975         Andrew Drake.
5976         (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
5977         (verilog-inst-comment-re): Fix not deleting Interfaced comment
5978         when expanding .* in interfaces, bug320.
5979         Reported by Pierre-David Pfister.
5980         (verilog-read-module-name): Fix import statements between module
5981         name and open parenthesis, bug317.
5982         Reported by Pierre-David Pfister.
5983         (verilog-simplify-range-expression): Fix simplification of
5984         multiplications inside AUTOWIRE connections, bug303.
5985         (verilog-auto-inst-port): Support parameter expansion in
5986         multidimensional arrays.
5987         (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
5988         after "assert property".  Reported by Julian Gorfajn.
5989         (verilog-simplify-range-expression): Fix "couldn't merge" errors
5990         with multiplication, bug303.
5991         (verilog-read-decls): Fix parsing of unsigned data types, bug302.
5992         Reported by Jan Frode Lonnum.
5994 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
5996         * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
5997         (hfy-shell-file-name, hfy-shell):
5998         * international/fontset.el (x-decompose-font-name): Fix typos.
6000 2011-11-29  Ken Brown  <kbrown@cornell.edu>
6002         * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
6003         (gdb-version): Remove defvar.
6004         (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
6005         (gdb-gud-context-command, gdb-non-stop-handler)
6006         (gdb-current-context-command, gdb-stopped): Use it.
6007         (gdb-init-1): Enable pretty printing here.
6008         (gdb-non-stop-handler): Don't enable pretty-printing here.
6009         Check to see if the target supports non-stop mode; if not, turn off
6010         non-stop mode.  Use the following.
6011         (gdb-check-target-async): New defun.
6012         (gud-watch, gdb-stopped): Fix whitespace.
6013         (gdb-get-source-file): Don't try to display the source file if
6014         `gdb-main-file' is nil.
6016 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6018         * align.el: Try to generate fewer markers (bug#10047).
6019         (align--set-marker): New macro.
6020         (align-region): Use it.
6022 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6024         * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
6026 2011-11-29  Chong Yidong  <cyd@gnu.org>
6028         * indent.el (indent-for-tab-command, indent-according-to-mode):
6029         Doc fix.
6030         (indent-region): Doc fix.  Switch nested ifs to equivalent cond.
6032 2011-11-29  Michael Albinus  <michael.albinus@gmx.de>
6034         * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
6035         aware of remote file names.  (Bug#10124)
6037 2011-11-29  Chong Yidong  <cyd@gnu.org>
6039         * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
6041 2011-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6043         * files.el (find-file): Don't use force-same-window (bug#10144).
6044         * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
6045         use pop-to-buffer if the selected window can't be used.
6046         (pop-to-buffer-same-window): Use display-buffer--same-window-action.
6048 2011-11-28  Eli Zaretskii  <eliz@gnu.org>
6050         * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
6051         special-mode-map.
6053 2011-11-28  Chong Yidong  <cyd@gnu.org>
6055         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
6057 2011-11-27  Nick Roberts  <nickrob@snap.net.nz>
6059         * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
6060           gdb-get-source-file-list on gdb-create-source-file-list.
6062 2011-11-26  Eli Zaretskii  <eliz@gnu.org>
6064         * whitespace.el (whitespace-newline): Use a different foreground
6065         color for 16-color light-background displays.
6067 2011-11-24  Chong Yidong  <cyd@gnu.org>
6069         * window.el (display-buffer--special-action): Doc fix.
6071 2011-11-25  Juanma Barranquero  <lekktu@gmail.com>
6073         * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
6074         (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
6075         (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
6076         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
6077         (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
6078         (avl-tree-stack-first):
6079         * emacs-lisp/cconv.el (cconv--analyse-use):
6080         * net/gnutls.el (gnutls-negotiate): Fix typos.
6082 2011-11-24  Glenn Morris  <rgm@gnu.org>
6084         * lpr.el (lpr-windows-system, lpr-lp-system):
6085         * mail/binhex.el (binhex-begin-line):
6086         * progmodes/grep.el (grep-history, grep-find-history):
6087         * textmodes/flyspell.el:
6088         * vc/pcvs-defs.el (cvs-global-menu):
6089         * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
6090         * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
6091         * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
6093         * net/tls.el: Fix case of "GnuTLS".
6095         * paths.el (rmail-file-name): Format doc-string for make-docfile.
6097         * version.el (emacs-build-system): Give it a doc-string.
6099 2011-11-24  Juri Linkov  <juri@jurta.org>
6101         * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
6103 2011-11-24  Glenn Morris  <rgm@gnu.org>
6105         * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
6106         if called on a non-mime message just toggle the headers.  (Bug#8006)
6108 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
6110         * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
6111         (allout-lead-with-comment-string, allout-structure-deleted-hook)
6112         (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
6113         (allout-rebullet-heading, allout-open-sibtopic)
6114         (allout-toggle-current-subtree-encryption)
6115         (allout-toggle-subtree-encryption, allout-encrypt-string)
6116         (allout-next-topic-pending-encryption, allout-adjust-file-variable)
6117         (allout-distinctive-bullets-string, allout-auto-activation):
6118         * window.el (window-normalize-buffer-to-display):
6119         * progmodes/verilog-mode.el (verilog-batch-indent):
6120         * textmodes/bibtex.el (bibtex-field-braces-opt)
6121         (bibtex-field-strings-opt):
6122         * vc/cvs-status.el (cvs-tree-merge):
6123         Fix typos.
6125 2011-11-23  Michael Albinus  <michael.albinus@gmx.de>
6127         * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
6128         `non-essential' to t, in order to avoid remote connections.
6130 2011-11-23  Eli Zaretskii  <eliz@gnu.org>
6132         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6133         On MS-DOS and MS-Windows, compare with loaddefs.el
6134         case-insensitively.
6136 2011-11-23  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
6138         * mail/unrmail.el (unrmail): Always add blank line.  (Bug#7743)
6140 2011-11-23  Glenn Morris  <rgm@gnu.org>
6142         * paths.el (rmail-file-name): Reformat the doc-string so that it
6143         is picked up.
6145         * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
6146         (rmail-auto-file): Ignore case in the "special" field names,
6147         as mail-fetch-field does for all others.
6149         * mail/rmail.el (rmail-forward):
6150         * mail/rmailkwd.el (rmail-set-label):
6151         * mail/rmailout.el (rmail-output, rmail-output-as-seen)
6152         (rmail-output-body-to-file): Give error if no message.  (Bug#10082)
6154         * mail/rmail.el (rmail-current-message): Doc fix.
6156         * mail/rmail.el (rmail-message-filter): Mark as obsolete.  (Bug#2624)
6158 2011-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6160         * server.el (server-eval-and-print): Allow C-g (bug#6585).
6162 2011-11-22  Glenn Morris  <rgm@gnu.org>
6164         * mail/rmailmm.el (test-rmail-mime-handler)
6165         (test-rmail-mime-bulk-handler)
6166         (test-rmail-mime-multipart-handler): Move tests to test/ directory.
6168 2011-11-21  Juri Linkov  <juri@jurta.org>
6170         * calc/calc.el (calc-read-key-sequence):
6171         Let-bind `input-method-function' to nil.  (Bug#10018)
6173 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6175         * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
6176         Tell the caller that the next line needs recomputation, even
6177         though it doesn't start a sexp (bug#10094).
6179 2011-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6181         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
6183 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6185         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6186         Use force-same-window.
6188 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
6190         * descr-text.el (describe-char-unicode-data):
6191         * json.el (json-string-escape):
6192         * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
6193         (Footnote-unicode, Footnote-style-p):
6194         * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
6196 2011-11-20  Chong Yidong  <cyd@gnu.org>
6198         * window.el (replace-buffer-in-windows): Restore interactive spec.
6200 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6202         * electric.el (electric-indent-mode): Fix last change (too optimistic).
6204         * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
6205         (byte-compile-global-not-obsolete-vars): New var.
6206         (byte-compile-check-variable, byte-compile-make-obsolete-variable):
6207         Use it.
6208         (byte-compile-warn-obsolete): Align text with the one in *Help*.
6210 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
6212         * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
6213         * progmodes/pascal.el (electric-pascal-equal):
6214         * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
6215         * xml.el (xml-substitute-special): Fix typos.
6217 2011-11-20  Glenn Morris  <rgm@gnu.org>
6219         * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
6220         (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
6221         Doc fixes.
6222         (rmail-decode-mime-charset): Mark as obsolete.
6224         * mail/rmailsum.el (rmail-message-regexp-p-1):
6225         * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
6226         Before using mime functions, check they are set.  (Bug#10077)
6228 2011-11-19  Juri Linkov  <juri@jurta.org>
6230         * info.el (Info-finder-find-node): Use `package--builtins' instead
6231         of `package-alist'.  Use node names formed by the pattern "Keyword "
6232         and the keyword name.
6234 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
6236         * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
6238 2011-11-19  Juri Linkov  <juri@jurta.org>
6240         * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
6241         that calls `revert-buffer' on all Info buffers.  (Bug#9915)
6242         (Info-revert-find-node): Remove let-bindings `old-buffer-name',
6243         `old-history', `old-history-forward'.  Add let-binding
6244         `window-selected'.  Remove calls to `kill-buffer',
6245         `switch-to-buffer' and `Info-mode'.  Set `Info-current-file' to nil
6246         before calling `Info-find-node', so `Info-find-node-2' will reread
6247         the Info file.  Restore window positions only when `window-selected'
6248         is non-nil.
6250 2011-11-19  Juri Linkov  <juri@jurta.org>
6252         * isearch.el (isearch-lazy-highlight-new-loop):
6253         Remove condition `(not isearch-error)'.  (Bug#9918)
6255         * misearch.el (multi-isearch-search-fun): Add condition
6256         `(not bound)' to ignore lazy-highlighting search.
6257         Add the search-failed message "end of multi" when the end of
6258         multi-sequence is reached.  Uncapitalize the search-failed
6259         message "Repeat for next buffer".
6261         * info.el (Info-search): Add the search-failed message
6262         "end of the manual" when the end of the manual is reached
6263         in Isearch mode.
6265 2011-11-19  Juri Linkov  <juri@jurta.org>
6267         * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
6268         Use non-destructive `remove' instead of `delete' because
6269         `Info-history-list' stored to `Info-isearch-initial-history-list' in
6270         `Info-isearch-start' might need to be restored in `Info-isearch-end'.
6272 2011-11-19  Juri Linkov  <juri@jurta.org>
6274         * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
6275         to nil instead of binding `search-ring' and `regexp-search-ring'.
6276         (Bug#9185)
6278 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
6280         * simple.el (line-move): Force movement by logical lines for any
6281         hscrolled window, not only when auto-hscroll-mode is on.
6282         (line-move-visual): Update doc string to that effect.  (Bug#10076)
6284 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
6286         * language/european.el (macintosh): Define as alias for mac-roman.
6288 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
6290         * mail/rmailmm.el (rmail-mime-display-header)
6291         (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
6292         (rmail-mime-entity-segment, rmail-mime-toggle-raw)
6293         (rmail-mime-toggle-hidden, rmail-mime-insert-text)
6294         (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
6295         (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
6296         of a raw aref.
6297         (rmail-mime-entity-segment): To get past the tagline, move forward
6298         2 more lines, to account for the 2 empty lines that precede and
6299         follow the line with the buttons.
6300         (rmail-mime-update-tagline): Move one more line, to get past the
6301         empty line that follows the buttons in the tagline.  (Bug#9520)
6303 2011-11-19  Martin Rudalics  <rudalics@gmx.at>
6305         * window.el (window-max-delta-1, window-min-delta-1)
6306         (window-min-size-1, window-state-get-1, window-state-put-1)
6307         (window-state-put-2): Use "window--" prefix.
6309 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6311         * emacs-lisp/smie.el: Improve warnings and conflict detection.
6312         (smie-warning-count): New var.
6313         (smie-set-prec2tab): Use it.
6314         (smie-bnf->prec2): Improve warnings.  Add docstring.
6315         (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
6316         (smie-bnf--set-class): New function.
6317         (smie-bnf--classify): Rename from smie-bnf-classify.  Rewrite to fix
6318         corner case.
6320         * progmodes/compile.el: Obey compilation-first-column in dest buffer.
6321         (compilation-error-properties, compilation-move-to-column):
6322         Handle compilation-first-column while in the target buffer.
6324         * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
6325         Don't hardcode point-min==1.
6327         * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
6328         (eshell-rewrite-for-command): Remove workaround.
6329         (eshell-do-pipelines, eshell-do-pipelines-synchronously)
6330         (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
6331         * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
6333         * files-x.el (modify-file-local-variable): Obey commenting conventions.
6335 2011-11-17  Glenn Morris  <rgm@gnu.org>
6337         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6338         Ignore buffer-local generated-autoload-file if it is the same
6339         as the global value.  (Bug#10049)
6341 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
6343         * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
6344         (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
6345         (reftex-toc-previous-heading, reftex-toc-max-level)
6346         (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
6347         (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
6348         (reftex-toc-do-promote, reftex-toc-promote-prepare)
6349         (reftex-toc-promote-action, reftex-toc-extract-section-number)
6350         (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
6351         (reftex-toc-rename-label, reftex-toc-visit-location)
6352         (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
6353         (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
6354         (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
6355         leaving "*toc*" only for references to the buffer.
6357 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
6359         * window.el (window-resize, delete-window, split-window):
6360         Replace window-splits by window-combination-resize.
6361         * cus-start.el (window-splits): Replace by window-combination-resize.
6363 2011-11-17  Glenn Morris  <rgm@gnu.org>
6365         * progmodes/sh-script.el (sh-font-lock-keywords-var):
6366         Make bash entry derive from sh entry, not shell entry.
6368 2011-11-16  Michael Albinus  <michael.albinus@gmx.de>
6370         * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
6371         local file name.
6373 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
6375         * menu-bar.el (menu-bar-file-menu):
6376         * printing.el (pr-ps-utility):
6377         * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
6378         (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
6379         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
6380         (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
6381         (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
6382         (icalendar--convert-cyclic-to-ical)
6383         (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
6384         (icalendar--convert-ical-to-diary)
6385         (icalendar--convert-recurring-to-diary)
6386         (icalendar--convert-non-recurring-all-day-to-diary)
6387         (icalendar-import-format-sample):
6388         * progmodes/idlw-shell.el (idlwave-shell-mode):
6389         * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
6390         (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
6391         (vhdl-ps-print-init): Fix typos.
6393 2011-11-16  Ken Manheimer  <ken.manheimer@gmail.com>
6395         * allout.el, allout-widgets.el (file metadata): Attribute copyright to
6396         FSF and collapse date sequence, obscure author/maintainer email address
6397         better, remove extra version line, track relocation of author's webpage.
6399         * progmodes/python.el (python-pdbtrack-input-prompt)
6400         (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
6401         regular python pdb prompts.  Adjustments shamelessly taken exactly as
6402         suggested in EmacsWiki page (tiny change):
6403         http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
6405 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
6407         * expand.el (expand-pos, expand-index, expand-point):
6408         Remove redundant info from docstring.
6409         (expand-add-abbrevs): Doc fix.
6410         (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
6411         (expand-sample-perl-mode-expand-list): Fix typos.
6413         * net/dbus.el (dbus-event-member-name):
6414         * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
6415         * term/pc-win.el (msdos-create-frame-with-faces):
6416         * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
6418 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
6420         * window.el (split-window, window-state-get-1)
6421         (window-state-put-1, window-state-put-2): Rename occurrences of
6422         window-nest to window-combination-limit.
6423         * cus-start.el (window-nest): Rename to window-combination-limit.
6425 2011-11-16  Chong Yidong  <cyd@gnu.org>
6427         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
6428         regexp (Bug#10033).
6430 2011-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6432         * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
6433         `completing-read' will remove *Completions* and will preserve
6434         current-buffer for us.
6435         (tmm-add-prompt): Users of *Completions* will always (re)set its
6436         major mode.
6437         (tmm-old-comp-map): Remove.
6439 2011-11-16  Glenn Morris  <rgm@gnu.org>
6441         * mail/rmailedit.el: Require rmailmm when compiling.
6442         (rmail-old-mime-state): New declaration.
6443         (rmail-edit-current-message): If editing a mime message,
6444         edit the "raw" message from the mbox buffer.
6445         (rmail-cease-edit): Handle mime messages.  (Bug#9840)
6447 2011-11-15  Glenn Morris  <rgm@gnu.org>
6449         * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
6450         which wasn't being used.  Add optional arg to force given state.
6451         (rmail-mime): Add optional arg to force given state.
6453 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
6455         * allout.el (allout-encryption-plaintext-sanitization-regexps):
6456         * frame.el (display-mm-dimensions-alist):
6457         * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
6458         (outline-move-subtree-down):
6459         * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
6460         (newsticker--treeview-do-get-node):
6461         * net/quickurl.el (quickurl-list-buffer-name):
6462         * progmodes/dcl-mode.el (dcl-mode):
6463         * progmodes/gdb-mi.el (gdb-mapcar*):
6464         * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
6466 2011-11-15  Glenn Morris  <rgm@gnu.org>
6468         * mail/rmail.el (rmail-file-coding-system): It's only ever used
6469         in a boolean sense, so just make it a boolean, and fix the doc.
6470         (rmail-show-mime-function, rmail-mime-feature)
6471         (rmail-require-mime-maybe): Doc fixes.
6472         (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
6474         * mail/rmailmm.el (rmail-show-mime): Doc fix.
6476 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
6478         * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
6479         (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
6480         (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
6481         (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
6483 2011-11-15  Glenn Morris  <rgm@gnu.org>
6485         * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
6486         (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
6487         (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
6488         (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
6489         (rmail-mime, rmail-show-mime): Doc fixes.
6491         * term/ns-win.el (mode-line-frame-identification):
6492         Leave it alone.  (Bug#10051)
6494         * simple.el (mark-whole-buffer): Doc fix.  (Bug#10023)
6496         * mail/rmailout.el (rmail-output-to-rmail-buffer):
6497         Handle empty buffers.  (Bug#9978)
6499 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
6501         * international/mule.el (define-charset):
6502         * mail/rmailmm.el (rmail-mime-find-header-encoding):
6503         * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
6504         * progmodes/verilog-mode.el (verilog-backward-token):
6505         * textmodes/ispell.el (lookup-words):
6506         * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
6508 2011-11-14  Glenn Morris  <rgm@gnu.org>
6510         * progmodes/executable.el
6511         (executable-make-buffer-file-executable-if-script-p):
6512         Handle file-modes returning nil.
6514         * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
6515         message - not necessary, and causes problems.  (Bug#9831)
6517         * mail/rmailsum.el (rmail-new-summary): Preserve message number.
6519         * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
6521         * mail/rmailsum.el (rmail-summary, rmail-new-summary)
6522         (rmail-new-summary-1): Allow empty summaries.  (Bug#9964)
6523         (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
6525 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
6527         * window.el (window-resize, delete-window): Use window-splits
6528         variable instead of function.
6529         (window-state-get-1, window-state-put-2, window-state-put):
6530         Don't deal with windows' splits status.
6532 2011-11-12  Glenn Morris  <rgm@gnu.org>
6534         * apropos.el (apropos-do-all, apropos-library, apropos-value)
6535         (apropos-documentation): Doc fixes.
6537 2011-11-11  Juanma Barranquero  <lekktu@gmail.com>
6539         * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
6540         * textmodes/sgml-mode.el (html-tag-help): Fix typos.
6542 2011-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6544         * electric.el (electric-indent-post-self-insert-function): Make it
6545         possible for a char to only indent in some circumstances.
6546         (electric-indent-mode): Simplify.
6548 2011-11-11  Martin Rudalics  <rudalics@gmx.at>
6550         * window.el (windows-with-parameter): Remove unused function.
6551         (windows-at-side): Rename to window-at-side-list.
6552         (window-check, window-atom-check, window-atom-check-1)
6553         (window-side-check, window-size-ignore, window-size-fixed-1)
6554         (window-in-direction-2): Prefix with "window--".
6555         (window-tree-1): Rename to window--subtree, fix doc-string.
6557 2011-11-11  Glenn Morris  <rgm@gnu.org>
6559         * subr.el (eval-after-load): If FILE is already loaded,
6560         evaluate FORM before it gets wrapped in more stuff.  (Bug#10009)
6562 2011-11-10  Glenn Morris  <rgm@gnu.org>
6564         * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
6565         Call svn via vc-svn-command rather than vc-do-command.
6566         (vc-svn-command): Add --non-interactive.  (Bug#9993)
6567         (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
6569         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6570         Add toggle-read-only.  (Bug#7292)
6571         * files.el (toggle-read-only): Mention that it should only
6572         be used interactively.  (Bug#10006)
6574 2011-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6576         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6577         Adjust regexp for OCaml warnings.
6579         * electric.el (electric-pair-post-self-insert-function): Let user
6580         turn it off buffer-locally (bug#9932).
6582         * progmodes/python.el (python-beginning-of-statement):
6583         Rewrite (bug#2703).
6585         * progmodes/compile.el: Better handle TABs (bug#9749).
6586         (compilation-internal-error-properties)
6587         (compilation-next-error-function): Obey the target buffer's
6588         compilation-error-screen-columns.
6590 2011-11-09  Juanma Barranquero  <lekktu@gmail.com>
6592         * progmodes/meta-mode.el: Remove obsolete comments.
6593         (meta-right-comment-regexp, meta-ignore-comment-regexp):
6594         Fix typos in docstrings.
6596 2011-11-09  Martin Rudalics  <rudalics@gmx.at>
6598         * window.el (window-size-fixed-p): Rewrite doc-string.
6599         (window-resizable-p): Rename to window--resizable-p.  Update callers.
6600         (window--resizable): New function.  Make all callers of
6601         window-resizable call window--resizable instead.
6602         (window-resizable): Rewrite in terms of window--resizable.
6604 2011-11-08  Glenn Morris  <rgm@gnu.org>
6606         * progmodes/delphi.el (delphi-mode-syntax-table):
6607         Let define-derived-mode define a proper syntax table.  (Bug#9994)
6609 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6611         * window.el: Stay away from defsubst.
6612         (window-list-no-nils): Remove.
6613         (window-state-get-1, window-state-get): Use backquote instead.
6615 2011-11-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6617         * emacs-lisp/find-func.el (find-function-read):
6618         Fix incorrect use of default argument in `completing-read'.
6620 2011-11-08  Martin Rudalics  <rudalics@gmx.at>
6622         * window.el (display-buffer-function, special-display-function):
6623         Mention display-buffer-record-window but do not mention
6624         help-setup parameter in doc-strings.
6625         (window-min-delta): Fix doc-string typo.
6627 2011-11-08  Chong Yidong  <cyd@gnu.org>
6629         * window.el (window-total-height, window-total-width): Doc fix.
6630         (window-body-size): Move from C.
6631         (window-body-height, window-body-width): Move to C.
6633 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6635         * window.el: Make special-display like display-buffer-alist (bug#9532).
6636         (display-buffer--special-action): New function, morphed
6637         from display-buffer--special.
6638         (display-buffer): Use it to handle special-display-buffers at higher
6639         priority (just after display-buffer-alist).
6640         (display-buffer-fallback-action, display-buffer--other-frame-action)
6641         (pop-to-buffer-same-window): Remove display-buffer--special.
6643 2011-11-07  Glenn Morris  <rgm@gnu.org>
6645         * calendar/cal-menu.el (cal-menu-set-date-title):
6646         Do nothing if not in a calendar.  (Bug#9976)
6648 2011-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6650         * files.el (find-file): Always use selected-window.
6652 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
6654         * window.el (window-combinations): Make WINDOW argument
6655         mandatory.  Rewrite doc-string.
6656         (walk-window-subtree, window-atom-check, window-min-delta)
6657         (window-max-delta, window--resize-this-window)
6658         (window--resize-root-window-vertically, window-tree)
6659         (balance-windows, window-state-put): Rewrite doc-strings as to
6660         not mention the term "subwindow".
6661         (window--resize-subwindows-skip-p): Rename to
6662         window--resize-child-windows-skip-p.
6663         (window--resize-subwindows-normal): Rename to
6664         window--resize-child-windows-normal.
6665         (window--resize-subwindows): Rename to
6666         window--resize-child-windows.
6667         (window-or-subwindow-p): Rename to window--in-subtree-p.
6669 2011-11-07  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
6671         * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
6672         Ensure that mbox format messages end in two newlines (Bug#9974).
6674 2011-11-06  Chong Yidong  <cyd@gnu.org>
6676         * window.el (window-combination-p): Function deleted; its
6677         side-effect is not used in any existing code.
6678         (window-combinations, window-combined-p): Call window-*-child
6679         directly.
6681 2011-11-05  Chong Yidong  <cyd@gnu.org>
6683         * window.el (window-valid-p): Rename from window-any-p.
6684         (window-size-ignore, window-state-get): Callers changed.
6685         (window-normalize-window): Rename from window-normalize-any-window.
6686         New arg LIVE-ONLY, replacing window-normalize-live-window.
6687         (window-normalize-live-window): Delete.
6688         (window-combination-p, window-combined-p, window-combinations)
6689         (walk-window-subtree, window-atom-root, window-min-size)
6690         (window-sizable, window-sizable-p, window-size-fixed-p)
6691         (window-min-delta, window-max-delta, window-resizable)
6692         (window-resizable-p, window-full-height-p, window-full-width-p)
6693         (window-current-scroll-bars, window-point-1, set-window-point-1)
6694         (window-at-side-p, window-in-direction, window-resize)
6695         (adjust-window-trailing-edge, maximize-window, minimize-window)
6696         (window-deletable-p, delete-window, delete-other-windows)
6697         (record-window-buffer, unrecord-window-buffer)
6698         (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
6699         (quit-window, split-window, window-state-put)
6700         (set-window-text-height, fit-window-to-buffer)
6701         (shrink-window-if-larger-than-buffer): Callers changed.
6703 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
6705         * mail/rmail.el (rmail-simplified-subject): Decode subject with
6706         rfc2047-decode-string.
6707         (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
6708         warnings.
6710         * window.el (window-body-height, window-body-width): Mention in
6711         the doc string that the return values are in frame's canonical
6712         units.  (Bug#9949)
6714 2011-11-03  Alan Mackenzie  <acm@muc.de>
6716         * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
6717         change in cc-engine.el.
6719 2011-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6721         * window.el (switch-to-buffer): Use `force-same-window' interactively.
6723 2011-11-02  Martin Rudalics  <rudalics@gmx.at>
6725         * window.el (quit-window): Call unrecord-window-buffer after
6726         showing another buffer in the window.  (Bug#9937)
6727         (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
6729 2011-11-02  Juanma Barranquero  <lekktu@gmail.com>
6731         * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
6732         Accept status with more than 9 shelves.  (Bug#9935)
6733         Reported by Colin D Bennett <colin@gibibit.com>.
6735 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
6737         * help.el (with-help-window): Don't reference
6738         temp-buffer-show-specifiers in doc-string.
6740 2011-10-31  Andreas Schwab  <schwab@linux-m68k.org>
6742         * subr.el (keymap--menu-item-with-binding): Ignore item if not a
6743         menu-item.
6745 2011-10-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6747         * whitespace.el: New version 13.2.2.
6748         (whitespace-newline-mode): Disable properly.  Reported by Sarah
6749         <EmacsWiki>.
6751 2011-10-30  Ulf Jasper  <ulf.jasper@web.de>
6753         * net/newst-treeview.el: Remove "Time-stamp".
6754         (newsticker--group-manage-orphan-feeds): Do not call
6755         newsticker--treeview-tree-update.
6756         (newsticker-treeview-update, newsticker-treeview):
6757         Call newsticker--treeview-tree-update if necessary.
6759 2011-10-30  Martin Rudalics  <rudalics@gmx.at>
6761         * window.el (window-iso-combination-p, window-iso-combined-p)
6762         (window-iso-combinations): Remove "iso-" infix.
6763         Suggested by Chong Yidong.
6764         (window-min-size-1, window-size-fixed-1, window-min-delta-1)
6765         (window-max-delta-1, window-resize, window--resize-siblings)
6766         (window--resize-this-window, adjust-window-trailing-edge)
6767         (split-window, balance-windows-1)
6768         (shrink-window-if-larger-than-buffer):
6769         * calendar/calendar.el (calendar-generate-window):
6770         * help.el (resize-temp-buffer-window): Adjust callers accordingly.
6772 2011-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6774         * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
6775         in place (bug#9907).
6776         (eshell-subcommand-arg-values, eshell-rewrite-named-command)
6777         (eshell-rewrite-if-command, eshell-rewrite-for-command)
6778         (eshell-structure-basic-command, eshell-rewrite-while-command)
6779         (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
6780         (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
6781         (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
6782         (eshell-do-pipelines-synchronously, eshell-eval-command):
6783         Use backquotes and prefer setq to set.
6784         (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
6785         (eshell-macrop): Use functionp.
6786         (eshell-do-eval): Handle multiple expressions in `while' body.
6788 2011-10-30  Chong Yidong  <cyd@gnu.org>
6790         * emulation/viper-cmd.el (viper-exec-change): Use push-mark
6791         instead of set-mark (Bug#9810).
6793 2011-10-30  Chong Yidong  <cyd@gnu.org>
6795         * window.el (split-window-below, split-window-right): Rename from
6796         split-window-above-each-other and split-window-side-by-side
6797         respectively.  All callers changed.
6798         (split-window-sensibly, split-window-sensibly): Use them.
6799         (split-window-keep-point): Doc fix.
6801         * isearch.el: Add isearch-scroll property to split-window-below
6802         and split-window-right.
6804         * follow.el (follow-mode):
6805         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6806         * progmodes/ada-xref.el (ada-gdb-application):
6807         * emulation/vip.el (vip-buffer-in-two-windows):
6808         * image-dired.el (image-dired-dired-with-window-configuration):
6809         * dired-x.el (dired-do-find-marked-files):
6810         * dired.el (dired-pop-to-buffer):
6811         * bs.el (bs--show-with-configuration):
6812         * vc/emerge.el (emerge-setup-windows):
6813         * textmodes/two-column.el (2C-two-columns):
6814         * textmodes/reftex-toc.el (reftex-toc):
6815         * progmodes/gdb-mi.el (gdb-setup-windows):
6816         * progmodes/fortran.el (fortran-window-create):
6817         * net/newst-treeview.el (newsticker--treeview-window-init):
6818         * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
6819         * emulation/tpu-edt.el (tpu-gold-map):
6820         * emulation/crisp.el (crisp-mode-map):
6821         * calendar/calendar.el (calendar-basic-setup): Callers changed.
6823 2011-10-29  Chong Yidong  <cyd@gnu.org>
6825         * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
6827         * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
6829         * textmodes/flyspell.el (flyspell-word): Fix char offset for
6830         forged Ispell output (Bug#7904).
6832         * emacs-lisp/package.el (package-refresh-contents): Add autoload.
6834 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6836         * doc-view.el: Avoid ugly errors about not finding nil.
6837         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
6838         (doc-view-dvipdf-program, doc-view-unoconv-program)
6839         (doc-view-ps2pdf-program, doc-view-pdftotext-program):
6840         Avoid nil or absolute file name as default value.
6841         (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
6843 2011-10-28  Alan Mackenzie  <acm@muc.de>
6845         * progmodes/cc-defs.el (c-version): -> 5.32.2.
6847 2011-10-28  Alan Mackenzie  <acm@muc.de>
6849         Amend the handling of c-beginning/end-of-defun in nested declaration
6850         scopes.
6852         * progmodes/cc-vars.el (c-defun-tactic): Move here from
6853         cc-langs.el.  Change it to a defcustom.
6855         * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
6856         cc-vars.el.
6858         * progmodes/cc-engine.el (c-beginning-of-statement-1):
6859         Prevent "class foo : bar" being spuriously recognized as a label.
6861         * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
6862         Add parameter `inclusive' (to include enclosing braces in the region).
6863         (c-widen-to-enclosing-decl-scope): New function.
6864         (c-while-widening-to-decl-block): New macro.
6865         (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
6866         outward for defun boundaries, and correspondingly change symbol
6867         `respect-enclosure' to `go-outward'.
6868         (c-declaration-limits): Change algorithm to report only the "innermost"
6869         defun's boundaries.
6871 2011-10-28  Deniz Dogan  <deniz@dogan.se>
6873         * net/rcirc.el (rcirc-mode): Use hard newlines.
6875 2011-10-28  Alan Mackenzie  <acm@muc.de>
6877         Amend to indent and fontify macros "which include their own semicolon"
6878         correctly, using the "virtual semicolon" mechanism.
6880         * progmodes/cc-defs.el: Update "virtual semicolon" comments.
6882         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
6883         Recode to scan one line at a time rather than having \n and \r
6884         explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
6885         (c-forward-label): Amend for virtual semicolons.
6886         (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
6888         * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
6889         of the new C macros.
6891         * progmodes/cc-langs.el (c-at-vsemi-p-fn):
6892         (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
6893         (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
6894         (c-opt-cpp-macro-define): Make into a full language variable.
6895         (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
6896         AWK Mode (including \n, \r) removed, no longer needed.
6898         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
6899         Invoke c-make-macro-with-semi-re.
6901         * progmodes/cc-vars.el (c-macro-with-semi-re):
6902         (c-macro-names-with-semicolon): New variables.
6903         (c-make-macro-with-semi-re): New function.
6905 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6907         * vc/log-edit.el: Fill empty field rather than adding new one.
6908         (log-edit-add-field): New function.
6909         (log-edit-insert-changelog): Use it.
6911 2011-10-28  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
6913         * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
6915 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6917         * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
6918         (gdb--check-interpreter): New function.
6919         (gdb): Use it.
6921 2011-10-27  Glenn Morris  <rgm@gnu.org>
6923         * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
6924         (least-positive-float, least-negative-float)
6925         (least-positive-normalized-float, least-negative-normalized-float)
6926         (float-epsilon, float-negative-epsilon):
6927         Remove unnecessary declarations.
6929         * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
6930         * emacs-lisp/cl.el (most-positive-float, most-negative-float)
6931         (least-positive-float, least-negative-float)
6932         (least-positive-normalized-float, least-negative-normalized-float)
6933         (float-epsilon, float-negative-epsilon): Add doc-strings,
6934         based on those in cl.texi.
6936         * files.el (set-visited-file-name): If the major-mode changed,
6937         reload the local variables.  (Bug#9796)
6939 2011-10-27  Chong Yidong  <cyd@gnu.org>
6941         * subr.el (change-major-mode-after-body-hook): New hook.
6942         (run-mode-hooks): Run it.
6944         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6945         Use change-major-mode-before-body-hook.
6947         * simple.el (fundamental-mode):
6948         * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
6949         change introducing fundamental-mode-hook.
6951 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
6953         * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
6955 2011-10-26  Michael Albinus  <michael.albinus@gmx.de>
6957         * ido.el (ido-file-name-all-completions-1): Do not require
6958         tramp.el explicitly.  (Bug#7583)
6960 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6962         * progmodes/octave-mod.el:
6963         * progmodes/octave-inf.el: Update maintainer.
6965 2011-10-26  Chong Yidong  <cyd@gnu.org>
6967         * subr.el (with-wrapper-hook): Rewrite doc.
6969 2011-10-25  Michael Albinus  <michael.albinus@gmx.de>
6971         * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
6972         filenames "/method:foo:".  (Bug#9793)
6974 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6976         * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
6977         (bug#9865).
6979 2011-10-24  Glenn Morris  <rgm@gnu.org>
6981         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.  (Bug#9819)
6983 2011-10-24  Michael Albinus  <michael.albinus@gmx.de>
6985         * notifications.el: Add the requirement of a running D-Bus session
6986         bus to the Commentary.
6988 2011-10-24  Juri Linkov  <juri@jurta.org>
6990         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
6991         `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
6992         (Bug#9364)
6994 2011-10-24  Juri Linkov  <juri@jurta.org>
6996         * info.el (Info-following-node-name-re): Add newline to the list
6997         of allowed characters for leading space.  (Bug#9824)
6999 2011-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7001         * progmodes/octave-inf.el (inferior-octave-mode-map):
7002         Fix C-c C-h binding.
7003         * progmodes/octave-mod.el (octave-help): Remove.
7005 2011-10-23  Michael Albinus  <michael.albinus@gmx.de>
7007         Sync with Tramp 2.2.3.
7009         * net/tramp-cache.el (top): Pacify byte-compiler using
7010         `init-file-user' and `site-run-file'.
7012         * net/trampver.el: Update release number.
7014 2011-10-23  Chong Yidong  <cyd@gnu.org>
7016         * files.el (toggle-read-only): Remove obsolete comment about
7017         version control.
7019         * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
7020         for toggle-read-only.  Note that this hasn't called vc-next-action
7021         since 2008-05-02, though it wasn't documented at the time.
7023         * vc/ediff-init.el (ediff-toggle-read-only-function):
7024         Use toggle-read-only.
7026 2011-10-22  Alan Mackenzie  <bug-cc-mode@gnu.org>
7028         Fix bug #9560, sporadic wrong indentation; improve instrumentation
7029         of c-parse-state.
7031         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
7032         correct faulty logical expression.
7033         (c-parse-state-state, c-record-parse-state-state):
7034         (c-replay-parse-state-state): New defvar/defuns.
7035         (c-debug-parse-state): Use new functions.
7037 2011-10-22  Martin Rudalics  <rudalics@gmx.at>
7039         * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
7040         last fix.  Use window-in-direction correctly.
7042 2011-10-21  Chong Yidong  <cyd@gnu.org>
7044         * progmodes/idlwave.el (idlwave-mode):
7045         * progmodes/vera-mode.el (vera-mode): No need to set
7046         require-final-newline; that's done in prog-mode.
7047         Suggested by Stefan Monnier.
7049 2011-10-21  Martin Rudalics  <rudalics@gmx.at>
7051         * mouse.el (mouse-drag-window-above)
7052         (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
7053         (mouse-drag-mode-line-1, mouse-drag-header-line)
7054         (mouse-drag-vertical-line-rightward-window): Remove.
7055         (mouse-drag-line): New function.
7056         (mouse-drag-mode-line, mouse-drag-header-line)
7057         (mouse-drag-vertical-line): Call mouse-drag-line.
7058         * window.el (window-at-side-p, windows-at-side): New functions.
7060 2011-10-21  Ulrich Mueller  <ulm@gentoo.org>
7062         * tar-mode.el (tar-grind-file-mode):
7063         Fix handling of setuid/setgid, handle sticky bit.  (Bug#9817)
7065 2011-10-21  Chong Yidong  <cyd@gnu.org>
7067         * progmodes/idlwave.el (idlwave-mode):
7068         * progmodes/vera-mode.el (vera-mode):
7069         Use mode-require-final-newline.
7071 2011-10-20  Glenn Morris  <rgm@gnu.org>
7073         * vc/vc.el (vc-next-action): Handle removed directories.  (Bug#9781)
7075 2011-10-20  Christoph Scholtes  <cschol2112@googlemail.com>
7077         * emulation/cua-base.el (cua-set-mark): Fix case of string.
7079 2011-10-20  Chong Yidong  <cyd@gnu.org>
7081         * emulation/cua-base.el (cua-mode):
7082         * mail/footnote.el (footnote-mode):
7083         * mail/mailabbrev.el (mail-abbrevs-mode):
7084         * net/xesam.el (xesam-minor-mode):
7085         * progmodes/bug-reference.el (bug-reference-mode):
7086         * progmodes/cap-words.el (capitalized-words-mode):
7087         * progmodes/compile.el (compilation-minor-mode)
7088         (compilation-shell-minor-mode):
7089         * progmodes/gud.el (gud-tooltip-mode):
7090         * progmodes/hideif.el (hide-ifdef-mode):
7091         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
7092         * progmodes/subword.el (subword-mode):
7093         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7094         * progmodes/which-func.el (which-function-mode):
7095         * term/tvi970.el (tvi970-set-keypad-mode):
7096         * term/vt100.el (vt100-wide-mode):
7097         * textmodes/flyspell.el (flyspell-mode):
7098         * textmodes/ispell.el (ispell-minor-mode):
7099         * textmodes/nroff-mode.el (nroff-electric-mode):
7100         * textmodes/paragraphs.el (use-hard-newlines):
7101         * textmodes/refill.el (refill-mode):
7102         * textmodes/reftex.el (reftex-mode):
7103         * textmodes/rst.el (rst-minor-mode):
7104         * textmodes/sgml-mode.el (html-autoview-mode)
7105         (sgml-electric-tag-pair-mode):
7106         * textmodes/tex-mode.el (latex-electric-env-pair-mode):
7107         * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
7108         * emulation/crisp.el (crisp-mode):
7109         * emacs-lisp/eldoc.el (eldoc-mode):
7110         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
7111         minor mode behavior.
7113 2011-10-19  Juri Linkov  <juri@jurta.org>
7115         * descr-text.el (describe-char): Add #x2010 and #x2011 to
7116         the list of hard-coded chars with escape-glyph face.
7118 2011-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7120         * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
7122 2011-10-19  Michael Albinus  <michael.albinus@gmx.de>
7124         * net/tramp.el (tramp-connectable-p): Make a stronger check on a
7125         running process.
7127 2011-10-19  Glenn Morris  <rgm@gnu.org>
7129         * vc/vc-bzr.el (vc-bzr-after-dir-status):
7130         Ignore ignored files.  (Bug#9726)
7132 2011-10-19  Chong Yidong  <cyd@gnu.org>
7134         Doc fix for minor modes, stating that an omitted argument enables
7135         the mode unconditionally when called from Lisp.
7137         * abbrev.el (abbrev-mode):
7138         * allout.el (allout-mode):
7139         * autoinsert.el (auto-insert-mode):
7140         * autoarg.el (autoarg-mode, autoarg-kp-mode):
7141         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
7142         (global-auto-revert-mode):
7143         * battery.el (display-battery-mode):
7144         * composite.el (global-auto-composition-mode)
7145         (auto-composition-mode):
7146         * delsel.el (delete-selection-mode):
7147         * desktop.el (desktop-save-mode):
7148         * dired-x.el (dired-omit-mode):
7149         * dirtrack.el (dirtrack-mode):
7150         * doc-view.el (doc-view-minor-mode):
7151         * double.el (double-mode):
7152         * electric.el (electric-indent-mode, electric-pair-mode):
7153         * emacs-lock.el (emacs-lock-mode):
7154         * epa-hook.el (auto-encryption-mode):
7155         * follow.el (follow-mode):
7156         * font-core.el (font-lock-mode):
7157         * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
7158         * help.el (temp-buffer-resize-mode):
7159         * hilit-chg.el (highlight-changes-mode)
7160         (highlight-changes-visible-mode):
7161         * hi-lock.el (hi-lock-mode):
7162         * hl-line.el (hl-line-mode, global-hl-line-mode):
7163         * icomplete.el (icomplete-mode):
7164         * ido.el (ido-everywhere):
7165         * image-file.el (auto-image-file-mode):
7166         * image-mode.el (image-minor-mode):
7167         * iswitchb.el (iswitchb-mode):
7168         * jka-cmpr-hook.el (auto-compression-mode):
7169         * linum.el (linum-mode):
7170         * longlines.el (longlines-mode):
7171         * master.el (master-mode):
7172         * mb-depth.el (minibuffer-depth-indicate-mode):
7173         * menu-bar.el (menu-bar-mode):
7174         * minibuf-eldef.el (minibuffer-electric-default-mode):
7175         * mouse-sel.el (mouse-sel-mode):
7176         * msb.el (msb-mode):
7177         * mwheel.el (mouse-wheel-mode):
7178         * outline.el (outline-minor-mode):
7179         * paren.el (show-paren-mode):
7180         * recentf.el (recentf-mode):
7181         * reveal.el (reveal-mode, global-reveal-mode):
7182         * rfn-eshadow.el (file-name-shadow-mode):
7183         * ruler-mode.el (ruler-mode):
7184         * savehist.el (savehist-mode):
7185         * scroll-all.el (scroll-all-mode):
7186         * scroll-bar.el (scroll-bar-mode):
7187         * server.el (server-mode):
7188         * shell.el (shell-dirtrack-mode):
7189         * simple.el (auto-fill-mode, transient-mark-mode)
7190         (visual-line-mode, overwrite-mode, binary-overwrite-mode)
7191         (line-number-mode, column-number-mode, size-indication-mode)
7192         (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
7193         * strokes.el (strokes-mode):
7194         * time.el (display-time-mode):
7195         * t-mouse.el (gpm-mouse-mode):
7196         * tool-bar.el (tool-bar-mode):
7197         * tooltip.el (tooltip-mode):
7198         * type-break.el (type-break-mode-line-message-mode)
7199         (type-break-query-mode):
7200         * view.el (view-mode):
7201         * whitespace.el (whitespace-mode, whitespace-newline-mode)
7202         (global-whitespace-mode, global-whitespace-newline-mode):
7203         * xt-mouse.el (xterm-mouse-mode): Doc fix.
7205         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7206         Fix autogenerated docstring.
7208 2011-10-19  Juri Linkov  <juri@jurta.org>
7210         * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
7211         by checking environment variables "DESKTOP_SESSION" and
7212         "XDG_CURRENT_DESKTOP".  (Bug#9779)
7214 2011-10-19  Juri Linkov  <juri@jurta.org>
7216         * net/browse-url.el (browse-url-browser-function): Add "Chromium".
7217         (browse-url-chromium-program, browse-url-chromium-arguments):
7218         New defcustoms.
7219         (browse-url-default-browser): Check for `browse-url-chromium' and
7220         call `browse-url-chromium-program'.
7221         (browse-url-chromium): New command.  (Bug#9779)
7223 2011-10-18  Juanma Barranquero  <lekktu@gmail.com>
7225         * facemenu.el (list-colors-duplicates): On Windows, detect more
7226         duplicates by assuming that only colors matching "^System" are
7227         special "system colors".  (Bug#9722)
7229 2011-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7231         * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
7232         to distinguish the author from the committer.
7234 2011-10-18  Michael Albinus  <michael.albinus@gmx.de>
7236         * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
7238 2011-10-18  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
7240         * international/mule.el (sgml-html-meta-auto-coding-function):
7241         Add support for detecting encoding in HTML5 specified only as
7242         <meta charset="UTF-8">.  Implementation just makes http-equiv and
7243         content-type parts from HTML4 encoding string optional.  (Bug#9716)
7245 2011-10-18  Glenn Morris  <rgm@gnu.org>
7247         * vc/vc.el (vc-initial-comment): Mark as obsolete.  (Bug#9745)
7249 2011-10-18  Chong Yidong  <cyd@gnu.org>
7251         * faces.el (cursor): Doc fix.
7253 2011-10-17  Chong Yidong  <cyd@gnu.org>
7255         * font-lock.el (font-lock-maximum-size): Mark as obsolete.
7257 2011-10-17  Ryan Barrett  <emacs@ryanb.org>  (tiny change)
7259         * dirtrack.el (dirtrack): Support shell buffers with path
7260         prefixes, e.g. tramp-based remote shells.  (Bug#9647)
7262 2011-10-17  Teodor Zlatanov  <tzz@lifelogs.com>
7264         * json.el: Bump version to 1.3 and note change in History.
7265         (json-alist-p, json-plist-p): Rewrite to avoid recursion.
7267 2011-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7269         * comint.el (comint-insert-input, comint-send-input)
7270         (comint-get-old-input-default, comint-backward-matching-input)
7271         (comint-next-prompt): Use nil instead of `input' for field property of
7272         past user input (bug#114).
7274         * minibuffer.el (completion--replace): Inherit surrounding properties
7275         (bug#114).
7276         (minibuffer-complete-and-exit): Use it.
7278         * comint.el (comint--table-subvert): Quote the all-completions output
7279         (bug#9160).
7281 2011-10-17  Martin Rudalics  <rudalics@gmx.at>
7283         * ido.el (ido-default-buffer-method): Remove redundant :type entry.
7285         * menu-bar.el (menu-bar-file-menu): Add entry for making new
7286         window on right of selected.  (Bug#9350) Reword other window
7287         entries and separate them from frame entries.
7289 2011-10-15  Glenn Morris  <rgm@gnu.org>
7291         * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
7292         Doc fixes.
7294 2011-10-15  Chong Yidong  <cyd@stupidchicken.com>
7296         * net/network-stream.el (network-stream-open-starttls):
7297         Improve detection of failure due to lack of TLS support.
7299         * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
7300         putting the input text in front and in bold.
7302 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7304         * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
7306         * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
7307         empty buffer.
7309         * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
7310         unread-command-events rather than pushing yet-another event.
7312 2011-10-14  Eli Zaretskii  <eliz@gnu.org>
7314         * mail/sendmail.el (sendmail-query-once): Improve the wording of
7315         the explanation of the possible choices.  Make the options passed
7316         to completing-read shorter.
7318 2011-10-13  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
7320         * textmodes/flyspell.el (flyspell-large-region): Make sure
7321         extended character mode is used if defined (Bug#1339).
7323 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
7325         * simple.el (what-cursor-position): Fix the display of the
7326         character info for LRE, LRO, RLE, and RLO characters by appending
7327         an invisible PDF.
7329 2011-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7331         * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
7332         even in case of error; add debug spec; simplify data flow.
7333         (with-timeout-handler): Remove.
7335 2011-10-12  Michael Albinus  <michael.albinus@gmx.de>
7337         Fix Bug#6019, Bug#9315.
7339         * files.el (set-auto-mode): Call `file-name-sans-versions' for the
7340         complete `buffer-file-name', the local file name part could look
7341         remotely (for example on VMS).
7343         * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
7344         `tramp-run-real-handler'.
7345         (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
7346         already quoted by '"'.
7348         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
7349         Let `file-name-handler-alist' be nil, the local file name part
7350         could look remotely (for example on VMS).
7352 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7354         * textmodes/flyspell.el (flyspell-word): Move with-local-quit
7355         from here...
7356         (flyspell-post-command-hook): ...to here.
7358 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7360         * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
7361         if not needed.
7362         (sendmail-query-once): Remove OS dependencies.  Make it a 3-way choice
7363         using completion.  Protect against "slow" callers.
7364         Remove the "message hack".
7366 2011-10-11  Juri Linkov  <juri@jurta.org>
7368         * isearch.el (isearch-lazy-highlight-word): New variable.
7369         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
7370         Use it.  (Bug#9727)
7372 2011-10-11  Glenn Morris  <rgm@gnu.org>
7374         * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
7375         like f90-previous-statement does.
7377 2011-10-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7379         * eshell/eshell.el (eshell-command): History should be saved
7380         only in interactive use, to avoid error.
7382 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7384         * minibuffer.el (completion-file-name-table): Fix last change,
7385         i.e. ignore normal errors but not the other ones.
7387 2011-10-10  Martin Rudalics  <rudalics@gmx.at>
7389         * window.el (special-display-buffer-names)
7390         (special-display-regexps): Remove some remnants of earlier
7391         changes from doc-strings.
7392         (quit-windows-on): New function.
7394         * vc/vc.el (vc-revert, vc-rollback):
7395         * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
7396         instead of deleting windows.  (Bug#4557) (Bug#5310) (Bug#5556)
7397         (Bug#6183) (Bug#7074) (Bug#7447)
7399 2011-10-09  Martin Rudalics  <rudalics@gmx.at>
7401         * window.el (frame-auto-hide-function): Add version tag.
7402         (Bug#9699)
7404 2011-10-09  Michael Albinus  <michael.albinus@gmx.de>
7406         * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
7407         condition.
7409 2011-10-09  Leo Liu  <sdl.web@gmail.com>
7411         * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
7412         (Bug#9701)
7414 2011-10-08  Glenn Morris  <rgm@gnu.org>
7416         * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
7417         before the first code statement zero indent.  (Bug#9690)
7419 2011-10-08  Chong Yidong  <cyd@stupidchicken.com>
7421         * simple.el (count-words-region): Always count in the region.
7422         Report the number of lines and characters too.
7423         (count-words): New command, which counts in the buffer if the
7424         region is inactive, as count-words-region used to.
7425         (count-words--message): New function.  Handle plurals.
7426         (count-lines-region): Make it an alias for count-words-region.
7428         * bindings.el (esc-map): Replace count-lines-region with
7429         count-words-region.
7431 2011-10-08  Martin Rudalics  <rudalics@gmx.at>
7433         * window.el (window--delete): Delete dedicated frame
7434         unconditionally when argument KILL is non-nil.  (Bug#9699)
7435         (switch-to-buffer): Fix doc-string typo.
7437 2011-10-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7439         * eshell/eshell.el (eshell-command): Avoid using hooks.
7441 2011-10-07  Chong Yidong  <cyd@stupidchicken.com>
7443         * bindings.el ([M-left],[M-right]): Bind to left-word and
7444         right-word respectively.
7446 2011-10-07  Glenn Morris  <rgm@gnu.org>
7448         * cus-start.el (debug-on-quit): Fix custom type.
7450 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7452         * subr.el (define-key-after): Clarify that the function is not
7453         useful for non-menu keymaps.
7455         * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
7457 2011-10-06  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7459         * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
7460         in current minibuffer (Fix bug with recursive minibuffers).
7462 2011-10-06  Chong Yidong  <cyd@stupidchicken.com>
7464         * progmodes/gdb-mi.el (gdb): Doc fix.
7466 2011-10-05  Martin Rudalics  <rudalics@gmx.at>
7468         * window.el (frame-auto-hide-function): New option replacing
7469         frame-auto-delete.  Suggested by Stefan Monnier.
7470         (window--delete): Call frame-auto-hide-function instead of
7471         investigating frame-auto-delete.
7472         (window-point-1, set-window-point-1): New functions.
7473         (window-in-direction, record-window-buffer, window-state-get-1)
7474         (display-buffer-record-window): Use window-point-1 instead of
7475         window-point.
7476         (set-window-buffer-start-and-point): Use set-window-point-1.
7478 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7480         * emacs-lisp/edebug.el: Heed checkdoc recommendations.
7482 2011-10-05  Glenn Morris  <rgm@gnu.org>
7484         * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
7485         (perl-calculate-indent): Suppress scan errors.  (Bug#2205)
7487 2011-10-05  Leo Liu  <sdl.web@gmail.com>
7489         * subr.el (read-char-choice): Fix argument to buffer-live-p which
7490         works with buffer object.
7492 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7494         * mpc.el (mpc-tool-bar-map): Add labels.
7496 2011-10-04  Glenn Morris  <rgm@gnu.org>
7498         * calendar/holidays.el (calendar-check-holidays): Doc fix.
7500 2011-10-04  Martin Rudalics  <rudalics@gmx.at>
7502         * window.el (window--delete): New function.
7503         (frame-auto-delete): Resuscitate option.
7504         (bury-buffer, replace-buffer-in-windows)
7505         (quit-window): Rewrite using window--delete.
7506         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7507         Pass display-buffer-mark-dedicated to window--display-buffer-2
7508         (Bug#9639).
7510 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7512         * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
7513         returns a list (bug#9554).  Add remote file name completion.
7514         * comint.el (comint--table-subvert): Curry and get quote&unquote
7515         functions as arguments.
7516         (comint--complete-file-name-data): Adjust call accordingly.
7517         * pcomplete.el (pcomplete--table-subvert): Remove.
7518         (pcomplete-completions-at-point): Use comint--table-subvert instead.
7520         * minibuffer.el (completion-table-case-fold): Use currying.
7521         (completion--styles-type, completion--cycling-threshold-type):
7522         New constants.
7523         (completion-styles, completion-category-overrides)
7524         (completion-cycle-threshold): Use them.
7525         * pcomplete.el (pcomplete-completions-at-point): Adjust call to
7526         completion-table-case-fold.
7528 2011-10-03  Stephen Berman  <stephen.berman@gmx.net>
7530         * minibuffer.el (completion-category-overrides): Fix type of styles
7531         and add more user friendly tags (bug#9660).
7533 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7535         * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
7536         (mule-input-method-string): New widget.
7537         (default-input-method, language-info-custom-alist): Use it.
7539 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7541         * pcomplete.el: Require comint.
7542         (pcomplete--common-suffix): Remove.
7543         (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
7544         (pcomplete--table-subvert): Sync with comint--table-subvert.
7545         (pcomplete--entries): Use comint-completion-file-name-table.
7546         * comint.el (comint-unquote-filename): Simplify.
7547         (comint-completion-file-name-table): New function (bug#9616).
7548         (comint--complete-file-name-data): Use it.
7550         * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
7551         (pcmpl-gnu-tar-buffer): Remove.
7552         (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
7553         around.  Make sure pcomplete-suffix-list is only changed temporarily.
7554         Don't look inside the tar's file if it's too large.
7556 2011-10-01  Chong Yidong  <cyd@stupidchicken.com>
7558         * cus-edit.el (custom-mode-map):
7559         * epa.el (epa-key-list-mode-map):
7560         * man.el (Man-mode-map):
7561         * startup.el (splash-screen-keymap):
7562         * simple.el (special-mode-map): Use scroll-up-command and
7563         scroll-down-command.
7565         * progmodes/idlw-help.el (idlwave-help-mode-map):
7566         * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
7567         * net/newst-plainview.el (newsticker-mode-map):
7568         * emulation/ws-mode.el (wordstar-mode-map):
7569         * emulation/vi.el (vi-com-map):
7570         * calc/calc-graph.el (calc-graph-show-dumb):
7571         * term/sun.el (terminal-init-sun):
7572         * term/ns-win.el (global-map):
7573         * progmodes/grep.el (grep-mode-map):
7574         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
7575         * mail/rmail.el (rmail-mode-map):
7576         * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
7578         * custom.el (custom-safe-themes, load-theme): Treat value of t for
7579         custom-safe-themes as special.
7581 2011-10-01  Julien Danjou  <julien@danjou.info>
7583         * notifications.el (notifications-notify): Fix docstring.
7585 2011-10-01  Per Starbäck  <per@starback.se>
7587         * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call.  (Bug#9643)
7589 2011-09-30  Martin Rudalics  <rudalics@gmx.at>
7591         * startup.el (command-line-1): Fix last fix by inserting
7592         initial-scratch-message into *scratch* before displaying it.
7593         (Bug#9605) and (Bug#9636)
7595 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
7597         * simple.el (line-move): If auto-hscroll-mode is disabled and the
7598         window is hscrolled, move by logical lines.  (Bug#9607)
7599         (line-move-visual): Update the doc string to the above effect.
7601 2011-09-29  Martin Rudalics  <rudalics@gmx.at>
7603         * window.el (display-buffer-record-window): When WINDOW is the
7604         selected window use `point' instead of `window-point'.  (Bug#9626)
7606         * startup.el (command-line-1): Use insert-before-markers when
7607         inserting initial-scratch-message.  (Bug#9605)
7609         * help.el (help-window): Remove variable.
7611 2011-09-29  Glenn Morris  <rgm@gnu.org>
7613         * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
7615 2011-09-29  Juanma Barranquero  <lekktu@gmail.com>
7617         * descr-text.el (describe-char-categories): Accept category
7618         descriptions more than one line long.
7620 2011-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7622         * simple.el (delete-trailing-whitespace): Fix last change.
7624         * progmodes/perl-mode.el (perl-syntax-propertize-function):
7625         Don't confuse "y => 3" as the beginning of a `y' operation.
7627         * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
7628         object has more than 4 slots (bug#9613).
7630 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
7632         * subr.el (with-output-to-temp-buffer):
7633         * net/quickurl.el (quickurl, quickurl-browse-url):
7634         Fix typos in docstrings.
7636 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
7638         * minibuffer.el (completion-styles)
7639         (completion-category-overrides): Cross reference each other in doc
7640         strings.
7642 2011-09-27  Glenn Morris  <rgm@gnu.org>
7644         * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
7645         to split-string.  (Bug#9606)
7647 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7649         * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
7650         (bug#9615).
7652 2011-09-27  Chong Yidong  <cyd@stupidchicken.com>
7654         * emacs-lisp/package.el (list-packages): Fix echo area message.
7656 2011-09-27  Leo Liu  <sdl.web@gmail.com>
7658         * ido.el (ido-read-internal): Accept cons cell HIST arg.
7660 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
7662         * net/dbus.el (dbus-unregister-object): Don't release services for
7663         registered signals.  (Bug#9581)
7665 2011-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
7667         * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
7668         function that picks between cfengine 2 and 3 support
7669         automatically.  Update docs accordingly.
7671 2011-09-22  Kenichi Handa  <handa@m17n.org>
7673         * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
7674         ZERO.
7675         (indian-itrans-v5-table-for-tamil): New variable.
7676         (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
7678 2011-09-22  Ken Manheimer  <ken.manheimer@gmail.com>
7680         * allout.el (allout-this-command-hid-stuff): Buffer-local variable
7681         that's true if the current command involved collapsing of text.
7682         It's reset to false at the beginning of the next command.
7683         (allout-post-command-business): Move the cursor to the beginning
7684         of entry if the cursor is hidden and collapsing activity just
7685         happened.
7687 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
7689         * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
7690         tracking (Bug#9541).
7692 2011-09-24  Ulf Jasper  <ulf.jasper@web.de>
7694         * net/newst-reader.el (newsticker-html-renderer)
7695         (newsticker-show-news): Automatically load html rendering package
7696         if newsticker-html-renderer is set.  Fixes "Warning: defvar ignored
7697         because w3m-fill-column is let-bound" and the error "Symbol's value
7698         as variable is void: w3m-fill-column".
7700 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
7702         * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
7703         Release services only if they are defined.  (Bug#9581)
7705 2011-09-23  Richard Stallman  <rms@gnu.org>
7707         * textmodes/paragraphs.el (forward-sentence): For backwards case,
7708         distinguish start of paragraph from start of its text.
7710         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
7712         * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
7713         (rmail-generate-viewer-buffer): Put that hook on view buffer.
7714         (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
7716 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
7718         * international/mule-diag.el (mule-diag): Insert a newline after
7719         each fontset description.
7721 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7723         * simple.el (delete-trailing-whitespace):
7724         Document last change; simplify.
7726 2011-09-23  Peter J. Weisberg  <pj@irregularexpressions.net>
7728         * simple.el (delete-trailing-whitespace): Also delete
7729         extra newlines at the end of the buffer.
7731         * textmodes/picture.el: Make motion commands obey shift-select-mode.
7732         (picture-newline): Use forward-line so as to ignore fields.
7734 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7736         * subr.el (with-wrapper-hook): Fix edebug spec.
7738 2011-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7740         * simple.el (kill-line): Note effect of `show-trailing-whitespace'
7741         (bug#4538).
7743 2011-09-23  Michael Albinus  <michael.albinus@gmx.de>
7745         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
7746         Fix nasty bug using wrong cached values.
7748 2011-09-23  Alan Mackenzie  <acm@muc.de>
7750         * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
7752 2011-09-23  Chong Yidong  <cyd@stupidchicken.com>
7754         * window.el (pop-to-buffer): Ensure right window is selected if we
7755         chose another frame.
7757 2011-09-22  Eli Zaretskii  <eliz@gnu.org>
7759         * simple.el (what-cursor-position): Use get-char-property-change
7760         and next-single-char-property-change, to be able to show display
7761         properties that come from overlays as well as text properties.
7763 2011-09-22  Chong Yidong  <cyd@stupidchicken.com>
7765         * window.el (pop-to-buffer-same-window): New (reinstated) fun.
7767         * cmuscheme.el (run-scheme, switch-to-scheme):
7768         * cus-edit.el (customize-group, custom-buffer-create)
7769         (customize-browse):
7770         * info.el (info):
7771         * shell.el (shell):
7772         * mail/sendmail.el (mail):
7773         * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
7775 2011-09-22  Richard Stallman  <rms@gnu.org>
7777         * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
7778         move back only to line beg, don't move back over blank lines.
7780 2011-09-22  Michael Albinus  <michael.albinus@gmx.de>
7782         * files.el (copy-directory): Set directory attributes only in case
7783         they could be retrieved from the source directory.  (Bug#9565)
7785 2011-09-22  Dima Kogan  <dkogan@secretsauce.net>  (tiny change)
7787         * progmodes/hideshow.el (hs-looking-at-block-start-p)
7788         (hs-find-block-beginning, hs-hide-level-recursive):
7789         Ignore strings as well as comments.  (Bug#9502)
7791 2011-09-22  Andrew Schein  <andrew@andrewschein.com>  (tiny change)
7793         * progmodes/sql.el (sql-comint-postgres):
7794         Convert port number to a string.  (Bug#9566)
7796 2011-09-22  Martin Rudalics  <rudalics@gmx.at>
7798         * window.el (quit-window): Undedicate window when switching to
7799         previous buffer.  Reported by Thierry Volpiatto
7800         <thierry.volpiatto@gmail.com>.
7801         (special-display-popup-frame): When popping up a new frame reset
7802         its previous buffers to nil.  Simplify code.
7804 2011-09-21  Michael Albinus  <michael.albinus@gmx.de>
7806         * net/tramp.el (tramp-handle-shell-command): Set process sentinel
7807         and process filter, as done also in `shell-command'.
7809 2011-09-21  Martin Rudalics  <rudalics@gmx.at>
7811         * window.el (set-window-buffer-start-and-point):
7812         Call set-window-start with NOFORCE argument t.
7813         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
7814         (quit-window): Reword doc-string.  Handle new format of
7815         quit-restore parameter.  Don't delete window if it has a
7816         previous buffer we can show instead of the present one.
7817         (display-buffer-record-window): Rewrite using a new format for
7818         the quit-restore window parameter
7819         (special-display-popup-frame, display-buffer-same-window)
7820         (display-buffer-reuse-window, display-buffer-pop-up-frame)
7821         (display-buffer-pop-up-window, display-buffer-use-some-window):
7822         Adapt symbol passed to display-buffer-record-window.
7823         * help.el (help-window-setup): Handle new format of quit-restore
7824         parameter.
7826 2011-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7828         * faces.el (face-list): Fix docstring (bug#9564).
7830         * window.el (display-buffer--action-function-custom-type):
7831         Don't include internal functions in the Custom interface.
7833 2011-09-20  Juri Linkov  <juri@jurta.org>
7835         * info.el (Info-history-skip-intermediate-nodes): New defcustom.
7836         (Info-forward-node, Info-backward-node, Info-next-preorder)
7837         (Info-last-preorder): Use it.  (Bug#9528)
7839 2011-09-20  Juri Linkov  <juri@jurta.org>
7841         * info.el (Info-last-preorder): Visit last menu item only when
7842         `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
7844 2011-09-20  Julien Danjou  <julien@danjou.info>
7846         * password-cache.el (password-cache-remove): Remove entries even if the
7847         value is nil, so that password with a nil value (negative caching) is
7848         possible to invalidate.
7850 2011-09-20  Lawrence Mitchell  <wence@gmx.li>
7852         * progmodes/f90.el (f90-break-line): If breaking inside comment delete
7853         all whitespace around breakpoint.  (Bug#9553)
7854         (f90-find-breakpoint): Only break at whitespace inside a comment.
7856 2011-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7858         * minibuffer.el (completion-file-name-table): Keep track of errors.
7859         (completion-table-with-predicate): Handle the case where pred1 is nil.
7860         * pcomplete.el (pcomplete-completions-at-point): Simplify.
7862 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7864         * emacs-lisp/debug.el (debugger-args): Give it a docstring.
7865         (debugger-return-value): Signal an error if the debugging context does
7866         not await any return value.
7868         * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
7869         * image-mode.el (image-toggle-display-text)
7870         (image-toggle-display-image): Stay away from evil `intangible'.
7872 2011-09-19  Leo Liu  <sdl.web@gmail.com>
7874         * replace.el (occur-revert-arguments): Make it permanent-local.
7875         (occur-mode): Don't call font-lock-defontify.
7877 2011-09-19  Chong Yidong  <cyd@stupidchicken.com>
7879         * net/ldap.el (ldap-search-internal): Don't push empty search
7880         result (Bug#9508).
7882 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7884         * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
7886 2011-09-19  Michael Albinus  <michael.albinus@gmx.de>
7888         * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
7889         Suggested by Liam Stitt <stittl@cuug.ab.ca>.
7891 2011-09-18  Juri Linkov  <juri@jurta.org>
7893         * buff-menu.el (Buffer-menu-mode-map):
7894         * dired.el (dired-mode-map):
7895         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
7896         (lisp-interaction-mode-map):
7897         * emacs-lisp/package.el (package-menu-mode-map):
7898         * epa.el (epa-key-list-mode-map):
7899         * menu-bar.el (menu-bar-showhide-tool-bar-menu)
7900         (menu-bar-options-menu):
7901         * outline.el (outline-mode-menu-bar-map):
7902         * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
7903         * vc/vc-dir.el (vc-dir-menu-map):
7904         * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
7905         Capitalize non-function content words in menu item strings.
7907         * dired.el (dired-mode-map): Add menu item for
7908         `image-dired-dired-toggle-marked-thumbs'.
7910 2011-09-18  Juri Linkov  <juri@jurta.org>
7912         * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
7913         to `isearch-case-fold-search' and restore its original value
7914         after the `isearch-mode' call.
7916 2011-09-18  Juri Linkov  <juri@jurta.org>
7918         * progmodes/grep.el (grep-process-setup): Don't check code for 1
7919         because `zgrep' returns 1 for successful matches (bug#9226).
7921 2011-09-18  Juri Linkov  <juri@jurta.org>
7923         * info.el (Info-extract-menu-node-name): Check the second match
7924         for empty string (second test-case of bug#9528).
7925         (Info-last-preorder): Let-bind `Info-history' to nil to not add
7926         intermediate nodes to the history (first test-case of bug#9528).
7928 2011-09-18  Juri Linkov  <juri@jurta.org>
7930         * info.el (Info-mode-syntax-table): New variable.
7931         (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
7933 2011-09-18  Juri Linkov  <juri@jurta.org>
7935         * info.el (Info-file-supports-index-cookies):
7936         Increment line-beginning-position's arg from 3 to 4 because makeinfo
7937         outputs one more line for long file names (bug#4142).
7939 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
7941         * newcomment.el (comment-normalize-vars): If prompting for
7942         comment-start, set comment-start-skip too (Bug#8424).
7944 2011-09-18  Johan Bockgård  <bojohan@gnu.org>
7946         * icomplete.el: Fix previous fix of Bug#5849.
7947         (icomplete-mode): Don't set completion-show-inline-help.
7948         (icomplete-minibuffer-setup): Set completion-show-inline-help
7949         locally during icompletion.
7951 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
7953         * woman.el (woman2-process-escapes): Don't delete unrecognized
7954         escapes (Bug#7843).
7956         * files.el (inhibit-first-line-modes-regexps): Add image files.
7957         (hack-local-variables-prop-line): Return nil for malformed
7958         prop-lines (Bug#9044).
7960 2011-09-18  Michael Albinus  <michael.albinus@gmx.de>
7962         * net/tramp.el (top): Don't require 'shell.
7963         (tramp-methods): Fix docstring.
7964         (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
7965         Return complete remote file name.  Handle "smb" case.
7966         Use `tramp-tmpdir', if defined for the respective method.
7967         (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
7969         * net/tramp-compat.el (top): Require 'shell.
7971         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
7972         (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
7973         `tramp-current-host'.
7974         (tramp-get-remote-tmpdir): Remove.
7976         * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
7977         `tramp-tmpdir' entries.
7978         (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
7979         (tramp-smb-handle-file-attributes): Ignore errors.
7980         (tramp-smb-wait-for-output): Check also for process end.
7982 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7984         * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
7985         when sending QUIT (bug#9312).
7987 2011-09-17  Chong Yidong  <cyd@stupidchicken.com>
7989         * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
7990         (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
7991         occur-mode-display-occurrence.
7992         (occur-edit-mode): Add usage message.
7993         (occur-cease-edit): New command.
7994         (occur-after-change-function): Use text properties to find the
7995         position of the prefix text.
7996         (occur-engine): Set stickiness of prefix text properties.
7998 2011-09-17  Glenn Morris  <rgm@gnu.org>
8000         * progmodes/etags.el (complete-tag):
8001         Fix call to completion-in-region.  (Bug#9526)
8003 2011-09-17  Juri Linkov  <juri@jurta.org>
8005         * textmodes/ispell.el (ispell-word): Add to the error message
8006         the word, ispell program name and current dictionary (bug#9121).
8007         (ispell-tex-arg-end): Capitalize "error" in the error message.
8009 2011-09-17  Andreas Schwab  <schwab@linux-m68k.org>
8011         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
8012         check.  (Bug#4251)
8014 2011-09-17  Juri Linkov  <juri@jurta.org>
8016         * window.el (window-safe-min-height, window-safe-min-width):
8017         Fix typos (followup to bug#9522).
8019 2011-09-17  Sven Joachim  <svenjoac@gmx.de>
8021         * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
8023 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
8025         * simple.el (line-move): If goal-column is set, move by logical
8026         lines, not by display lines.  (Bug#971)
8027         (next-line, previous-line, goal-column, line-move-visual): Doc fix
8028         to reflect the above change.
8030 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8032         * image.el (imagemagick-register-types): Use regexp-opt.
8034 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
8036         * window.el (display-buffer-base-action): Rename from
8037         display-buffer-default-action.  Make default value empty.
8038         (display-buffer-overriding-action): Convert to defvar.
8039         (display-buffer-fallback-action): New var.
8041 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
8043         * emacs-lisp/package.el (package-alist): Fix risky-local-variable
8044         declaration.
8045         (package--add-to-archive-contents): If there is a duplicate entry
8046         with an older version, remove it.
8047         (package-menu-mark-delete, package-menu-mark-install)
8048         (package-menu-mark-unmark): Make unused args optional.
8049         (package-menu-mark-obsolete-for-deletion):
8050         Use package-menu-get-status instead of a regexp search.
8051         (package-menu-get-status): Use tabulated-list-entry.
8052         (package-menu-mark-upgrades): New command.
8053         (package-menu-mode-map): Bind it to U.  Add it to menu bar.
8054         (package-menu-execute): Do installation before deletion.
8055         (package-menu-refresh, package-menu-execute): Use derived-mode-p
8056         instead of checking major-mode.
8057         (package-menu--find-upgrades): New function.
8059 2011-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8061         * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
8062         passwords in the log buffer.
8063         (smtpmail-process-filter): Update the process marker so that the
8064         "broken by peer" status message is inserted in the right place.
8066 2011-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8068         * textmodes/bibtex.el (bibtex-complete-string-cleanup)
8069         (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
8070         bibtex-completion-at-point-function.
8071         (bibtex-completion-at-point-function): Use them.
8073         * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
8075         * mpc.el (mpc-constraints-tag-lookup): New function.
8076         (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
8077         also to browser "album|playlist".
8079 2011-09-14  Juri Linkov  <juri@jurta.org>
8081         * isearch.el (isearch-fail-pos): Add new arg `msg'.  Doc fix.
8082         (isearch-edit-string): Use length of `isearch-string' when
8083         `isearch-fail-pos' returns nil.
8084         (isearch-message): Remove duplicate code and call
8085         `isearch-fail-pos' with arg `t'.
8087 2011-09-14  Chong Yidong  <cyd@stupidchicken.com>
8089         * replace.el (occur-mode-goto-occurrence): Don't force using other
8090         window (Bug#9499).
8092         * dired-aux.el (dired-do-chmod): Don't provide initial input.
8094 2011-09-14  Martin Rudalics  <rudalics@gmx.at>
8096         * window.el (display-buffer-window): Remove.
8097         (display-buffer-record-window): Use help-setup window parameter
8098         instead of variable display-buffer-window.
8099         (display-buffer-function, special-display-buffer-names)
8100         (special-display-function): Mention help-setup parameter instead
8101         of display-buffer-window in doc-string.
8102         * help.el (help-window-setup): New argument help-window.
8103         Use help-window-setup parameter instead of display-buffer-window.
8104         Reword some messages.
8105         (with-help-window): Pass window used for displaying the buffer
8106         to help-window-setup.  Don't set display-buffer-window.
8108 2011-09-13  Glenn Morris  <rgm@gnu.org>
8110         * emacs-lisp/debug.el (debugger-make-xrefs):
8111         Preserve point.  (Bug#9462)
8113 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
8115         * window.el (window-deletable-p): Use next-frame.
8117 2011-09-13  Martin Rudalics  <rudalics@gmx.at>
8119         * window.el (window-auto-delete): Remove.
8120         (window-deletable-p): Remove argument FORCE.  Don't deal with
8121         dedication and previous buffers.
8122         (switch-to-prev-buffer): Don't delete window.
8123         (delete-windows-on): Delete a window's frame if and only if the
8124         window is dedicated.
8125         (replace-buffer-in-windows): Delete buffer's window or frame if
8126         and only if window is dedicated.
8127         (quit-window): Handle quit-restore as before last change.
8128         (bury-buffer): Delete window only if window-deletable-p returns t.
8130 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
8132         * window.el (window-deletable-p): Never delete the last frame on a
8133         given terminal.
8135 2011-09-13  Glenn Morris  <rgm@gnu.org>
8137         * help.el (describe-key-briefly): Copy previous standard-output change.
8139 2011-09-13  PJ Weisberg  <pj@irregularexpressions.net>
8141         * help.el (where-is): Respect non-standard standard-output.  (Bug#9030)
8143 2011-09-13  Glenn Morris  <rgm@gnu.org>
8145         * emacs-lisp/lisp-mode.el (lisp-indent-function):
8146         * progmodes/scheme.el (scheme-indent-function): Doc fixes.
8148 2011-09-12  Chong Yidong  <cyd@stupidchicken.com>
8150         * dired-aux.el (dired-mark-read-string): Don't return default
8151         value on empty input (Bug#9361).
8152         (dired-do-chxxx): Treat empty input for "touch" as no -t option.
8153         Omit initial minibuffer contents.
8154         (dired-do-chmod): Signal an error on empty input.
8155         (dired-mark-read-string): Don't return default on empty input.
8157         * files.el (file-modes-symbolic-to-number): Doc fix.
8159 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8161         * international/mule-cmds.el (ucs-completions): Remove.
8162         (read-char-by-name): Use complete-with-action instead; add metadata.
8164 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
8166         * window.el (display-buffer--action-function-custom-type)
8167         (display-buffer--action-custom-type): New vars.
8168         (display-buffer-alist, display-buffer-default-action)
8169         (display-buffer-overriding-action): Add defcustom types.
8171         * frame.el (delete-other-frames): Doc fix (Bug#276).
8173 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8175         * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
8177 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
8179         Change modes that used same-window-* vars to use switch-to-buffer.
8181         * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
8182         Use switch-to-buffer.
8184         * cus-edit.el (customize-group, custom-buffer-create)
8185         (customize-browse, custom-buffer-create-other-window):
8186         Use switch-to-buffer or switch-to-buffer-other-window.
8188         * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
8189         (Info-prev, Info-up, Info-speedbar-goto-node)
8190         (info-display-manual): Use switch-to-buffer.
8191         (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
8193         * mail/sendmail.el (mail): Use switch-to-buffer.
8194         (mail-recover): Use switch-to-buffer-other-window.
8196         * cmuscheme.el (run-scheme, switch-to-scheme):
8197         * ielm.el (ielm):
8198         * shell.el (shell):
8199         * net/rlogin.el (rlogin):
8200         * net/telnet.el (telnet, rsh):
8201         * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
8203 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
8205         * dired.el (dired-sort-toggle-or-edit): Revert last changes.
8207 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8209         * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
8210         so don't mention it (bug#9301).
8211         (dired-sort-toggle-or-edit): Clarify string further.
8213         * faces.el (face-spec-set-match-display): Make `(type graphic)'
8214         match `x', `w32' and `ns', like the manual says (bug#9029).
8216         * subr.el (eval-after-load): Doc string clarification (bug#9125).
8217         (process-kill-buffer-query-function): Mention the buffer name in
8218         the query.
8220         * image-mode.el (image-next-line): The line parameter is mandatory
8221         (bug#9258).
8223         * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
8224         which can be useful (bug#9301).
8226         * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
8228         * subr.el (match-string): Mention that the current buffer should
8229         be the same as the search was done in (bug#9282).
8231         * facemenu.el: Disable the remove-* commands if the mark isn't
8232         active (bug#9162).
8234 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
8236         * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
8237         of display-buffer.
8238         (Buffer-menu-2-window): Use switch-to-buffer-other-window.
8240         * replace.el (occur-mode-goto-occurrence)
8241         (occur-mode-display-occurrence) Use second arg of pop-to-buffer
8242         and display-buffer.
8244         * mail/reporter.el (reporter-submit-bug-report): Use second arg of
8245         display-buffer.
8247         * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
8248         special-display and same-window variables.
8249         (mail-other-window): Use switch-to-buffer-other-window.
8250         (mail-other-frame): USe switch-to-buffer-other-frame.
8252         * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
8253         Use display-buffer-other-frame.
8254         (gdb-display-gdb-buffer): Use pop-to-buffer.
8256         * progmodes/gud.el (gud-goto-info): Use info-other-window.
8258         * progmodes/python.el: Don't set same-window-buffer-names.
8260         * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
8262         * window.el (display-buffer-alist): Add *Python*.
8264 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
8266         * window.el (display-buffer-alist): Add entry for buffers
8267         previously handled same-window-*.
8268         (display-buffer-alist, display-buffer-default-action)
8269         (display-buffer-overriding-action): Mark as risky.
8270         (display-buffer-alist): Document action function changes.
8271         (display-buffer--same-window-action)
8272         (display-buffer--other-frame-action): New variables.
8273         (switch-to-buffer, display-buffer-other-frame): Use them.
8274         (display-buffer): Rename reuse-frame entry to reusable-frames.
8275         (display-buffer-reuse-selected-window): Function deleted.
8276         (display-buffer-reuse-window): Handle reusable-frames alist entry.
8277         If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
8278         (display-buffer-special): New function.
8279         (display-buffer--maybe-pop-up-frame-or-window): Rename from
8280         display-buffer-reuse-or-pop-window.  Split off special-display
8281         part into display-buffer-special.
8282         (display-buffer-use-some-window): Don't perform any special
8283         pop-up-frames handling.
8284         (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
8285         (display-buffer--maybe-same-window): Rename from
8286         display-buffer-maybe-same-window.
8288         * info.el: Don't set same-window-regexps.
8289         (info-setup): New function.
8290         (info-other-window, info): Call it.
8292         * cus-edit.el: Don't set same-window-regexps.
8293         (customize-group): New argument.
8294         (customize-group-other-window): Use it.
8295         (customize-face, customize-face-other-window): Likewise.
8296         (custom-buffer-create-other-window): Use pop-to-buffer directly.
8298         * net/rlogin.el:
8299         * net/telnet.el:
8300         * progmodes/gud.el: Don't set same-window-regexps.
8302         * cmuscheme.el:
8303         * ielm.el:
8304         * shell.el:
8305         * mail/sendmail.el:
8306         * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
8308 2011-09-10  Juri Linkov  <juri@jurta.org>
8310         * isearch.el (isearch-edit-string): Remove obsolete mention of
8311         `C-w' (`isearch-yank-word-or-char') from docstring.
8312         (isearch-query-replace): Fix typo in docstring (bug#9466).
8314 2011-09-10  Juri Linkov  <juri@jurta.org>
8316         * paren.el (show-paren-function): Don't show escaped parens.
8317         Let-bind `unescaped' to `t' when paren is not escaped.  (Bug#9461)
8319 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
8321         * mail/sendmail.el (mml-to-mime, mml-attach-file)
8322         (mm-default-file-encoding): Remove autoload forms, they are
8323         replaced with autoload cookies in mml.el and mm-encode.el.
8324         (mail-add-attachment): New command.
8325         (mail-mode-map): Add a menu-bar item for mail-add-attachment.
8326         (mail-mode): Mention mail-insert-file and mail-add-attachment in
8327         the doc string.
8328         (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
8330 2011-09-10  Reuben Thomas  <rrt@sc3d.org>
8332         * simple.el (count-words-region): Use buffer if there's no region
8333         (bug#9429).
8335 2011-09-09  Juri Linkov  <juri@jurta.org>
8337         * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
8338         `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
8339         (wdired-isearch-filter-read-only): New function.  (Bug#6362)
8341 2011-09-09  Alan Mackenzie  <acm@muc.de>
8343         * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
8344         spuriously generating `awk-mode-syntax-table'.  (Bug #9448).
8346 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
8348         Fix for Savannah bug#9392.
8349         * simple.el (mail-encode-mml): New defvar.
8351         * mail/rmail.el (mail-encode-mml): Add a defvar.
8352         (rmail-enable-mime-composing): Default to t.
8353         (rmail-forward): Use MIME method of forwarding only if both
8354         rmail-enable-mime-composing and rmail-enable-mime are non-nil.
8355         Set mail-encode-mml non-nil if the MIME method was used.
8357         * mail/sendmail.el (mml-to-mime): Add autoload form.
8358         (mail-encode-mml): Add a defvar.
8359         (mail-mode): Make mail-encode-mml buffer-local and initialize it
8360         to nil.
8361         (mail-send): If mail-encode-mml is non-nil, run the outgoing
8362         message through mml-to-mime, and reset mail-encode-mml to nil.
8364 2011-09-09  Glenn Morris  <rgm@gnu.org>
8366         * woman.el (woman-if-body): When processing an .el block,
8367         do not delete the next .el block as well.  (Bug#9447)
8368         (woman-special-characters): Add oq, cq, and hy characters.
8370 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
8372         * window.el (window-deletable-p): Make sure window is live before
8373         invoking window-prev-buffers.
8375 2011-09-08  Leo Liu  <sdl.web@gmail.com>
8377         * net/rcirc.el (rcirc-cmd-invite): New rcirc command.  (Bug#9453)
8379 2011-09-08  Juri Linkov  <juri@jurta.org>
8381         * progmodes/compile.el (compilation-environment): Make it
8382         a defcustom (bug#8340).
8384 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
8386         * window.el (frame-auto-delete): Rename to window-auto-delete.
8387         Make it control auto-deletion of windows and/or frames.
8388         (window-deletable-p): New argument FORCE.  Rewrite conditions
8389         for deleting window/frame.  (Bug#9419)
8390         (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
8391         Rewrite handling of case when window/frame can be deleted.
8392         (delete-windows-on): Call window-deletable-p with new FORCE
8393         argument t.  (Bug#9456)
8395 2011-09-07  Chong Yidong  <cyd@stupidchicken.com>
8397         * help-mode.el (help-mode): Restore autoload.
8399 2011-09-07  Juri Linkov  <juri@jurta.org>
8401         * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
8402         `compilation-environment'.  Set buffer-local
8403         `compilation-environment' to `thisenv' later after (funcall mode).
8404         (Bug#8340)
8406         * vc/vc-git.el (vc-git-grep): Remove --no-color.  (Bug#9408)
8407         (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
8408         instead of replacing its value.  (Bug#8340)
8410 2011-09-07  Juri Linkov  <juri@jurta.org>
8412         * progmodes/grep.el (grep-regexp-alist): Calculate column positions
8413         based on text properties put by `grep-filter' instead of matching
8414         escape sequences.
8415         (grep-mode): Set buffer-local `compilation-error-screen-columns'
8416         to the value of `grep-error-screen-columns' (bug#9438).
8418 2011-09-07  Juri Linkov  <juri@jurta.org>
8420         * simple.el (next-error-highlight, next-error-highlight-no-select):
8421         Doc fix (bug#9432).
8423 2011-09-07  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
8425         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
8426         Check for null c-opt-block-decls-with-vars-key.  (Bug#9443)
8428 2011-09-07  Leo Liu  <sdl.web@gmail.com>
8430         * net/rcirc.el (rcirc-mode): Conditionally initialize
8431         rcirc-input-ring.
8433 2011-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8435         * emacs-lisp/find-func.el (find-function-C-source): Only set
8436         find-function-C-source-directory after checking that we found a source
8437         file there (bug#9440).
8439 2011-09-06  Alan Mackenzie  <acm@muc.de>
8441         * isearch.el (isearch-other-meta-char): Wherever a key list is
8442         unread, "unread" the prefix arg, too.  This fixes bug #8901.
8444 2011-09-05  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
8446         * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
8448 2011-09-05  Juri Linkov  <juri@jurta.org>
8450         * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
8452 2011-09-05  Juri Linkov  <juri@jurta.org>
8454         * progmodes/grep.el (grep-filter): Avoid incomplete processing by
8455         keeping point where processing of grep matches begins, and
8456         continue to delete remaining escape sequences from the same point.
8457         (grep-filter): Make leading zero optional in "0?1;31m" because
8458         git-grep emits "\033[1;31m" escape sequences unlike expected
8459         "\033[01;31m" as GNU Grep does (bug#9408).
8460         (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
8462 2011-09-05  Juri Linkov  <juri@jurta.org>
8464         * subr.el (y-or-n-p): Capitalize "yes".
8466 2011-09-04  Michael Albinus  <michael.albinus@gmx.de>
8468         * net/tramp.el (top): Require 'shell.  Use `tramp-unload-hook' but
8469         `tramp-cache-unload-hook' where appropriate.
8470         (tramp-methods): Rename `tramp-remote-sh' to
8471         `tramp-remote-shell'.  Add `tramp-remote-shell-args'.
8472         (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
8474         * net/tramp-sh.el (top): Don't require 'shell.
8475         (tramp-methods): Add `tramp-remote-shell' and
8476         `tramp-remote-shell-args' entries.
8477         (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
8478         (tramp-sh-handle-shell-command): Remove.
8479         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8480         Use `tramp-remote-shell'.
8482 2011-09-03  Chong Yidong  <cyd@stupidchicken.com>
8484         * mail/sendmail.el (sendmail-query-once-function): Delete.
8485         (sendmail-query-once): Save directly to send-mail-function.
8486         Update message-send-mail-function too.
8488         * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
8490 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
8492         * progmodes/python.el (python-mode-map): Use correct function to
8493         start python interpreter from menu-bar (as reported by Geert
8494         Kloosterman).
8495         (inferior-python-mode-map): Fix typo.
8496         (python-shell-map): Remove.
8498 2011-09-03  Deniz Dogan  <deniz@dogan.se>
8500         * net/rcirc.el (rcirc-print): Simplify code for
8501         rcirc-scroll-show-maximum-output.  There is no need to walk
8502         through all windows to find the right one.
8504 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
8506         * help.el (help-return-method): Doc fix.
8508 2011-09-03  Martin Rudalics  <rudalics@gmx.at>
8510         * window.el (window-deletable-p): Don't return a non-nil value
8511         when there's a buffer that was shown in the window before.
8512         (Bug#9419)
8513         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8514         Set window's previous buffers to nil.
8516 2011-09-03  Eli Zaretskii  <eliz@gnu.org>
8518         * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
8519         newline before and after the tag line, so it doesn't interfere
8520         with determining the paragraph direction of bidirectional text.
8522 2011-09-03  Leo Liu  <sdl.web@gmail.com>
8524         * files.el (find-file-not-true-dirname-list): Remove.  (Bug#9422)
8526 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
8528         * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
8529         (pop-to-buffer): Change interactive spec.  Pass second argument
8530         directly to display-buffer.
8531         (display-buffer): Fix interactive spec.  Use functionp to
8532         distinguish between a function and a list of functions.
8534         * abbrev.el (edit-abbrevs):
8535         * arc-mode.el (archive-extract):
8536         * autoinsert.el (auto-insert):
8537         * bookmark.el (bookmark-bmenu-list):
8538         * files.el (find-file):
8539         * view.el (view-buffer):
8540         * progmodes/compile.el (compilation-goto-locus):
8541         * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
8543 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
8545         * window.el (display-buffer-alist): Doc fix.
8546         (display-buffer): Add docstring.  Don't treat
8547         display-buffer-default specially.
8548         (display-buffer-reuse-selected-window)
8549         (display-buffer-same-window, display-buffer-maybe-same-window)
8550         (display-buffer-reuse-window, display-buffer-pop-up-frame)
8551         (display-buffer-pop-up-window)
8552         (display-buffer-reuse-or-pop-window)
8553         (display-buffer-use-some-window): New functions.
8554         (display-buffer-default-action): Use them.
8555         (display-buffer-default): Delete.
8556         (pop-to-buffer-1): Fix choice of actions.
8558 2011-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8560         * minibuffer.el (completion--insert-strings): Don't get confused by
8561         completion entries that end with an LF char.
8563 2011-09-01  Eli Zaretskii  <eliz@gnu.org>
8565         * window.el (frame-auto-delete, window-deletable-p): Doc fix.
8567 2011-09-01  Chong Yidong  <cyd@stupidchicken.com>
8569         * window.el (display-buffer): Restore interactive spec.
8570         (display-buffer-same-window, display-buffer-other-window):
8571         New functions.
8572         (pop-to-buffer-1): New function.  Use the above.
8573         (pop-to-buffer, pop-to-buffer-same-window): Use it.
8574         (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
8576         * view.el (view-buffer-other-window, view-buffer-other-frame):
8577         Just use pop-to-buffer.
8579 2011-09-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
8581         * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories.  (Bug#9391)
8583 2011-09-01  Wilfred Hughes  <wilfred@potatolondon.com>  (tiny change)
8585         * vc/vc-git.el (vc-git-grep): Use --no-color.  (Bug#9408)
8587 2011-08-31  Richard Stallman  <rms@gnu.org>
8589         * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
8590         of the separation of rmail-view-buffer from rmail-buffer.
8591         If you say no to "replace original", the decrypt is in the
8592         view buffer.  If you say yes, the decrypt goes into the
8593         rmail buffer also.
8595 2011-08-31  Martin Rudalics  <rudalics@gmx.at>
8597         * window.el (display-buffer-window): Rewrite doc-string.
8598         (display-buffer-record-window): New function.
8599         (display-buffer-macro-specifiers)
8600         (display-buffer-even-window-sizes, display-buffer-set-height)
8601         (display-buffer-set-width, display-buffer-in-window)
8602         (display-buffer-reuse-window, display-buffer-split-specifiers)
8603         (display-buffer-side-specifiers, display-buffer-split-window-1)
8604         (display-buffer-split-window, display-buffer-split-atom-window)
8605         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
8606         (display-buffer-pop-up-side-window, display-buffer-in-side-window)
8607         (display-buffer-other-window-means-other-frame)
8608         (display-buffer-normalize-special)
8609         (display-buffer-normalize-default)
8610         (display-buffer-normalize-argument)
8611         (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
8612         (display-buffer-normalize-specifiers, display-buffer-frame)
8613         (display-buffer-same-window, display-buffer-same-frame)
8614         (display-buffer-other-window)
8615         (display-buffer-same-frame-other-window)
8616         (display-buffer-other-frame, pop-to-buffer-same-window)
8617         (pop-to-buffer-same-frame, pop-to-buffer-other-window)
8618         (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
8619         (switch-to-buffer-same-frame)
8620         (switch-to-buffer-other-window-same-frame)
8621         (display-buffer-alist-of-strings-p, display-buffer-alist-add)
8622         (display-buffer-alist-set-1, display-buffer-alist-set-2)
8623         (display-buffer-alist-set): Remove.
8624         (display-buffer-function, special-display-buffer-names)
8625         (special-display-regexps, special-display-function):
8626         In doc-string refer to display-buffer-window and quit-restore
8627         parameter.
8628         (pop-up-frame-alist, pop-up-frame-function, special-display-p)
8629         (special-display-frame-alist, special-display-popup-frame)
8630         (same-window-buffer-names, same-window-regexps, same-window-p)
8631         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
8632         (split-window-preferred-function, split-height-threshold)
8633         (split-width-threshold, window-splittable-p)
8634         (split-window-sensibly, window--try-to-split-window)
8635         (window--frame-usable-p, even-window-heights)
8636         (window--even-window-heights, window--display-buffer-1)
8637         (window--display-buffer-2, display-buffer-other-frame):
8638         Restore old Emacs 23 code, order and doc-strings where applicable.
8639         (display-buffer-default, display-buffer-assq-regexp): New functions.
8640         (display-buffer-alist): Rewrite doc-string.
8641         (display-buffer-default-action)
8642         (display-buffer-overriding-action): New variables.
8643         (display-buffer, switch-to-buffer): Rewrite.
8644         (pop-to-buffer): Restore Emacs 23 behavior but use
8645         window-normalize-buffer-to-display.
8646         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
8647         Restore Emacs 23 behavior but use
8648         window-normalize-buffer-to-switch-to.
8649         (pop-to-buffer-same-window): Rewrite.
8650         (pop-to-buffer-other-window, pop-to-buffer-other-frame):
8651         Rewrite using Emacs 23 options.
8653 2011-08-31  Michael Albinus  <michael.albinus@gmx.de>
8655         * net/tramp.el (tramp-root-regexp): Remove.
8656         (tramp-completion-file-name-regexp-unified)
8657         (tramp-completion-file-name-regexp-separate)
8658         (tramp-completion-file-name-regexp-url): Don't use leading volume
8659         letter on win32 systems.  (Bug#5303, Bug#9311)
8660         (tramp-drop-volume-letter): Simplify definition.
8661         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8663 2011-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8665         * subr.el (event-modifiers): Fix "missing modifier" part of docstring
8666         (bug#9356).
8668 2011-08-30  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
8670         * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
8672 2011-08-29  Juri Linkov  <juri@jurta.org>
8674         * isearch.el (isearch-done): Don't display message "Mark saved"
8675         when arg `edit' is non-nil to prevent its flicker in the echo area.
8677 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
8679         * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
8680         obsolete packages for deletion.
8682 2011-08-28  Christoph Scholtes  <cschol2112@googlemail.com>
8684         * help-mode.el (help-mode-map): Add special-mode-map to parent.
8685         (help-mode): Derive help-mode from special-mode.  Don't invoke
8686         view-mode from help-mode.
8687         (help-xref-override-view-map): Remove.
8688         (help-make-xrefs): Remove minor-mode-overriding-map-alist since
8689         view-mode is not used anymore.
8691 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
8693         * server.el (server-port): Doc fix.
8695         * cus-theme.el (custom-theme-choose-mode): Inherit from
8696         special-mode (Bug#9124).
8697         (custom-theme-choose-mode-map): Add special-mode to parent.
8699 2011-08-28  Alan Mackenzie  <acm@muc.de>
8701         * progmodes/cc-fonts.el
8702         (c-make-font-lock-BO-decl-search-function): New function.
8703         (c-basic-matchers-after - "Fontify the clauses after various
8704         keywords"): Extract the three keyword lists for the 3 erroneous
8705         constructs from the list of four, and use the new function above
8706         in place of an old one.
8708 2011-08-28  Deniz Dogan  <deniz@dogan.se>
8710         * net/rcirc.el (rcirc-insert-prev-input)
8711         (rcirc-insert-next-input): Remove unused argument.
8713 2011-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8715         * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
8717 2011-08-27  Alan Mackenzie  <acm@muc.de>
8719         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
8720         handle function pointer parameters properly.
8722 2011-08-27  Martin Rudalics  <rudalics@gmx.at>
8724         * window.el (display-buffer-reuse-window): Fix case where
8725         selected window was reused with non-nil OTHER-WINDOW argument.
8726         (Bug#9381)
8728 2011-08-27  Deniz Dogan  <deniz@dogan.se>
8730         * net/rcirc.el (rcirc-check-auth-status): Adding support for
8731         oftc's NickServ messages.
8733 2011-08-27  Glenn Morris  <rgm@gnu.org>
8735         * saveplace.el (save-place-limit): Make it finite.  (Bug#9352)
8737 2011-08-26  Chong Yidong  <cyd@stupidchicken.com>
8739         * emacs-lisp/package.el (package-install): Call package-initialize
8740         if called interactively.
8742 2011-08-26  Leo Liu  <sdl.web@gmail.com>
8744         * emacs-lisp/cl-macs.el (defstruct): Fix format.  (Bug#9357)
8746 2011-08-25  Juri Linkov  <juri@jurta.org>
8748         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
8749         `search-whitespace-regexp' (bug#9364).
8751 2011-08-25  Juri Linkov  <juri@jurta.org>
8753         * isearch.el (isearch-edit-string): Let-bind `search-ring' and
8754         `regexp-search-ring' to their global values to protect from
8755         updating by `read-from-minibuffer' (bug#9185).
8757 2011-08-25  Juri Linkov  <juri@jurta.org>
8759         * textmodes/ispell.el (ispell-command-loop): Add newline
8760         at the end of the "Use option `i'..." line.
8762 2011-08-25  Juri Linkov  <juri@jurta.org>
8764         * battery.el (display-battery-mode): If `battery-status-function'
8765         or `battery-mode-line-format' is nil, display the message and set
8766         `display-battery-mode' to nil (bug#9363).
8768 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
8770         * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
8771         bidi-string-mark-left-to-right; they are unnecessary now.
8773 2011-08-25  Deniz Dogan  <deniz@dogan.se>
8775         * net/quickurl.el: Documentation typo fixes.
8777 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
8779         * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
8781 2011-08-25  Glenn Morris  <rgm@gnu.org>
8783         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
8785         * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
8786         (smtpmail-via-smtp): Handle nil response from smtp.
8788 2011-08-24  Juri Linkov  <juri@jurta.org>
8790         * proced.el (proced-marked): Inherit from `error' instead of
8791         `font-lock-warning-face'.
8793         * ibuffer.el (ibuffer-marked-face): Change default face from
8794         `font-lock-warning-face' to `warning'.
8795         (ibuffer-deletion-face): Change default face from
8796         `font-lock-type-face' to `error'.
8798         * battery.el (battery-update): Use the face `error' instead of
8799         `font-lock-warning-face' (bug#6117).
8801 2011-08-24  Juri Linkov  <juri@jurta.org>
8803         * faces.el (success): Change face color from "Green3" to
8804         "ForestGreen" on light background (bug#9353).
8806 2011-08-24  Chong Yidong  <cyd@stupidchicken.com>
8808         * window.el (quit-window): Rename from quit-restore-window.
8809         Use same arglist as old quit-window.
8810         (frame-auto-delete): Doc fix.
8812         * view.el (view-mode-exit): Use quit-window.
8814 2011-08-24  Juri Linkov  <juri@jurta.org>
8816         * isearch.el (isearch-ring-adjust1): Start visiting previous
8817         search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
8818         (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
8819         for empty search string (when the last search string is reused
8820         automatically) to adjust the isearch ring to the last element and
8821         prepare the correct index for further M-p commands (bug#9185).
8823 2011-08-24  Kenichi Handa  <handa@m17n.org>
8825         * international/ucs-normalize.el: If decomposition property of
8826         CHAR is the default one (i.e. a list of CHAR itself), treat it as
8827         nil.
8828         (nfd, nfkd): Likewise.
8830 2011-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8832         * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
8833         from process filters aren't reliably transmitted to the surrounding
8834         accept-process-output.
8835         (mpc-proc-check): New function.
8836         (mpc-proc-sync): Use it (bug#8293)
8838 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8840         * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
8841         Add compatibility functions (bug#9313).
8843 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
8845         * cus-start.el (all): Add entry for bidi-paragraph-direction.
8847         * international/uni-bidi.el: Regenerate.
8849 2011-08-23  Kenichi Handa  <handa@m17n.org>
8851         * international/charprop.el:
8852         * international/uni-bidi.el:
8853         * international/uni-category.el:
8854         * international/uni-combining.el:
8855         * international/uni-comment.el:
8856         * international/uni-decimal.el:
8857         * international/uni-decomposition.el:
8858         * international/uni-digit.el:
8859         * international/uni-lowercase.el:
8860         * international/uni-mirrored.el:
8861         * international/uni-name.el:
8862         * international/uni-numeric.el:
8863         * international/uni-old-name.el:
8864         * international/uni-titlecase.el:
8865         * international/uni-uppercase.el: Regenerate.
8867 2011-08-23  Martin Rudalics  <rudalics@gmx.at>
8869         * help.el (help-window-setup): Fix message displayed when other
8870         window is reused.  (Bug#9341)
8872 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8874         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
8875         * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
8877         * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
8878         Mark obsolete.
8879         * shell.el (shell-parse-pcomplete-arguments): New function.
8880         (shell-completion-vars): Use it instead (bug#9160).
8882 2011-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
8884         * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
8885         strings and comments (bug#9333).
8887         * emacs-lisp/debug.el (debug-arglist): New function.
8888         (debug-convert-byte-code): Use it.  Handle lexical byte-codes.
8889         (debug-on-entry-1): Handle interpreted closures (bug#9120).
8891 2011-08-22  Juri Linkov  <juri@jurta.org>
8893         * progmodes/compile.el (compilation-mode-font-lock-keywords):
8894         Revert regexp that highlights output switches to its old
8895         pre-2010-10-28 value and remove one `?' from it (bug#9319).
8897         * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
8898         to check for empty output (bug#9226).
8900 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
8902         * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
8903         symbol-constituent as the default, as that stops font-lock from
8904         working properly (Bug#8843).
8906 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8908         * mail/smtpmail.el (smtpmail-via-smtp): Only bind
8909         `coding-system-for-*' around the process open call to avoid
8910         auth-source side effects.
8911         (smtpmail-try-auth-methods): Expand the secret password.
8912         (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
8913         probe hangs.
8915 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
8917         * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
8919         * emacs-lisp/find-func.el (find-function-noselect): New arg
8920         lisp-only.
8922         * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
8923         signal an error for built-in functions (Bug#6664).
8925 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8927         * mail/smtpmail.el (smtpmail-smtp-user): New variable.
8928         (smtpmail-try-auth-methods): Use it.
8930 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
8932         * font-lock.el (font-lock-fontify-region)
8933         (font-lock-unfontify-region, font-lock-default-fontify-buffer)
8934         (font-lock-default-unfontify-buffer)
8935         (font-lock-default-fontify-region)
8936         (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
8938         * progmodes/compile.el (compilation-error-properties):
8939         Fix confusion between file struct and message struct (Bug#9319).
8940         (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
8941         `ant' regexp.
8943         * net/browse-url.el (browse-url-firefox): Don't call
8944         browse-url-firefox-sentinel unless using -remote (Bug#9328).
8946 2011-08-20  Glenn Morris  <rgm@gnu.org>
8948         * tutorial.el (help-with-tutorial): Avoid an error on short screens.
8950         * tutorial.el (tutorial--default-keys): Update some default bindings.
8952         * files.el (hack-local-variables): Fully ignore case for "mode:".
8954 2011-08-20  Alan Mackenzie  <acm@muc.de>
8956         Resolve invalid use of a regexp in regexp-opt.
8958         * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
8959         detection for a java annotation.
8961         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
8962         detection for a java annotation.
8964         * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
8965         handling for java.
8966         (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
8968 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
8970         * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
8971         (Bug#9274).
8973 2011-08-20  Alan Mackenzie  <acm@muc.de>
8975         Fontify CPP expressions correctly when starting in the middle of
8976         such a construct.  Mainly for when jit-lock etc. starts a chunk
8977         here.
8979         * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
8980         variable.
8981         (c-make-font-lock-search-form): New function, extracted from
8982         c-make-font-lock-search-function.
8983         (c-make-font-lock-search-function): Use the above function.
8984         (c-make-font-lock-context-search-function): New function.
8985         (c-cpp-matchers): Enhance the preprocessor expression case with
8986         the above function
8987         (c-font-lock-complex-decl-prepare): Test for being in a CPP form
8988         which takes an expression.
8990         * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
8992 2011-08-20  Martin Rudalics  <rudalics@gmx.at>
8994         * window.el (display-buffer-reuse-window)
8995         (display-buffer-pop-up-window): Don't reuse or split a side
8996         window.
8998 2011-08-19  Glenn Morris  <rgm@gnu.org>
9000         * files.el (hack-local-variables-prop-line, hack-local-variables):
9001         Downcase "Mode:".  (Bug#9331)
9003 2011-08-18  Chong Yidong  <cyd@stupidchicken.com>
9005         * international/characters.el: Add L and R categories.
9007         * subr.el (bidi-string-mark-left-to-right): Rename from
9008         string-mark-left-to-right.  Use category search.
9010         * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
9012 2011-08-18  Juri Linkov  <juri@jurta.org>
9014         * faces.el (error, warning, success): New faces with definitions
9015         copied from old default values of `font-lock-warning-face',
9016         `compilation-warning', `compilation-info' (bug#6117).
9018         * font-lock.el (font-lock-warning-face): Inherit from `error'.
9020         * progmodes/compile.el (compilation-error): Inherit from `error'.
9021         (compilation-warning): Inherit from `warning'.
9022         (compilation-info): Inherit from `success'.
9024         * dired.el (dired-marked): Inherit from `warning'.
9025         (dired-flagged): Inherit from `error'.
9027 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9029         * mail/smtpmail.el (auth-source): Require to avoid problems with
9030         binding variables (bug#9298).  Also clean up some unused
9031         autoloads.
9033         * net/network-stream.el (network-stream-open-starttls):
9034         Support using starttls.el without using gnutls-cli.
9036 2011-08-17  Juri Linkov  <juri@jurta.org>
9038         * progmodes/grep.el (rgrep): Handle the case when
9039         `grep-find-command' is a cons cell (bug#9278).
9041 2011-08-17  Martin Rudalics  <rudalics@gmx.at>
9043         * window.el (display-buffer-pop-up-frame): Run frame creation
9044         function with BUFFER current (as special-display-popup-frame
9045         does).  Reported by Drew Adams.
9047 2011-08-17  Daiki Ueno  <ueno@unixuser.org>
9049         * epa-mail.el: Simplify GnuPG group expansion using
9050         epg-expand-group.
9051         (epa-mail-group-alist, epa-mail-group-modtime)
9052         (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
9053         (epa-mail-sync-groups, epa-mail-expand-recipient-1)
9054         (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
9055         Remove.
9057 2011-08-16  Feng Li  <fengli@gmail.com>  (tiny change)
9059         * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
9061 2011-08-16  Alan Mackenzie  <acm@muc.de>
9063         * progmodes/cc-engine.el (c-state-cache-non-literal-place):
9064         Correct, to avoid the inside of macros.
9066 2011-08-16  Richard Stallman  <rms@gnu.org>
9068         * epa-mail.el: Handle GnuPG group definitions.
9069         (epa-mail-group-alist, epa-mail-group-modtime)
9070         (epa-mail-gnupg-conf-file): New variables.
9071         (epa-mail-parse-groups, epa-mail-sync-groups)
9072         (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
9073         (epa-mail-expand-recipients): New functions.
9074         (epa-mail-encrypt): Call epa-mail-expand-recipients.
9076         * mail/rmail.el (rmail-epa-decrypt): New command.
9078         * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
9079         Don't bind buffer-read-only, just inhibit-read-only.
9080         (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
9081         (epa-decrypt-armor-in-region): Make error message clearer.
9083 2011-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9085         * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
9086         and "a2b" to "ab" for `prefix'.
9088 2011-08-14  Chong Yidong  <cyd@stupidchicken.com>
9090         * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
9091         filter groups.
9092         (ibuffer-included-in-filter-p-1): Use it.  Suggested by Rafaël
9093         Fourquet (Bug#8804).
9095 2011-08-12  Juanma Barranquero  <lekktu@gmail.com>
9097         * startup.el (argi): Declare as global variable (bug#9275).
9099 2011-08-12  Chong Yidong  <cyd@stupidchicken.com>
9101         * subr.el (string-mark-left-to-right): Search the entire string
9102         for RTL script, not just the terminating character.  Doc fix.
9104 2011-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9106         * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
9107         New function.
9108         (js--regexp-literal, js-syntax-propertize-function): Remove.
9109         (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
9110         (js-mode-map): Don't rebind electric keys.
9111         (js-insert-and-indent): Remove.
9112         (js-mode): Setup electric-layout and electric-indent instead.
9114         * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
9116 2011-08-12  Daiki Ueno  <ueno@unixuser.org>
9118         * epa.el (epa-progress-callback-function): Fix the logic of
9119         displaying progress.
9120         * epa-file.el (epa-file-insert-file-contents): Make progress
9121         display more user-friendly.
9122         (epa-file-write-region): Ditto.
9124 2011-08-10  Chong Yidong  <cyd@stupidchicken.com>
9126         * subr.el (string-mark-left-to-right): New function.
9128         * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
9129         Use string-mark-left-to-right.
9130         (list-buffers-noselect): Caller changed.
9132         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9133         Use string-mark-left-to-right.
9134         (tabulated-list-print): Recenter after moving point.
9136 2011-08-10  Juri Linkov  <juri@jurta.org>
9138         * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
9139         This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
9140         intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
9142 2011-08-09  Chong Yidong  <cyd@stupidchicken.com>
9144         * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
9145         (Bug#7554).
9147 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
9149         * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
9150         character.  (Bug#6594)
9152 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
9154         * image-dired.el: Don't use find-file for temporary work (Bug#7895).
9155         (image-dired--with-db-file): New macro.
9156         (image-dired-write-tags, image-dired-remove-tag)
9157         (image-dired-create-gallery-lists, image-dired-write-comments)
9158         (image-dired-get-comment, image-dired-mark-tagged-files)
9159         (image-dired-list-tags, image-dired-gallery-generate): Use it.
9160         (image-dired-gallery-generate): Use insert-file-contents.
9162         * time.el (display-time-world-list, display-time-world-display):
9163         * time-stamp.el (time-stamp-string):
9164         * vc/add-log.el (add-change-log-entry): Use setenv instead of
9165         set-time-zone-rule (Bug#7337).
9167 2011-08-08  Daiki Ueno  <ueno@unixuser.org>
9169         * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
9170         (epg-error-to-string, epg-errors-to-string): New function.
9171         (epg-wait-for-completion): Reverse errors list.
9172         (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
9173         (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
9174         (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
9175         (epg-sign-keys, epg-generate-key-from-file)
9176         (epg-generate-key-from-string): Format errors by using
9177         epg-errors-to-string (bug#9255).
9178         (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
9180 2011-08-07  Juri Linkov  <juri@jurta.org>
9182         * faces.el (list-faces-display): Remove extra angle bracket
9183         from `help-mode-map'.
9185         * info.el (Info-history-toc-nodes): Doc fix.
9187         * longlines.el (longlines-mode): Doc fix.
9189 2011-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9191         * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
9192         of statements and in a few more cases (bug#9183).
9194         * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
9195         New functions.
9196         (cl-transform-lambda): Use them (bug#9239).
9198 2011-08-05  Martin Rudalics  <rudalics@gmx.at>
9200         * window.el (display-buffer-same-window)
9201         (display-buffer-same-frame, display-buffer-other-window)
9202         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
9203         (pop-to-buffer-other-window)
9204         (pop-to-buffer-same-frame-other-window)
9205         (pop-to-buffer-other-frame): Make them defuns.
9206         (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
9208 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9210         * subr.el (make-composed-keymap): Move from C.  Change calling
9211         convention, and improve docstring to bring attention to a subtle point.
9212         * minibuffer.el (completing-read-default): Adjust accordingly.
9214 2011-08-03  Michael Albinus  <michael.albinus@gmx.de>
9216         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
9217         (tramp-open-shell): Use `tramp-shell-quote-argument'.
9219         * net/trampver.el: Update release number.
9221 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9223         * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
9224         "in" (bug#9190).
9226 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9228         * mail/sendmail.el (sendmail-query-once): Restore the current
9229         buffer after querying (bug#9074).
9231         * dired.el (dired-flagged): Use different faces for marked and
9232         flagged files (bug#6117).
9234         * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
9235         (bug#4433).
9237         * ido.el (ido-mode): Switch off the message if called
9238         non-interactively.
9240         * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
9241         before 587, since it appears that that's more likely to work for
9242         more people.
9244         * cus-edit.el (custom-file): When running under emacs -q, always
9245         refuse to save the customizations, even if the .emacs file doesn't
9246         exist.
9248         * info.el: Remove the `Info-beginning-of-buffer' function
9249         (bug#8325).
9251         * net/network-stream.el (network-stream-open-starttls):
9252         Use `starttls-available-p' to see whether starttls.el can be used.
9254 2011-08-01  Martin Rudalics  <rudalics@gmx.at>
9256         * window.el (display-buffer-in-window): Don't set dedicated status
9257         of window here (Bug#9215).
9258         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9259         (display-buffer-pop-up-side-window)
9260         (display-buffer-in-side-window): Set dedicated status of window here.
9262 2011-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9264         * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
9265         before binding generated-autoload-file.
9267 2011-08-01  Deniz Dogan  <deniz@dogan.se>
9269         * net/rcirc.el (rcirc-handler-333): Clarify docstring.
9271 2011-07-30  Michael Albinus  <michael.albinus@gmx.de>
9273         Sync with Tramp 2.2.2.
9275         * net/trampver.el: Update release number.
9277 2011-07-30  Juri Linkov  <juri@jurta.org>
9279         * dired-aux.el (dired-touch-initial): Remove function.
9280         (dired-do-chxxx): For op-symbol `touch', set `initial' to the
9281         current time, and `default' to the last modification time of the
9282         current marked file (bug#6887).
9284 2011-07-28  Jose E. Marchesi  <jemarch@gnu.org>
9286         * simple.el (goto-line): Use string-to-number to provide a
9287         numeric argument to read-number (bug#9163).
9289 2011-07-27  Michael Albinus  <michael.albinus@gmx.de>
9291         * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
9292         connection process, it could be nil.
9294 2011-07-27  Leo Liu  <sdl.web@gmail.com>
9296         Simplify url handling in rcirc-mode.
9298         * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
9299         (rcirc-browse-url-at-mouse): Remove.
9300         * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
9302 2011-07-26  Alan Mackenzie  <acm@muc.de>
9304         Fontify bitfield declarations properly.
9306         * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
9307         (c-symbol-chars): Now exported as a lang variable.
9308         (c-not-primitive-type-keywords): New lang variable.
9310         * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
9311         QT keyword "more" to prevent "more slots: ...." being spuriously
9312         parsed as a bitfield declaration.
9314         * progmodes/cc-engine.el (c-beginning-of-statement-1):
9315         Refactor and enhance to handle bitfield declarations.
9316         (c-punctuation-in): New function.
9317         (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
9318         declarations properly.
9320 2011-07-26  Ulf Jasper  <ulf.jasper@web.de>
9322         * calendar/icalendar.el (icalendar--all-events): Take care of
9323         multiple vcalendars in a single file.
9324         (icalendar--convert-float-to-ical): Checkdoc fixes.
9326 2011-07-25  Deniz Dogan  <deniz@dogan.se>
9328         * image.el (insert-image): Clarifying docstring.
9330 2011-07-24  Michael Albinus  <michael.albinus@gmx.de>
9332         * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
9333         `tramp-send-command-and-check' if there is no error.
9334         (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
9336 2011-07-22  Alan Mackenzie  <acm@muc.de>
9338         Prevent cc-langs.elc being loaded at run time.
9340         * progmodes/cc-mode.el: Remove two autoload forms which loaded
9341         cc-langs.
9343         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
9344         "(require 'cc-langs)".  Quote a form so it will evaluate at
9345         (cc-mode's) compilation time.
9347 2011-07-22  Michael Albinus  <michael.albinus@gmx.de>
9349         * net/tramp.el (tramp-file-name-handler): Avoid recursive
9350         loading.  (Bug#9114)
9352 2011-07-21  Martin Rudalics  <rudalics@gmx.at>
9354         * window.el (display-buffer-pop-up-window)
9355         (display-buffer-pop-up-side-window)
9356         (display-buffer-in-side-window): Call display-buffer-set-height
9357         and display-buffer-set-width after setting the new window's
9358         buffer so `fit-window-to-buffer' and friends work on the right buffer.
9360 2011-07-20  Sam Steingold  <sds@gnu.org>
9362         * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
9363         (etags-tags-included-tables): Call `convert-standard-filename' on
9364         the file names contained in TAGS so that windows Emacs can handle
9365         TAGS files created by cygwin ctags.
9367 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9369         * proced.el (proced-update): Revert yesterday's bug#1779 patch,
9370         which apparently didn't work.
9372 2011-07-19  Roland Winkler  <winkler@gnu.org>
9374         * proced.el (proced-send-signal): For *Marked Processes* buffer
9375         put point at beginning of buffer.
9377 2011-07-19  Stephen Berman  <stephen.berman@gmx.net>
9379         * proced.el (proced-format): Make header lines align with the text
9380         (bug#1779).
9382 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9384         * view.el (view-buffer): Allow running in `special' modes if we're
9385         visiting a file (bug#8615).
9387 2011-07-19  Martin Rudalics  <rudalics@gmx.at>
9389         * window.el (display-buffer-alist-of-strings-p)
9390         (display-buffer-alist-set-1, display-buffer-alist-set-2):
9391         New functions.
9392         (display-buffer-alist-set): Rewrite to handle Emacs 23 options
9393         more accurately.
9395 2011-07-18  Alan Mackenzie  <acm@muc.de>
9397         Fontify declarators properly when, e.g., a jit-lock chunk begins
9398         inside a declaration.
9400         * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
9402         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9403         New function.
9404         (c-complex-decl-matchers): Insert reference to
9405         c-font-lock-enclosing-decls.
9407         * progmodes/cc-engine.el (c-backward-single-comment):
9408         (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
9409         to nil around calls to (forward-comment -1).
9411 2011-07-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9413         * image.el (put-image): Doc typo fix.
9415         * progmodes/etags.el (tags-search): Doc typo fix.
9417         * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
9418         password if we get errors 550 to 554.
9420 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9422         * net/gnutls.el (gnutls-log-level): Remove.
9424         * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
9425         indentation character (bug#6380).
9427         * files.el (buffer-offer-save): Made permanently local (bug#6241).
9429         * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
9430         to clarify what the problem is (bug#4291).
9432         * simple.el (current-kill): Clarify what
9433         `interprogram-paste-function' does (bug#7500).
9434         (auto-fill-mode): Document `auto-fill-function' in relation to
9435         `auto-fill-mode' (bug#2470).
9437 2011-07-16  Lawrence Mitchell  <wence@gmx.li>
9439         * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
9440         method if slot is read-only (bug#9035).
9442 2011-07-16  Martin Rudalics  <rudalics@gmx.at>
9444         * frame.el (select-frame-set-input-focus): New argument NORECORD.
9445         * window.el (pop-to-buffer): Select window used even if it was
9446         selected before, see discussion of (Bug#8615), (Bug#6954).
9447         Pass argument NORECORD on to select-frame-set-input-focus.
9449 2011-07-15  Glenn Morris  <rgm@gnu.org>
9451         * subr.el (read-char-choice): Allow quitting.  (Bug#9001)
9452         Respect help-form.
9454 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
9456         * net/gnutls.el (gnutls-min-prime-bits): New variable.
9457         (gnutls-negotiate): Use it.
9459 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9461         * net/gnutls.el (gnutls-negotiate):
9462         Upcase `gnutls-algorithm-priority'.
9464 2011-07-15  Glenn Morris  <rgm@gnu.org>
9466         * jka-compr.el (jka-compr-verbose): Move from here...
9467         * jka-cmpr-hook.el (jka-compr-verbose): ... to here.  (Bug#9090)
9468         Add missing :version tag.
9469         * info.el: No need to require jka-compr when compiling.
9471 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9473         * net/gnutls.el (gnutls-algorithm-priority): New variable.
9474         (gnutls-negotiate): Use it.
9476         * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
9478         * info.el (Info-beginning-of-buffer): New command.
9479         (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
9480         announcing `b' as the key (bug#8325).
9481         (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
9483         * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
9485         * international/mule-cmds.el
9486         (describe-specified-language-support): Make the error message
9487         clearer (bug#8905).
9489         * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
9491         * isearch.el (isearch-barrier): Add a doc string, since it's
9492         mentioned in a function doc string (bug#8678).
9494 2011-07-15  Martin Rudalics  <rudalics@gmx.at>
9496         * window.el (switch-to-buffer): Call pop-to-buffer with normalized
9497         buffer argument (Bug#9083) and self-identifying label argument.
9499 2011-07-15  Glenn Morris  <rgm@gnu.org>
9501         * emacs-lisp/debug.el (debug): Doc fix.  (Bug#8273)
9503 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9505         * man.el (Man-fontify-manpage): Fix message when formatting the
9506         man page (bug#7929).
9508 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
9510         * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
9511         argument LRM; if non-nil, append an invisible LRM character to the
9512         buffer name.
9513         (list-buffers-noselect): Call Buffer-menu-buffer+size with the
9514         last argument non-nil, when formatting buffer names.
9515         (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
9516         paragraph direction.
9518 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9520         * man.el (Man-bgproc-sentinel): Skip any arguments and only output
9521         the man page name (bug#7929).
9523         * image.el (put-image): Mention the `put-image' overlay property
9524         (bug#7834).
9526         * scroll-bar.el (set-scroll-bar-mode): Mention that
9527         `scroll-bar-mode' lists the values (bug#7772).
9529         * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
9530         command (bug#7729).
9532         * rect.el (apply-on-rectangle): Return the point after the last
9533         operation.
9534         (string-rectangle): Go to the point after the last operation
9535         (bug#7522).
9537         * printing.el (pr-toggle-region): Clarify the documentation
9538         slightly (bug#7493).
9540         * time.el (display-time-update):
9541         Allow `display-time-mail-function' to return nil (bug#7158).
9542         Fix suggested by Detlev Zundel.
9544         * vc/diff.el (diff): Clarify the order the file names are read
9545         (bug#7111).
9547         * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
9548         the doc string (bug#7015).
9550         * font-lock.el (font-lock-maximum-decoration): Mention what
9551         numeric levels mean (bug#6935).
9553         * startup.el (initial-buffer-choice): Don't mention the `none'
9554         selection, which is against policy.
9556 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
9558         * window.el (display-buffer-normalize-special):
9559         Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
9561 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
9563         * subr.el (version<, version<=, version=): Mention "-CVS" and
9564         "-12345" alpha version numbers.
9566 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
9568         * bindings.el: Add advertised binding for set-mark-command
9569         (Bug#5772).
9571 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
9573         * bindings.el (mode-line-other-buffer):
9574         * bookmark.el (bookmark-bmenu-2-window):
9575         * bs.el (bs-cycle-next, bs-cycle-previous):
9576         * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
9577         switch-to-buffer.
9579         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
9580         Delete.
9582 2011-07-14  Juanma Barranquero  <lekktu@gmail.com>
9584         * follow.el (follow-debug-message, follow-redisplay):
9585         * jka-cmpr-hook.el (with-auto-compression-mode):
9586         Fix typos in docstrings.
9588 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9590         * subr.el (with-silent-modifications): Clarify somewhat what the
9591         macro inhibits (bug#6525).
9593         * simple.el (eval-expression): Note what it does if called
9594         interactively (bug#6495).
9596 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
9598         * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
9599         Use pop-to-buffer buffer-or-name if it is nil.
9601         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9602         Remove switch-to-buffer.
9604 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9606         * files.el (make-directory): Clarify that an error will be raised
9607         if there's an error (bug#6397).
9609         * startup.el (initial-buffer-choice): Add `none' as a choice
9610         (bug#6234).
9612         * subr.el (add-hook): Clarify section about buffer-local hooks
9613         (bug#6218).
9615         * dired.el (dired-flagged): Clarify doc string (bug#6117).
9617 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
9619         * tabify.el (untabify): Preserve the current column so that point
9620         doesn't move (bug#6032).
9622 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9624         * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
9625         Rewrite to avoid awkward possessive "s" (bug#5986).
9627 2011-07-13  Glenn Morris  <rgm@gnu.org>
9629         * dired.el (dired-use-ls-dired): Doc fix.  (Bug#9039).
9630         (dired-insert-directory): Give a message the first time
9631         if ls is found not to support --dired.
9633 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9635         * simple.el (toggle-truncate-lines): Clarify what is toggled
9636         (bug#5580).  Text by Drew Adams.
9638 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
9640         * simple.el (blink-matching-open): Make the error message from the
9641         last change less verbose.
9643 2011-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
9645         * font-lock.el (font-lock-comment-face): Use the high contrast
9646         "yellow" color for font-lock-comment-face on low color terminals
9647         using a dark background color (bug#4221).
9649 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9651         * dired.el (dired-insert-set-properties): Make the doc string
9652         reflect what it does now (bug#5325).
9654         * simple.el (blink-matching-open): Say that we were unable to find
9655         the match within the limit, if we're limited (bug#5122).
9657         * international/mule-cmds.el (prefer-coding-system): Add an
9658         example (bug#4869).
9660         * progmodes/etags.el (tags-search): Document `file-list-form'
9661         (bug#4731).
9663 2011-07-13  Lawrence Mitchell  <wence@gmx.li>
9665         * net/browse-url.el (browse-url-default-browser)
9666         (browse-url-browser-function): Make the default browser choice a
9667         bit more logical (bug#4300).  Also clean up the doc string.
9669 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
9671         * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
9672         binary endings (bug#4440).
9674 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9676         * info.el (info-insert-file-contents): Inhibit jka-compr messages,
9677         which can be pretty annoying (bug#8971).
9679         * jka-compr.el (jka-compr-verbose): New variable, and use
9680         throughout (bug#8971).
9682         * info.el (Info-find-file): Fall back on the installation
9683         directory if we can't find the info node anywhere else.
9685 2011-07-13  Sergei Organov  <osv@javad.com>  (tiny change)
9687         * vc/vc.el (vc-revert-file):
9688         Don't set file time-stamp in the past.  (Bug#5181)
9690 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9692         * files.el (after-find-file): Give a better error message when
9693         trying to find a symlink that points to a file that doesn't exist
9694         (bug#4398).
9696         * progmodes/cc-vars.el: Remove (probably) misleading comment
9697         (bug#4396).
9699 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
9701         * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
9703 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
9705         * mouse-sel.el: Hack restoring functionality, while keeping
9706         compatibility with 2010-07-03 changes to mouse selection.
9707         (mouse-sel-primary-overlay): New var.
9708         (mouse-sel-selection-alist): Use it.
9709         (mouse-sel-mode): Doc fix; remove points that are default features
9710         of mouse.el.
9712 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
9714         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9715         Fix previous fix (bug#2490).
9717 2011-07-12  Roland Winkler  <winkler@gnu.org>
9719         * textmodes/bibtex.el (bibtex-initialize):
9720         Use pop-to-buffer-same-window.
9721         (bibtex-search-entries): Fix interactive call.
9723 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9725         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9726         Fontise bytecomp Error lines more correctly (bug#2490).
9727         Fix suggested by Johan Bockgård.
9729         * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
9731         * dired-x.el (dired-guess-default): Use `delete-dups'.
9733 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
9735         * dired.el (dired-mark-prompt):
9736         * dired-aux.el (dired-read-shell-command): Doc fix.
9738 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9740         * mail/sendmail.el (sendmail-query-once):
9741         Use `customize-save-variable' unconditionally, now that it works under
9742         emacs -Q.
9744         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
9746         * cus-edit.el (custom-file): Take an optional no-error variable.
9747         (customize-save-variable): Set the variable, and give a warning if
9748         running under "emacs -q".
9750 2011-07-11  Juanma Barranquero  <lekktu@gmail.com>
9752         * loadhist.el (unload-feature-special-hooks):
9753         Add `auto-coding-functions', `fill-nobreak-predicate' and
9754         `find-directory-functions' (bug#5327).
9756 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9758         * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
9760         * cus-edit.el (custom-guess-name-alist): -alist variables should
9761         use the `alist' type (bug#3120).  Suggested by Drew Adams.
9763         * printing.el: Add documentation to all the `pr-toggle-' commands.
9765 2011-07-11  Leo Liu  <sdl.web@gmail.com>
9767         * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
9768         backends where it makes sense (bug#2623).
9770 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9772         * dired-x.el (dired-guess-default): Remove duplicate shell command
9773         entries (bug#2028).
9774         (dired-guess-default): Fix grammar in doc string (bug#2028).
9775         (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
9777         * subr.el (remove-duplicates): New conveniency function.
9779 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9781         * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
9782         (bug#1526).
9784 2011-07-10  Martin Rudalics  <rudalics@gmx.at>
9786         * window.el (display-buffer-normalize-default): Don't invert
9787         meaning of even-window-heights.  Reported by Eli Zaretskii
9788         <eliz@gnu.org>.
9790 2011-07-10  Bob Rogers  <rogers@rgrjr.dyndns.org>
9792         * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
9794 2011-07-10  Chong Yidong  <cyd@stupidchicken.com>
9796         * window.el (display-buffer): Fix arguments to
9797         display-buffer-reuse-window in last change.
9799         * faces.el (link): Use a less saturated blue on light backgrounds.
9801         * startup.el (fancy-startup-text, fancy-about-text)
9802         (fancy-startup-tail): Use font-lock faces, for background safety.
9804 2011-07-09  Bob Nnamtrop  <bobnnamtrop@gmail.com>  (tiny change)
9806         * emulation/viper-cmd.el (viper-change-state-to-vi):
9807         Limit triggering of abbrev expansion (Bug#9038).
9809 2011-07-09  Martin Rudalics  <rudalics@gmx.at>
9811         * window.el (display-buffer-default-specifiers): Remove.
9812         (display-buffer-macro-specifiers): Remove default specifiers.
9813         (display-buffer-alist): Default to nil.
9814         (display-buffer-reuse-window): New optional argument other-window.
9815         (display-buffer-pop-up-window): Allow splitting internal
9816         windows.  Check whether a live window was created.
9817         (display-buffer-other-window-means-other-frame)
9818         (display-buffer-normalize-arguments): Rename to
9819         display-buffer-normalize-argument and rewrite.  Set the
9820         other-window specifier.
9821         (display-buffer-normalize-special): New function.
9822         (display-buffer-normalize-options): Rename to
9823         display-buffer-normalize-default and rewrite.
9824         (display-buffer-normalize-options-inhibit): Remove.
9825         (display-buffer-normalize-specifiers): Rewrite.
9826         (display-buffer): Process other-window specifier and call
9827         display-buffer-reuse-window with it.  Emulate Emacs 23 behavior
9828         more faithfully.
9829         (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
9830         (display-buffer-alist-set): Don't handle 'unset default values.
9831         (display-buffer-in-window, display-buffer-alist-set):
9832         Replace symbol "dedicated" by "dedicate".  Reported by Tassilo Horn
9833         <tassilo@member.fsf.org>.
9835 2011-07-09  Leo Liu  <sdl.web@gmail.com>
9837         * register.el (insert-register): Restore accidental change on
9838         2011-06-26.  (Bug#9028)
9840 2011-07-09  Glenn Morris  <rgm@gnu.org>
9842         * subr.el (remq): Handle the empty list.  (Bug#9024)
9844 2011-07-08  Andreas Schwab  <schwab@linux-m68k.org>
9846         * mail/sendmail.el (send-mail-function): No longer delay custom
9847         initialization.
9848         * custom.el (custom-initialize-delay): Doc fix.
9850 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9852         * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
9854 2011-07-08  Michael Albinus  <michael.albinus@gmx.de>
9856         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
9857         human-friendly prompt.
9859 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9861         * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
9862         provided by a particular plugin.
9864 2011-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9866         * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
9867         save customizations (with "emacs -Q"), just set the variable
9868         instead of erroring out.
9870         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
9872 2011-07-08  Juri Linkov  <juri@jurta.org>
9874         * arc-mode.el (archive-zip-expunge, archive-zip-update)
9875         (archive-zip-update-case): Use 7z if found by `executable-find'.
9876         The order of searching the available programs is the same as in
9877         `archive-zip-extract' (bug#8968).
9879 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
9881         * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
9882         (menu-bar-options-menu): Tweak descriptions.
9884 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9886         * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
9887         menu items into verb phrases (bug#1421).  Also refill to fit under
9888         80 columns.
9890 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
9892         * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
9893         (Info-read-node-name): Doc fix (Bug#1084).
9895         * thingatpt.el (forward-thing, bounds-of-thing-at-point)
9896         (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
9897         (end-of-sexp, beginning-of-sexp)
9898         (thing-at-point-bounds-of-list-at-point, forward-whitespace)
9899         (forward-symbol, forward-same-syntax, word-at-point)
9900         (sentence-at-point): Doc fix (Bug#1144).
9902 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9904         * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
9905         should cover it (bug#1281).
9907         * cus-edit.el (custom-show): Mark as obsolete.
9909         * net/network-stream.el (network-stream-open-starttls): If GnuTLS
9910         negotiation fails, then possibly try again with a non-encrypted
9911         connection (bug#9017).
9913         * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
9914         be used.
9916 2011-07-07  Richard Stallman  <rms@gnu.org>
9918         * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
9919         property, and handle its changed format.
9920         Look for the correct line number.
9921         Use file's line contents (but not past first =) to find
9922         correct line in message.
9924 2011-07-07  Kenichi Handa  <handa@m17n.org>
9926         * international/characters.el (build-unicode-category-table):
9927         Delete it.
9928         (unicode-category-table): Set it by unicode-property-table-internal.
9930         * international/mule-cmds.el (char-code-property-alist): Move to
9931         to src/chartab.c.
9932         (get-char-code-property): Call unicode-property-table-internal to
9933         load a file.  Call get-unicode-property-internal where necessary.
9934         (put-char-code-property): Call unicode-property-table-internal to
9935         load a file.  Call put-unicode-property-internal where necessary.
9936         put-unicode-property-internal where necessary.
9937         (char-code-property-description):
9938         Call unicode-property-table-internal to load a file.
9940         * international/charprop.el:
9941         * international/uni-bidi.el:
9942         * international/uni-category.el:
9943         * international/uni-combining.el:
9944         * international/uni-comment.el:
9945         * international/uni-decimal.el:
9946         * international/uni-decomposition.el:
9947         * international/uni-digit.el:
9948         * international/uni-lowercase.el:
9949         * international/uni-mirrored.el:
9950         * international/uni-name.el:
9951         * international/uni-numeric.el:
9952         * international/uni-old-name.el:
9953         * international/uni-titlecase.el:
9954         * international/uni-uppercase.el: Regenerate.
9956         * loadup.el: Load international/charprop.el before
9957         international/characters.
9959 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
9961         * window.el (next-buffer, previous-buffer): Signal an error if
9962         called from a minibuffer window.
9964         * bindings.el: Revert 2011-07-04 change.
9966 2011-07-06  Richard Stallman  <rms@gnu.org>
9968         * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
9969         (rmail-mime-insert-bulk, rmail-mime-insert-text):
9970         Treat markers like ints.
9971         (rmail-mime-entity): Doc fix.
9973 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9975         * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
9976         defcustom again for backwards compatibility.
9978         * simple.el (shell-command-on-region): Fill.
9980         * dired-aux.el (dired-kill-line): Add a doc string.
9982         * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
9983         to "\\sw\\|\\s_" (bug#358).
9985         * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
9986         (dired-unmark-backward): Ditto.
9987         (dired-flag-backup-files): Ditto.
9989         * dired-x.el (dired-mark-sexp): Ditto.
9991 2011-07-06  Richard Stallman  <rms@gnu.org>
9993         * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
9994         (rmail-mime-entity): New arg TRUNCATED.
9995         (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
9996         New functions.
9997         (rmail-mime-save): Warn if entity is truncated.
9998         (rmail-mime-toggle-hidden): Likewise, for showing.
9999         (rmail-mime-process-multipart): Record when an entity is truncated.
10001         * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
10002         if ENTITY is a string.
10004 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10006         * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
10007         of faces when `M-C-x'-ing their definitions (bug#8378).
10008         Also clean up the code slightly.
10010         * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
10011         because that makes the colors go away.
10013         * mail/sendmail.el (send-mail-function): Change the default to
10014         `sendmail-query-once'.
10015         (sendmail-query-once): Add an autoload cookie.
10017         * net/network-stream.el (network-stream-open-starttls): Try using
10018         a plain connection even if the server offered STARTTLS, and we
10019         kinda wanted to use it, if Emacs doesn't have any STARTTLS
10020         capability.  This should make smtpmail.el work in slightly more
10021         configurations.
10023 2011-07-06  Michael Albinus  <michael.albinus@gmx.de>
10025         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
10026         New defun.
10027         * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
10029 2011-07-06  Michael R. Mauger  <mmaug@yahoo.com>
10031         * progmodes/sql.el: Version 3.0
10032         (sql-product-alist): Add product :completion-object,
10033         :completion-column, and :statement attributes.
10034         (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
10035         (sql-mode-syntax-table): Mark all punctuation.
10036         (sql-font-lock-keywords-builder): Temporarily remove fallback on
10037         ansi keywords.
10038         (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
10039         (sql-mode-oracle-font-lock-keywords): Improve.
10040         (sql-oracle-show-reserved-words): New function for development.
10041         (sql-product-font-lock): Simplify for source code buffers.
10042         (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
10043         New functions.
10044         (sql-highlight-product): Set product specific syntax table.
10045         (sql-mode-map): Add statement movement functions.
10046         (sql-ansi-statement-starters, sql-oracle-statement-starters):
10047         New variable.
10048         (sql-statement-regexp, sql-beginning-of-statement)
10049         (sql-end-of-statement, sql-signum): New functions.
10050         (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
10051         (sql-show-sqli-buffer): Bug fix.
10052         (sql-interactive-mode): Store connection data as buffer local.
10053         (sql-connect): Add NEW-NAME parameter.  Redesign interaction
10054         with sql-interactive-mode.
10055         (sql-save-connection): Save buffer local settings.
10056         (sql-connection-menu-filter): Change menu entry name.
10057         (sql-product-interactive): Bug fix.
10058         (sql-preoutput-hold): New variable.
10059         (sql-interactive-remove-continuation-prompt): Bug fixes.
10060         (sql-debug-redirect): New variable.
10061         (sql-str-literal): New function.
10062         (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
10063         Redesign.
10064         (sql-oracle-save-settings, sql-oracle-restore-settings)
10065         (sql-oracle-list-all, sql-oracle-list-table): New functions.
10066         (sql-completion-object, sql-completion-column)
10067         (sql-completion-sqlbuf): New variables.
10068         (sql-build-completions-1, sql-build-completions)
10069         (sql-try-completion): New functions.
10070         (sql-read-table-name): Use them.
10071         (sql-contains-names): New buffer local variable.
10072         (sql-list-all, sql-list-table): Use it.
10073         (sql-oracle-completion-types): New variable.
10074         (sql-oracle-completion-object, sql-sqlite-completion-object)
10075         (sql-postgres-completion-object): New functions.
10077 2011-07-06  Glenn Morris  <rgm@gnu.org>
10079         * window.el (pop-to-buffer): Doc fix.
10081 2011-07-06  Markus Heiser  <markus.heiser@darmarit.de>  (tiny change)
10083         * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
10085 2011-07-06  Chong Yidong  <cyd@stupidchicken.com>
10087         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
10089         * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
10091 2011-07-05  Chong Yidong  <cyd@stupidchicken.com>
10093         * button.el (button): Inherit from link face.  Suggested by Dan
10094         Nicolaescu.
10096 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10098         * progmodes/gdb-mi.el: Fit in 80 columns.
10099         (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
10100         switch-to-buffer.
10102         * progmodes/which-func.el (which-func-ff-hook): Don't output a message
10103         if imenu is simply not configured (bug#8941).
10105 2011-07-05  Ken Manheimer  <ken.manheimer@gmail.com>
10107         * allout.el (allout-post-undo-hook): New allout outline-change
10108         event hook to signal undo activity.
10109         (allout-post-command-business): Run allout-post-undo-hook if an
10110         undo just occurred.
10111         (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
10112         * allout-widgets.el (allout-widgets-after-undo-function):
10113         Ensure the integrity of the current item's decoration after it has been
10114         in the vicinity of an undo.
10115         (allout-widgets-mode): Include allout-widgets-after-undo-function
10116         on the new allout-post-undo-hook.
10118 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10120         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
10121         Let define-derived-mode define it.
10122         * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
10123         cycles of abbrev-table inheritance (bug#8998).
10125 2011-07-05  Roland Winkler  <winkler@gnu.org>
10127         * textmodes/bibtex.el: Add support for biblatex.
10128         (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
10129         (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
10130         (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
10131         (bibtex-entry-alist, bibtex-field-alist): New variables.
10132         (bibtex-entry-field-alist): Obsolete alias for
10133         bibtex-BibTeX-entry-alist.
10134         (bibtex-entry-alist, bibtex-field-alist): New widgets.
10135         (bibtex-set-dialect): New command.
10136         (bibtex-entry-type, bibtex-entry-head)
10137         (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
10138         Bind via bibtex-set-dialect.
10139         (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
10140         (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
10141         (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
10142         (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
10143         Define via bibtex-set-dialect.
10144         (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
10145         Obey bibtex-no-opt-remove-re.
10146         (bibtex-vec-push, bibtex-vec-incr): New functions.
10147         (bibtex-format-entry, bibtex-field-list)
10148         (bibtex-print-help-message, bibtex-validate)
10149         (bibtex-search-entries): Use new format of bibtex-entry-alist.
10151 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10153         * progmodes/compile.el (compilation-goto-locus):
10154         * net/tramp-cmds.el (tramp-append-tramp-buffers):
10155         * bs.el (bs-cycle-next, bs-cycle-previous):
10156         * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
10157         * bindings.el (mode-line-other-buffer):
10158         * autoinsert.el (auto-insert):
10159         * arc-mode.el (archive-extract):
10160         * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
10162 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
10164         * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
10165         Fix check of `emacs-lock-unlockable-modes'.
10166         Coerce true values of `emacs-lock--try-unlocking' to t.
10168 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
10170         * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
10171         * emacs-lock.el: New file.
10173 2011-07-05  Julien Danjou  <julien@danjou.info>
10175         * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
10176         than `boundp' to check if face is set.
10178 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
10180         * register.el (registerv-make):
10181         * window.el (window-min-height): Fix typos in docstrings.
10183 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
10185         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
10186         Update doc string.
10188 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
10190         * server.el (server-execute): Catch quit and call
10191         `server-return-error' to pass the error back to emacsclient and
10192         close the connection (bug#8942).
10194 2011-07-04  Ken Manheimer  <ken.manheimer@gmail.com>
10196         * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
10197         insecure exception for current topic.  Also note that auto-saves
10198         are handled differently.
10200         (allout-auto-save-temporarily-disabled, allout-just-did-undo):
10201         State variables for tracking auto-save inhibition situation.
10203         (allout-write-contents-hook-handler): Rename from
10204         'allout-write-file-hook-handler', and describe how it depends on
10205         write-contents-functions sensitivity to non-nil value to prevent
10206         file write.
10208         (allout-auto-save-hook-handler): Remove.  auto-save does not check
10209         this in individual buffers, only in the starting buffer, so this
10210         is not the right way for us to inhibit auto-save in a buffer
10211         according to its condition.
10213         (allout-mode): Use new allout-write-contents-hook-handler, and
10214         only with write-contents-functions.  Remove auto-save provisions -
10215         they're implemented elsewhere.
10217         (allout-before-change-handler): If undo is in progress, note that
10218         for attention of allout-post-command-business.
10220         (allout-post-command-business): If the command we're following was
10221         an undo, check for change in the status of encrypted items and
10222         adjust auto-save inhibitions accordingly.
10224         (allout-toggle-subtree-encryption): Adjust auto-save inhibition
10225         according to whether there are or aren't any plain-text topics
10226         pending encryption.
10228         (allout-inhibit-auto-save-info-for-decryption):
10229         Adjust buffer-saved-size and some allout state to inhibit auto-saves
10230         if there are plain-text topics pending encryption.
10232         (allout-maybe-resume-auto-save-info-after-encryption): Adjust
10233         buffer-saved-size and some allout state to not inhibit auto-saves
10234         if there are no longer any plain-text topics pending encryption.
10236         (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
10237         No longer provide for exemption of the current topic.
10239 2011-07-04  Juri Linkov  <juri@jurta.org>
10241         Add 7z operations to delete and save changed members (bug#8968).
10242         * arc-mode.el (archive-7z-expunge, archive-7z-update):
10243         New defcustoms.
10244         (archive-7z-write-file-member): New function.
10245         (archive-7z-summarize): Fix the number of dashes in the
10246         listing output.
10248 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10250         * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
10251         (bug#8958).
10253 2011-07-04  Chong Yidong  <cyd@stupidchicken.com>
10255         * bindings.el: Ignore next-buffer and previous-buffer in
10256         minibuffer-local-map.
10258         * font-lock.el (font-lock-builtin-face): Change light background
10259         color to dark slate blue (Bug#6693).
10261 2011-07-04  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
10263         * progmodes/gdb-mi.el (gdb): Use completion-at-point.
10265 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10267         * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
10268         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10269         Add switch-to-buffer.
10271 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10273         * isearch.el (isearch-search-fun-function): Clarify further the
10274         meaning of the function returned.
10276 2011-07-04  Michael Albinus  <michael.albinus@gmx.de>
10278         * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
10280         * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
10281         (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
10282         Use it.
10283         (tramp-remote-path): Add "/bin" and "/usr/bin".  On busyboxes,
10284         `tramp-default-remote-path' does not exist.
10285         (tramp-send-command-and-read): New optional argument NOERROR.
10286         (tramp-open-connection-setup-interactive-shell)
10287         (tramp-get-remote-path, tramp-get-remote-stat): Use it.
10288         (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
10289         (tramp-process-sentinel): Flush also process' connection property.
10290         (tramp-sh-handle-start-file-process): Do not set process
10291         sentinel.  It is done now ...
10292         (tramp-maybe-open-connection): ... here.  (Bug#8929)
10294 2011-07-04  MON KEY  <monkey@sandpframing.com>
10296         * play/animate.el (animate-string): Doc fixes and allow changing
10297         the buffer name (bug#5417).
10299 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10301         * play/animate.el (animation-buffer-name): Rename from *animate*.
10303 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
10305         * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
10306         This is simpler and helps future-proof the code.
10307         (timer-until): Use time-subtract and float-time.
10308         (timer--time-less-p): Use time-less-p.
10310 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
10312         * type-break.el (timep): Use the value of `float-time' to avoid a
10313         byte-compiler warning.
10315         * server.el (server-eval-and-print): Return any result, even nil.
10317 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
10319         * type-break.el: Accept time formats that the builtins accept.
10320         (timep, type-break-time-difference): Accept any format that
10321         float-time accepts, rather than insisting on (HIGH LOW USECS) format.
10322         This is simpler and helps future-proof the code.
10323         (type-break-time-difference): Round rather than ignoring
10324         subseconds components.
10326 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10328         * info.el (Info-apropos-matches): Make non-interactive, since it
10329         doesn't seem to do anything useful as a command (bug#8829).
10331 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
10333         * frame.el (frame-background-mode, frame-set-background-mode):
10334         Move from faces.el.
10335         (frame-default-terminal-background): New function.
10337         * custom.el (custom-push-theme): Don't record faces in `changed'
10338         theme; this doesn't work correctly for per-frame face settings.
10339         (disable-theme): Use face-set-after-frame-default to reset faces.
10340         (custom--frame-color-default): New function.
10342 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10344         * dired.el (dired-flagging-regexp): Remove unused variable
10345         (bug#8769).
10347 2011-03-29  Kevin Ryde  <user42@zip.com.au>
10349         * progmodes/compile.el (compilation-error-regexp-alist-alist):
10350         `perl-Test2' extend to match possible "fail #N" rep count
10351         (bug#8377).
10353 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10355         * mail/feedmail.el (feedmail-buffer-to-smtpmail):
10356         `smtpmail-via-smtp' now returns the error instead of nil.
10358         * isearch.el (isearch-search-fun-function): Clarify the doc string
10359         (bug#8101).
10361 2011-07-03  Richard Kim  <emacs18@gmail.com>  (tiny change)
10363         * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
10364         unnecessary spaces (bug#8987).
10366 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10368         * net/network-stream.el (open-network-stream): Use the
10369         :end-of-capability command thoughout.
10371 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
10373         * net/network-stream.el (open-network-stream): Add the
10374         :end-of-capability command parameter, used by pop3.el.
10376 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10378         * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
10380         * fringe.el (fringe-query-style): Remove redundant text " (type ?
10381         for list)" (bug#6475).
10383         * files.el (file-expand-wildcards): Ignore non-readable
10384         sub-directories while trying to find matches instead of signaling
10385         an error (bug#6297).
10387         * man.el (Man-reference-regexp): Allow matching possible
10388         word-wrapped references (bug#6289).
10390         * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
10391         for consistency with the other vc buffers (bug#6197).
10392         (vc-checkin): Ditto.
10394         * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
10396         * longlines.el (longlines-mode): Document what ARG does (bug#6150).
10398 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10400         * custom.el (defcustom): Clarify that :set is only used in the
10401         Customize user interface (bug#6089).
10403         * progmodes/flymake.el (flymake-mode): If the buffer isn't
10404         associated with a file, refuse to run instead of erroring out
10405         (bug#6084).
10407         * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
10408         the doc string, since it appears that using `fill-column' always
10409         controls the width (bug#7845).
10411         * simple.el (shell-command-on-region): Say where the error output
10412         went if `shell-command-default-error-buffer' is set (bug#6857).
10414 2011-07-02  Ken Manheimer  <ken.manheimer@gmail.com>
10416         * allout.el (allout-yank-processing): Adjust cursor position for
10417         backwards-deleted space.
10419         (allout-rebullet-heading): Register changes with
10420         allout-exposure-changed-hook, so the modified topic is properly
10421         decorated.
10423 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10425         * minibuffer.el (completion-in-region): Document PREDICATE
10426         (bug#7136).
10428         * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
10429         of keyword/argument pairs (bug#6904).
10431         * replace.el (multi-occur):
10432         Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
10434 2011-07-02  Drew Adams  <drew.adams@oracle.com>
10436         * dired.el (dired-mark-if): Make the message about whether it's
10437         marking or unmarking clearer (bug#8523).
10439 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10441         * disp-table.el (display-table-print-array): New function.
10442         (describe-display-table): Use it to print the vectors more pretty
10443         (Bug#8859).
10445 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
10447         * window.el (window-state-get-1): Don't assign clone numbers.
10448         Add clone-of item to list of window parameters.
10449         (window-state-put-2): Don't process clone numbers.
10450         (display-buffer-alist): Fix doc-string.
10452 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
10454         * subr.el (remq): Don't allocate if it's not needed.
10455         (keymap--menu-item-binding, keymap--menu-item-with-binding)
10456         (keymap--merge-bindings): New functions.
10457         (keymap-canonicalize): Use them to refine the canonicalization.
10458         * minibuffer.el (minibuffer-local-completion-map)
10459         (minibuffer-local-must-match-map): Move initialization from C.
10460         (minibuffer-local-filename-completion-map): Move initialization from C;
10461         don't inherit from anything here.
10462         (minibuffer-local-filename-must-match-map): Make obsolete.
10463         (completing-read-default): Use make-composed-keymap to combine
10464         minibuffer-local-filename-completion-map with either
10465         minibuffer-local-must-match-map or
10466         minibuffer-local-filename-completion-map.
10468 2011-07-01  Glenn Morris  <rgm@gnu.org>
10470         * type-break.el (type-break-time-sum): Use dolist.
10472         * textmodes/flyspell.el (flyspell-word-search-backward):
10473         Replace CL function.
10475 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10477         * mouse.el (mouse--strip-first-event): New function.
10478         (function-key-map): Use it to map fringe clicks to normal clicks
10479         by default.
10481         * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
10482         (vc-bzr-revision-completion-table): Add support for annotate and date.
10484         * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
10485         inherit from parent.
10487 2011-07-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10489         * dired-aux.el (dired-diff): Doc fixup (bug#8816).
10490         (dired-show-file-type): Doc fixup (bug#8818).
10492         * dired.el (dired-mode): Fix up the doc string as suggested by
10493         Drew Adams (bug#8817).
10495         * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
10496         cookie, since the manual says that it should be possible to add
10497         this function to `find-file-hook' (bug#8709).
10499 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
10501         * progmodes/cfengine.el: Moved all cfengine3.el functionality
10502         here.  Noted Ted Zlatanov as the maintainer.
10503         (cfengine-common-settings, cfengine-common-syntax): New functions
10504         to set up common things between `cfengine-mode' and
10505         `cfengine3-mode'.
10506         (cfengine3-mode): New mode.
10507         (cfengine3-defuns cfengine3-defuns-regex
10508         (cfengine3-class-selector-regex cfengine3-category-regex)
10509         (cfengine3-vartypes cfengine3-font-lock-keywords)
10510         (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
10511         (cfengine3-indent-line): Add from cfengine3.el.
10513 2011-07-01  Michael Albinus  <michael.albinus@gmx.de>
10515         * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
10517         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
10519 2011-07-01  Martin Rudalics  <rudalics@gmx.at>
10521         * window.el (same-window-buffer-names, same-window-regexps)
10522         (same-window-p, special-display-frame-alist)
10523         (special-display-popup-frame, special-display-function)
10524         (special-display-buffer-names, special-display-regexps)
10525         (special-display-p, pop-up-frame-alist, pop-up-frame-function)
10526         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
10527         (split-window-preferred-function, split-height-threshold)
10528         (split-width-threshold, even-window-heights)
10529         (display-buffer-mark-dedicated, window-splittable-p)
10530         (split-window-sensibly, window-safely-shrinkable-p):
10531         Un-obsolete.
10532         (display-buffer): Don't spread args with function specifier
10533         because special-display-popup-frame won't like it.
10535 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
10537         Time-stamp simplifications and fixes.
10538         These improve accuracy slightly, and future-proof the code
10539         against some potential changes to current-time format.
10541         * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
10542         by using time-since and float-time.
10544         * vc/ediff-util.el (ediff-calc-command-time): Use time-since
10545         and float-time.  Say "NNN.NNN seconds" rather than "NNN seconds
10546         + NNN microseconds".
10548         * type-break.el (type-break-time-sum): Rewrite using time-add.
10550         * play/hanoi.el (hanoi-current-time-float): Remove.
10551         All uses replaced by float-time.
10553         * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
10554         This yields a more-accurate answer.
10555         (rng-time-to-float): Remove; no longer needed.
10557         * emacs-lisp/timer.el (timer-relative-time): Use time-add.
10559         * calendar/timeclock.el (timeclock-seconds-to-time):
10560         Defalias to seconds-to-time, since they're the same thing.
10562         * emacs-lisp/elp.el (elp-elapsed-time):
10563         * emacs-lisp/benchmark.el (benchmark-elapse):
10564         * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
10566 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10568         * window.el (bury-buffer): Don't iconify the only frame.
10569         (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
10570         to pop-to-buffer.  Use pop-to-buffer-same-frame if you don't like that.
10572 2011-07-01  Chong Yidong  <cyd@stupidchicken.com>
10574         * eshell/em-smart.el (eshell-smart-display-navigate-list):
10575         Add mouse-yank-primary.
10577 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
10579         * progmodes/cfengine3.el: New file to support CFEngine 3.x.
10581 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10583         * emacs-lisp/find-func.el (find-library--load-name): New fun.
10584         (find-library-name): Use it to find relative load names when provided
10585         absolute file name (bug#8803).
10587 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10589         * textmodes/flyspell.el (flyspell-word): Consider words that
10590         differ only in case as potential doublons (bug#5687).
10592         * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
10593         Remove two rather uninteresting debugging-like messages to make
10594         debbugs.el more silent.
10596         * comint.el (comint-password-prompt-regexp): Accept "Response" as
10597         a password-like phrase.
10599 2011-06-30  Masatake YAMATO  <yamato@redhat.com>
10601         * progmodes/cc-guess.el: New file.
10603         * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
10605         * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
10606         derived from `c-basic-common-init'.
10608         * progmodes/cc-mode.el (top-level): Require cc-guess.
10609         (c-basic-common-init): Use `cc-choose-style-for-mode'.
10611 2011-06-30  Lawrence Mitchell  <wence@gmx.li>
10613         * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
10615 2011-06-30  Alan Mackenzie  <acm@muc.de>
10617         * progmodes/cc-engine.el (c-guess-continued-construct):
10618         Correct the handling of template-args-cont, particularly for when font
10619         lock is disabled.  Name this case as "CASE G".
10621 2011-06-30  Ken Manheimer  <ken.manheimer@gmail.com>
10623         * allout.el (allout-yank-processing): Fix injection of extra space
10624         between bullet and non-whitespace character in first topic when
10625         pasting, ensuring that the actual spacing in the pasted topic
10626         following the bullet char is preserved.  This extra space was
10627         causing pasted encrypted topics to get a decrypted status even
10628         when the content was actually still encrypted.  Now the decryption
10629         status from before the paste is preserved.
10631         (allout-flag-region): Set all allout overlays so they evaporate
10632         when reduced to zero length (evanescent), to prevent overlay
10633         leakage.
10635 2011-06-30  Glenn Morris  <rgm@gnu.org>
10637         * w32-fns.el (w32-charset-info-alist): Declare.
10639         * find-dired.el (find-grep-options): Simplify.
10641         * term/ns-win.el (ns-set-resource): Declare.
10643         * ses.el (row, col): Declare dynamic variables honestly.
10645         * textmodes/reftex-parse.el (index-tags): Declare.
10647 2011-06-30  Chong Yidong  <cyd@stupidchicken.com>
10649         * cus-edit.el (customize-push-and-save): New function.
10651         * files.el (hack-local-variables-confirm): Use it.
10653         * custom.el (load-theme): New arg NO-CONFIRM.
10654         Use customize-push-and-save (Bug#8720).
10655         (custom-enabled-themes): Doc fix.
10657         * cus-theme.el (customize-create-theme)
10658         (custom-theme-merge-theme): Callers to load-theme changed.
10660 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10662         * thingatpt.el (thing-at-point-short-url-regexp): Require that
10663         short URLs have at least one dot in them (bug #7614).
10665         * progmodes/grep.el (rgrep): Bind `process-connection-type' to
10666         nil, because using a pty is apparently too slow (bug #895).
10668 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10670         * mail/sendmail.el (sendmail-query-once): New function.
10671         (sendmail-query-once-function): New variable.
10673 2011-06-29  Glenn Morris  <rgm@gnu.org>
10675         * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
10677         * ses.el (top-level): Require cl when compiling.
10678         (ses-set-localvars): Fix error statement.
10679         Call it at compile time to silence a storm of warnings.
10681 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
10683         * window.el (normalize-live-buffer): Rename to
10684         window-normalize-buffer.
10685         (normalize-live-frame): Rename to window-normalize-frame.
10686         (normalize-any-window): Rename to window-normalize-any-window.
10687         (normalize-live-window): Rename to window-normalize-live-window.
10688         (make-window-atom): Rename to window-make-atom.
10689         (window-resize-reset): Rename to window--resize-reset.
10690         (window-resize-reset-1): Rename to window--resize-reset-1.
10691         (resize-mini-window): Rename to window--resize-mini-window.
10692         (resize-subwindows-skip-p): Rename to
10693         window--resize-subwindows-skip-p.
10694         (resize-subwindows-normal): Rename to
10695         window--resize-subwindows-normal.
10696         (resize-subwindows): Rename to window--resize-subwindows.
10697         (resize-other-windows): Rename to window--resize-siblings.
10698         (resize-this-window): Rename to window--resize-this-window.
10699         (resize-root-window): Rename to window--resize-root-window.
10700         (resize-root-window-vertically): Rename to
10701         window--resize-root-window-vertically.
10702         (normalize-buffer-to-display): Rename to
10703         window-normalize-buffer-to-display.
10704         (normalize-buffer-to-switch-to): Rename to
10705         window-normalize-buffer-to-switch-to.
10706         Correspondingly update all callers of the functions listed
10707         above.
10708         (display-buffer-alist, display-buffer-normalize-arguments)
10709         (display-buffer-normalize-options, display-buffer)
10710         (display-buffer-alist-set): Use "function" instead of
10711         "fun-with-args".
10713 2011-06-28  Chong Yidong  <cyd@stupidchicken.com>
10715         * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
10716         addresses more clearly.  Add hyperlinks for bug-gnu-emacs and
10717         debbugs.gnu.org.  Mention acknowledgment email.
10719 2011-06-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10721         * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
10722         buffer multibyteness, since it shouldn't matter.
10724 2011-06-28  Martin Rudalics  <rudalics@gmx.at>
10726         * window.el (display-buffer-in-side-window): Handle dedicated
10727         windows as in display-buffer-reuse-window.
10728         (display-buffer-normalize-alist): Use value of override
10729         specifier.
10730         (display-buffer-normalize-specifiers): Use value of
10731         other-window-means-other-frame specifier.
10732         (display-buffer-alist): Rewrite some texts in widgets.
10733         (display-buffer): Spread arguments when calling function
10734         specified by fun-with-args.
10736 2011-06-28  Deniz Dogan  <deniz@dogan.se>
10738         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
10739         Unnest `let'.
10741         * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
10742         selectors (Bug#5732).
10743         (css-proprietary-nmstart-re): Use `regexp-opt'.
10745 2011-06-27  Jari Aalto  <jari.aalto@cante.net>
10747         * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
10748         (eshell-ls-date-format): New defcustom.
10749         (eshell-ls-file): Use it.
10751 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10753         * help-fns.el (describe-variable): Fix message for terminal-local vars.
10755 2011-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10757         * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
10758         (ange-ftp-make-tmp-name): New arg.
10759         (ange-ftp-file-local-copy): Use it.
10761 2011-06-27  Jambunathan K  <kjambunathan@gmail.com>
10763         * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
10764         no-conversion (Bug#8870).
10766 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
10768         * window.el (window-right, window-left, window-child)
10769         (window-child-count, window-last-child)
10770         (window-iso-combination-p, walk-window-tree-1)
10771         (window-atom-check-1, window-tree-1, delete-window)
10772         (window-state-get-1, display-buffer-even-window-sizes): Adapt to
10773         new naming conventions - window-vchild, window-hchild,
10774         window-next and window-prev are now called window-top-child,
10775         window-left-child, window-next-sibling and window-prev-sibling
10776         respectively.
10777         (resize-window-reset): Rename to window-resize-reset.
10778         (resize-window-reset-1): Rename to window-resize-reset-1.
10779         (resize-window): Rename to window-resize.
10780         (window-min-height, window-min-width)
10781         (resize-mini-window, resize-this-window, resize-root-window)
10782         (resize-root-window-vertically, adjust-window-trailing-edge)
10783         (enlarge-window, shrink-window, maximize-window)
10784         (minimize-window, delete-window, quit-restore-window)
10785         (split-window, balance-windows, balance-windows-area-adjust)
10786         (balance-windows-area, window-state-put-2)
10787         (display-buffer-even-window-sizes, display-buffer-set-height)
10788         (display-buffer-set-width, set-window-text-height)
10789         (fit-window-to-buffer): Rename all "resize-window" prefixed
10790         calls to use the "window-resize" prefix convention.
10791         (display-buffer-alist): Fix symbol for label specifier.
10792         (display-buffer-reuse-window): Set reuse-dedicated to cdr of
10793         corresponding specifier.
10794         Reported by Juanma Barranquero <lekktu@gmail.com>.
10796 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
10798         * ses.el (ses-destroy-cell-variable-range): Fix heading comment
10799         convention.
10800         (ses-call-printer): Does not pass an empty string to formatter when the
10801         cell is empty to keep from barking printer Calc math-format-value.
10803 2011-06-27  Richard Stallman  <rms@gnu.org>
10805         * battery.el (battery-mode-line-limit): New variable.
10806         (battery-update): Handle it.
10808         * mail/rmailmm.el (rmail-mime-process-multipart):
10809         Handle truncated messages.
10811 2011-06-27  Glenn Morris  <rgm@gnu.org>
10813         * progmodes/flymake.el (flymake-err-line-patterns):
10814         Allow for column numbers in the ant/javac pattern.  (Bug#8866)
10816 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
10818         * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
10819         (ses--clean-!, ses--clean-_): New functions.
10820         (ses-range): Add configurability of readout order, and conversion
10821         to Calc vector.
10823         * ses.el (ses-repair-cell-reference-all): New function.
10824         (ses-cell-symbol): Set macro as safe, so that it can be used in
10825         formulas.
10827         * ses.el: Update cycle detection algorithm.
10828         (ses-localvars): Add ses--Dijkstra-attempt-nb and
10829         ses--Dijkstra-weight-bound, and initial values thereof when applicable.
10830         (ses-set-localvars): New function.
10831         (ses-make-cell): Add property-list as a cell element.
10832         (ses-cell-property-get-fun, ses-cell-property-get)
10833         (ses-cell-property-delq-fun, ses-cell-property-set-fun)
10834         (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
10835         New functions.
10836         (ses-cell-property-set, ses-cell-property-pop)
10837         (ses-cell-property-get-handle): New macro.
10838         (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
10839         New aliases, used for code readability.
10840         (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
10841         cycle detection.
10842         (ses-self-reference-early-detection): New defcustom.
10843         (ses-formula-references): Robustify against self-referring cells.
10844         (ses-mode): Use ses-set-localvars.
10845         (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
10846         before lauching the update processing.
10847         (ses-initialize-Dijkstra-attempt): New function.
10848         (ses-recalculate-cell): Update for cycle detection based on
10849         Dijkstra algorithm.
10851         * ses.el: Fix commenting and indenting convention.
10853 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10855         * bs.el (bs-cycle-next): Complete last change.
10857 2011-06-27  Drew Adams  <drew.adams@oracle.com>
10859         * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
10861 2011-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10863         * net/network-stream.el (network-stream-open-starttls):
10864         Don't re-get capabilities unless we've reestablished connection.
10865         (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
10867         * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
10868         to binary to possibly avoid line encoding issues on Windows (among
10869         other things).
10871 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10873         * net/network-stream.el (open-network-stream): Return an :error
10874         saying what the problem was, if possible.
10876         * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
10877         server.
10879         * net/network-stream.el (network-stream-open-starttls): If we
10880         wanted to use STARTTLS, and the server offered it, but we weren't
10881         able to because we had no STARTTLS support, then close the connection.
10882         (open-network-stream): Return an :error element, if present.
10884 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
10886         * hl-line.el (hl-line-sticky-flag): Doc fix.
10887         (global-hl-line-sticky-flag): New option (Bug#8323).
10888         (global-hl-line-highlight): Obey it.
10890         * vc/vc.el (vc-revert-show-diff): Default to t.
10892 2011-06-26  Ken Manheimer  <ken.manheimer@gmail.com>
10894         * allout-widgets.el (allout-widgets-post-command-business):
10895         Stop decorating intermediate isearch matches.  They're not being
10896         undecorated when an isearch is continued past, and isearch
10897         automatically collapses them.  This leads to "widget leaks", where
10898         decorated items accumulate in collapsed areas.  Lines with lots of
10899         hidden widgets can slow down cursor travel, substantially.
10900         Too much complicated machinery would be needed to ensure undecoration,
10901         so we're doing without this nicety.
10903         (allout-widgets-tally-string): Don't try to do a hash-table-count
10904         of allout-widgets-tally when it's nil.  This eliminates spurious "Error
10905         during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
10906         *Messages* when allout-widgets-maintain-tally is t.
10908 2011-06-26  Martin Rudalics  <rudalics@gmx.at>
10910         * window.el (display-buffer-normalize-argument): Rename to
10911         display-buffer-normalize-arguments.  Handle special meaning of
10912         LABEL argument.  Respect special-display-function when popping up
10913         a new frame.  Fix code searching for a window showing the buffer
10914         on another frame.
10915         (display-buffer-normalize-specifiers):
10916         Call display-buffer-normalize-arguments.
10917         (display-buffer-in-window): Don't undedicate the window if its
10918         buffer remains the same.
10919         Reported by Drew Adams <drew.adams@oracle.com>.
10920         (display-buffer-alist): Add choice for same-window macro
10921         specfier.
10922         (display-buffer): Mention special meaning of LABEL argument in
10923         doc-string.  Fix quoting.  Don't pop up a new frame even as
10924         fallback.
10926 2011-06-26  Juanma Barranquero  <lekktu@gmail.com>
10928         * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
10929         avoid deleting the current window in some cases (bug#8911).
10931 2011-06-26  Andreas Schwab  <schwab@linux-m68k.org>
10933         * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
10934         (Bug#8934)
10936 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10938         * net/network-stream.el (network-stream-open-starttls):
10939         Use built-in TLS support if `gnutls-available-p' is true.
10940         (network-stream-open-tls): Ditto.
10942 2011-06-26  Leo Liu  <sdl.web@gmail.com>
10944         * register.el (registerv): New struct.
10945         (registerv-make): New function.
10946         (jump-to-register, describe-register-1, insert-register):
10947         Support the jump-func, print-func and insert-func slot of a registerv
10948         struct.  (Bug#8415)
10950 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
10952         * vc/vc.el (vc-revert-show-diff): New defcustom.
10953         (vc-diff-internal): New arg specifying diff buffer.
10954         (vc-revert): Obey vc-revert-show-diff.  If we show a diff, don't
10955         reuse an existing *vc-diff* buffer (Bug#8927).
10957         * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
10959 2011-06-26  Glenn Morris  <rgm@gnu.org>
10961         * progmodes/f90.el (f90-critical-indent): New option.
10962         (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
10963         (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
10964         (f90-mode): Doc fix.
10965         (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
10966         (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
10967         (f90-beginning-of-block, f90-next-block, f90-indent-region)
10968         (f90-match-end): Handle block, critical.
10970 2011-06-25  Glenn Morris  <rgm@gnu.org>
10972         * calendar/diary-lib.el (diary-included-files): Doc fix.
10973         (diary-include-files): New function, extracted from
10974         diary-include-other-diary-files and diary-mark-included-diary-files.
10975         (diary-include-other-diary-files, diary-mark-included-diary-files):
10976         Just call diary-include-files.
10977         (diary-mark-entries): Reset diary-included-files on first call.
10979         * calendar/diary-lib.el (diary-mark-entries)
10980         (diary-mark-included-diary-files):
10981         Visit included diary-files in temp buffers.
10983         * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
10984         (f90-blocks-re, f90-program-block-re, f90-end-block-re)
10985         (f90-start-block-re, f90-imenu-generic-expression)
10986         (f90-looking-at-program-block-start, f90-no-block-limit):
10987         Add support for submodules.
10989         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
10990         (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
10992 2011-06-25  Eli Zaretskii  <eliz@gnu.org>
10994         * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
10995         buffer-file-type before setting its value, to avoid disastrous
10996         global effects on decoding files for DOS/Windows systems.  (Bug#8780)
10998 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
11000         * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
11002         * ses.el (ses-unload-function):
11003         * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
11005         * proced.el (proced-unload-function):
11006         * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
11008 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
11010         * server.el (server-create-window-system-frame): Add parameters arg.
11011         (server-process-filter): Doc fix.  Handle frame-parameters.
11013 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
11015         Fix bug#8730, bug#8781.
11017         * loadhist.el (unload--set-major-mode): New function.
11018         (unload-feature): Use it.
11020         * progmodes/python.el (python-after-info-look): Add autoload cookie.
11021         (python-unload-function): New function.
11023 2011-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11025         * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
11027 2011-06-25  Giuseppe Scrivano  <gscrivano@gnu.org>
11029         * net/browse-url.el (browse-url-firefox-program): Add icecat to
11030         the candidates list.
11032 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
11034         * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
11036 2011-06-23  Richard Stallman  <rms@gnu.org>
11038         * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
11039         (rmail-variables): Set next-error-move-function.
11040         (rmail-what-message): Take argument POS.
11041         (rmail-next-error-move): New function.
11043 2011-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11045         * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
11046         messages for adjacent non-terminals.
11048 2011-06-23  Richard Stallman  <rms@gnu.org>
11050         * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
11051         (rmail-show-message-1): Preserve buffer modified flag.
11052         (rmail-start-mail): Don't specify use of rmail-mail-return;
11053         that's done by mail-bury now.
11054         (rmail-mail-return): Handle arg NEWBUF.
11056 2011-06-23  Michael Albinus  <michael.albinus@gmx.de>
11058         * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
11059         SIZE is a number.
11061 2011-06-23  Martin Rudalics  <rudalics@gmx.at>
11063         * window.el (get-lru-window, get-mru-window)
11064         (get-largest-window): Never return a minibuffer window.
11065         (display-buffer-pop-up-window): Fix a bug that could lead to
11066         reusing the minibuffer window.
11067         (display-buffer): Pass original specifier argument to
11068         display-buffer-function instead of the normalized one.
11069         Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
11071 2011-06-22  Leo Liu  <sdl.web@gmail.com>
11073         * minibuffer.el (completing-read-function)
11074         (completing-read-default): Move from minibuf.c
11076 2011-06-22  Richard Stallman  <rms@gnu.org>
11078         * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
11079         to Rmail even if not started by a special Rmail command.
11081         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
11082         Copy the buffer currently showing just one message.
11084 2011-06-22  Roland Winkler  <winkler@gnu.org>
11086         * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
11087         (bibtex-clean-entry): First delete the old key so that a
11088         customized algorithm for generating the new key does not get
11089         confused by the old key.
11090         (bibtex-url): Obey regexp of first step.
11091         (bibtex-search-entries): Do not use add-to-list with local
11092         list-var.
11094 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11096         * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
11097         stored a user name, then query for the password first, instead of
11098         waiting for SMTP to give an error message and the trying again.
11100 2011-06-22  Lawrence Mitchell  <wence@gmx.li>
11102         * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
11103         BUFFER in call-process.
11105 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11107         * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
11108         QUIT twice.
11109         (smtpmail-try-auth-methods): Require user name and password from
11110         auth-source.
11112 2011-06-22  Martin Rudalics  <rudalics@gmx.at>
11114         * window.el (display-buffer-default-specifiers)
11115         (display-buffer-alist): Remove entries for pop-up-frame-alist.
11116         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
11117         (split-window): Normalize SIDE argument (Bug#8916).
11119         * frame.el (pop-up-frame-alist, pop-up-frame-function)
11120         (special-display-frame-alist, special-display-popup-frame):
11121         Remove duplicate declarations.  These are now in window.el.
11123 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11125         * mail/smtpmail.el (smtpmail-via-smtp):
11126         Set :use-starttls-if-possible so that we always use STARTTLS if the
11127         server supports it.  SMTP servers that support STARTTLS commonly
11128         require it.
11130         * net/network-stream.el (network-stream-open-starttls): Support
11131         upgrading to STARTTLS always, even if we don't have built-in support.
11132         (open-network-stream): Add the :always-query-capabilities keyword.
11134         * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
11135         upgrades with `open-network-stream', and rely solely on
11136         auth-source for all credentials.  Big changes throughout the file,
11137         but in particular:
11138         (smtpmail-auth-credentials): Remove.
11139         (smtpmail-starttls-credentials): Remove.
11140         (smtpmail-via-smtp): Check for servers saying they want AUTH after
11141         MAIL FROM, too.
11143         * net/network-stream.el (network-stream-open-starttls):
11144         Provide support for client certificates both for external and built-in
11145         STARTTLS.
11146         (auth-source): Require.
11147         (open-network-stream): Document the :client-certificate keyword.
11148         (network-stream-certificate): Change cert-cert to cert and
11149         cert-key to key.
11151 2011-06-21  Michael Albinus  <michael.albinus@gmx.de>
11153         * net/tramp-cache.el (top): Don't load the persistency file when
11154         "emacs -Q" has been called.
11156 2011-06-21  Tim Harper  <timcharper@gmail.com>
11158         * term/ns-win.el (ns-initialize-window-system):
11159         Set application-specific `ApplePressAndHoldEnabled' system
11160         resource to NO as it is not yet supported by the NS port.
11162 2011-06-21  Juanma Barranquero  <lekktu@gmail.com>
11164         * misc.el (list-dynamic-libraries--refresh): Compute header here...
11165         (list-dynamic-libraries): ...not here.
11167 2011-06-21  Leo Liu  <sdl.web@gmail.com>
11169         * subr.el (sha1): Implement sha1 using secure-hash.
11171 2011-06-21  Martin Rudalics  <rudalics@gmx.at>
11173         * window.el (display-buffer-alist): In default value do not
11174         enforce searching a window on any but the selected frame.
11175         Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
11176         (display-buffer-select-window): Remove function.
11177         (display-buffer-in-window): When a window on another frame gets
11178         reused, do not select it any more but just raise its frame if
11179         necessary (Bug#8851) and (Bug#8856).
11180         (display-buffer-normalize-options): Handle pop-up-frames related
11181         options more faithfully.
11182         (pop-to-buffer): Don't rely on `display-buffer' selecting the
11183         window if it is on another frame.
11184         (display-buffer-alist, display-buffer-default-specifiers):
11185         Don't make new frame unsplittable by default.
11186         (display-buffer-normalize-argument): Fix doc-string typo and use
11187         'same-frame-other-window instead of 'other-window when associating
11188         with display-buffer-macro-specifiers.
11190 2011-06-21  Vincent Belaïche  <vincent.b.1@hotmail.fr>
11192         * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
11193         New functions.
11194         (5x5-mode-map, 5x5-mode-menu): Bind them.
11195         (5x5-draw-grid): Tweak the solver's rendering.
11197 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11199         * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
11200         `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
11202 2011-06-21  Drew Adams  <drew.adams@oracle.com>
11204         * menu-bar.el: Use function variable instead of switch-to-buffer.
11205         (menu-bar-select-buffer-function): New variable.
11206         (menu-bar-update-buffers): Use it (bug#8876).
11208 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11210         * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
11211         variable's status.
11213 2011-06-20  Jan Djärv  <jan.h.d@swipnet.se>
11215         * x-dnd.el (x-dnd-version-from-flags)
11216         (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
11217         and long as number (Bug#8899).
11218         (x-dnd-handle-xdnd): Call functions above (Bug#8899).
11220 2011-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11222         * minibuffer.el (completion-metadata): Add `metadata' to the alist.
11223         (completion-try-completion, completion-all-completions): Compute the
11224         metadata argument if it's missing; make it optional (bug#8795).
11226         * wid-edit.el: Use lex-bind and move towards completion-at-point.
11227         (widget-complete): Use new :completion-function property.
11228         (widget-completions-at-point): New function.
11229         (default): Use :completion-function instead of :complete.
11230         (widget-default-completions): Rename from widget-default-complete;
11231         Rewrite.
11232         (widget-string-complete, widget-file-complete, widget-color-complete):
11233         Remove functions.
11234         (file, symbol, function, variable, coding-system, color):
11235         * international/mule-cmds.el (default-input-method, charset)
11236         (language-info-custom-alist):
11237         * cus-edit.el (face): Use new property :completions.
11239         * progmodes/pascal.el (pascal-completions-at-point): New function.
11240         (pascal-mode): Use it.
11241         (pascal-mode-map): Use completion-at-point.
11242         (pascal-toggle-completions): Make obsolete.
11243         (pascal-complete-word, pascal-show-completions):
11244         * progmodes/octave-mod.el (octave-complete-symbol):
11245         Redefine as obsolete alias.
11246         * progmodes/octave-inf.el (inferior-octave-completion-at-point):
11247         Signal absence of completion info for old Octave,
11248         (inferior-octave-complete): Redefine as obsolete alias.
11249         * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
11250         (meta-completions-at-point): Rename from meta-complete-symbol and
11251         adapt it for use on completion-at-point-functions.
11252         (meta-common-mode): Use it.
11253         (meta-looking-at-backward, meta-match-buffer): Remove.
11254         (meta-complete-symbol): Redefine as obsolete alias.
11255         (meta-common-mode-map): Use completion-at-point.
11256         * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
11257         (makefile-mode-map): Use completion-at-point.
11258         (makefile-completions-at-point): Rename from makefile-complete and
11259         adapt it for use on completion-at-point-functions.
11260         (makefile-mode): Use it.
11261         (makefile-complete): Redefine as obsolete alias.
11263 2011-06-20  Deniz Dogan  <deniz@dogan.se>
11265         * net/rcirc.el: Delete trailing whitespaces once and for all.
11267 2011-06-20  Daniel Colascione  <dan.colascione@gmail.com>
11269         * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
11271 2011-06-19  Chong Yidong  <cyd@stupidchicken.com>
11273         * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
11275         * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
11277 2011-06-19  Martin Rudalics  <rudalics@gmx.at>
11279         * window.el (display-buffer-other-window-means-other-frame):
11280         Call display-buffer-normalize-alist.
11281         (display-buffer-normalize-specifiers-1): Rename to
11282         display-buffer-normalize-argument.  New argument other-frame.
11283         Rewrite.
11284         (display-buffer-normalize-specifiers-2): Rename to
11285         display-buffer-normalize-options.
11286         (display-buffer-normalize-alist-1): New function.
11287         (display-buffer-normalize-specifiers-3): Rename to
11288         display-buffer-normalize-alist.
11289         Call display-buffer-normalize-alist-1.
11290         (display-buffer-normalize-options-inhibit): New variable.
11291         (display-buffer-normalize-specifiers): Rewrite calling
11292         display-buffer-normalize-alist,
11293         display-buffer-normalize-argument, and
11294         display-buffer-normalize-options.  Don't call the latter if
11295         display-buffer-normalize-options-inhibit is non-nil.
11296         (frame-auto-delete): New option.
11297         (window-deletable-p): Use frame-auto-delete.
11298         (window-list-no-nils, window-state-ignored-parameters)
11299         (window-state-get-1, window-state-get, window-state-put-list)
11300         (window-state-put-1, window-state-put-2, window-state-put):
11301         New functions.
11302         (display-buffer-normalize-options): Move special-display-p group
11303         after pop-up-frame group (Bug#8851) and (Bug#8856).
11305 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
11307         * emacs-lisp/rx.el (rx-constituents): Add support for numbered
11308         groups (Bug#8776).
11309         (rx-submatch-n): New function.
11310         (rx): Document it.
11312         * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
11313         (Bug#8768).
11315         * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
11317         * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
11319         * cus-face.el (custom-declare-face): Call custom-theme-recalc face
11320         anytime existing face settings are present (Bug#8889).
11322         * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
11323         (delphi-mode): Use define-derived-mode to inherit from prog-mode.
11324         Remove unused argument.
11326 2011-06-18  Martin Rudalics  <rudalics@gmx.at>
11328         * window.el (display-buffer-default-specifiers):
11329         Remove pop-up-frame.  Add pop-up-window-min-height,
11330         pop-up-window-min-width, and another reuse-window specifier
11331         (Bug#8882).  Reported by Dan Nicolaescu <dann@gnu.org>.
11332         (display-buffer-normalize-specifiers-2):
11333         Handle split-height-threshold and split-width-threshold also when
11334         pop-up-windows is unset.  Add a reuse-window specifier for the
11335         case popping up a new window fails.
11336         (special-display-popup-frame): Remove double quoting.
11337         (display-buffer-normalize-specifiers-1): Fix thinko.
11339 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11341         * shell.el (shell-completion-vars): Set pcomplete-termination-string
11342         according to comint-completion-addsuffix.
11344         * pcomplete.el: Convert to lexical binding and fix bug#8819.
11345         (pcomplete-suffix-list): Mark as obsolete.
11346         (pcomplete-completions-at-point): Capture pcomplete-norm-func and
11347         pcomplete-seen in the closure.
11348         (pcomplete-comint-setup): Setup completion-at-point as well.
11349         (pcomplete--entries): New function.
11350         (pcomplete--env-regexp): New var.
11351         (pcomplete-entries): Rewrite to work with partial-completion and
11352         without relying on pcomplete-suffix-list.
11353         (pcomplete-pare-list): Remove, unused.
11355 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
11357         * window.el (display-buffer-alist): Set pop-up-window-min-height
11358         and pop-up-window-min-width in default value.  Reported by
11359         Thierry Volpiatto <thierry.volpiatto@gmail.com>.  New specifier
11360         other-window-means-other-frame.
11361         (display-buffer-macro-specifiers): Comment out entry for
11362         other-window specifier.
11363         (display-buffer-other-window-means-other-frame): New function.
11364         (display-buffer-normalize-specifiers-1): New arguments
11365         buffer-name and label.  Treat other-window case specially.
11366         (display-buffer-normalize-specifiers-2): Treat other-window case
11367         specially.
11368         (display-buffer-normalize-specifiers-3): New function.
11369         (display-buffer-normalize-specifiers):
11370         Call display-buffer-normalize-specifiers-3.
11372 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
11374         * window.el (same-window-p): Fix two typos introduced when
11375         adding with-no-warnings.
11376         (display-buffer-normalize-specifiers-1): Don't check
11377         pop-up-frames for 'unset initialization.
11378         (display-buffer-normalize-specifiers-2): Major rewrite using
11379         special-display-p and same-window-p (Bug#8851) and (Bug#8856).
11380         (pop-up-frames, display-buffer-reuse-frames)
11381         (display-buffer-mark-dedicated): Don't initialize to 'unset.
11382         Suggested by David Engster <deng@randomsample.de>.
11383         (even-window-heights): Initialize to 'unset.
11384         (display-buffer-alist-set): Handle new 'unset initializations.
11385         (display-buffer-macro-specifiers): Don't pop up a new frame in the
11386         other window case.
11388 2011-06-16  Martin Rudalics  <rudalics@gmx.at>
11390         * window.el (display-buffer-normalize-specifiers-1):
11391         Respect current value of pop-up-frames for most reasonable values of
11392         second argument of display-buffer (Bug#8865).
11393         (switch-to-buffer-same-frame, switch-to-buffer-other-window)
11394         (switch-to-buffer-other-window-same-frame)
11395         (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
11396         Adams (Bug#8875).
11397         (display-buffer): Don't check noninteractive when calling
11398         display-buffer-pop-up-frame.
11399         (display-buffer-pop-up-frame): Never pop up a frame in
11400         noninteractive mode (Bug#8857).
11401         (enlarge-window, shrink-window): Don't report an error when the
11402         window can't be resized as requested (Bug#8862).
11404 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11406         * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
11408         * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
11410         * abbrev.el (define-abbrev-table): Don't add a table multiple times.
11412 2011-06-15  Alan Mackenzie  <acm@muc.de>
11414         * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
11415         for declarators, disable knr checking to speed up for normal files.
11416         2: Refactor, replacing a sequence of nested if forms by a cond form.
11418 2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11420         * net/network-stream.el (open-network-stream): Add the keyword
11421         :always-query-capabilities for the case where you want to force a
11422         `plain' network connection, but the protocol still requires the
11423         capabilitiy command (i.e., SMTP and EHLO).
11425         * subr.el (process-live-p): Rename from `process-alive-p' for
11426         consistency with other `-live-p' functions.
11428 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11430         * window.el (same-window-buffer-names, same-window-regexps)
11431         (special-display-frame-alist, special-display-popup-frame)
11432         (special-display-function, special-display-buffer-names)
11433         (special-display-regexps, pop-up-frame-alist)
11434         (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
11435         (pop-up-windows, split-window-preferred-function)
11436         (split-height-threshold, split-width-threshold, even-window-heights)
11437         (display-buffer-mark-dedicated): Don't encourage the use of
11438         display-buffer-alist from Elisp code.
11440 2011-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
11442         * progmodes/python.el (python-mode): Derive from prog-mode.
11443         * progmodes/ps-mode.el (ps-mode):
11444         * progmodes/mixal-mode.el (mixal-mode):
11445         * progmodes/cfengine.el (cfengine-mode):
11446         * progmodes/ld-script.el (ld-script-mode): Likewise.
11448 2011-06-15  Martin Rudalics  <rudalics@gmx.at>
11450         * window.el (display-buffer-alist): Trim default value to avoid
11451         popping up a new frame (Bug#8857) or reusing an arbitrary window
11452         on another frame.
11453         (display-buffer): Do not fall back on popping up a new frame in
11454         batch mode (Bug#8857).
11456 2011-06-14  Chong Yidong  <cyd@stupidchicken.com>
11458         * cus-theme.el (describe-theme-1): Use custom-theme-p.
11459         (custom-theme-summary): New function.
11460         (customize-themes): Use it.
11462 2011-06-13  Glenn Morris  <rgm@gnu.org>
11464         * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
11466 2011-06-13  Martin Rudalics  <rudalics@gmx.at>
11468         * help.el (help-window): Remove variable.
11469         (help-window-point-marker, temp-buffer-max-height)
11470         (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
11471         (help-print-return-message): Don't set help-window.
11472         (resize-temp-buffer-window): Rewrite cod eand doc-string.
11473         (help-window-setup-finish): Remove.
11474         (help-window-display-message, help-window-setup)
11475         (with-help-window): Major rewrite based on new
11476         display-buffer-window variable.
11478         * help-mode.el (help-mode-finish): Remove help-window related
11479         code.
11481         * view.el (view-exits-all-viewing-windows): Remove reference to
11482         view-return-to-alist in doc-string.
11483         (view-return-to-alist): Make obsolete.
11484         (view-buffer): Call pop-to-buffer-same-window and remove
11485         undo-window code.
11486         (view-buffer-other-window): Call pop-to-buffer-other-window and
11487         simplify code.  Ignore second argument.
11488         (view-buffer-other-frame): Call pop-to-buffer-other-frame and
11489         simplify code.  Ignore second argument.
11490         (view-return-to-alist-update): Make obsolete.
11491         (view-mode-enter): Rename second argument to QUIT-RESTORE.
11492         Rewrite using quit-restore window parameters.
11493         (view-mode-exit): Rename second argument to EXIT-ONLY.
11494         Rewrite using quit-restore-window.
11495         (View-exit, View-exit-and-edit, View-leave, View-quit)
11496         (View-quit-all, View-kill-and-leave): Call view-mode-exit with
11497         appropriate arguments.
11498         (view-end-message): Use quit-restore window parameter.
11500         * window.el (display-buffer-function): Rewrite doc-string.
11501         (display-buffer-window, display-buffer-alist): New variables.
11502         (display-buffer-split-specifiers)
11503         (display-buffer-side-specifiers)
11504         (display-buffer-macro-specifiers): New constants.
11505         (display-buffer-even-window-sizes, display-buffer-set-height)
11506         (display-buffer-set-width, display-buffer-select-window)
11507         (display-buffer-in-window, display-buffer-reuse-window)
11508         (display-buffer-split-window-1, display-buffer-split-window)
11509         (display-buffer-split-atom-window, display-buffer-pop-up-window)
11510         (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
11511         (display-buffer-in-side-window, normalize-buffer-to-display)
11512         (display-buffer-normalize-specifiers-1)
11513         (display-buffer-normalize-specifiers-2)
11514         (display-buffer-normalize-specifiers, display-buffer-frame):
11515         New functions.
11516         (display-buffer): Major rewrite.
11517         (display-buffer-other-window, display-buffer-other-frame)
11518         (pop-to-buffer, switch-to-buffer-other-window)
11519         (switch-to-buffer-other-frame): Rewrite.
11520         (display-buffer-same-window, display-buffer-same-frame)
11521         (display-buffer-same-frame-other-window)
11522         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
11523         (pop-to-buffer-other-window)
11524         (pop-to-buffer-same-frame-other-window)
11525         (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
11526         (switch-to-buffer-other-window-same-frame): New functions.
11527         (same-window-p, special-display-p): Rewrite disabling warnings.
11528         Make obsolete.
11529         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11530         (display-buffer-mark-dedicated): Initialize to symbol 'unset.
11531         Make obsolete
11532         (same-window-buffer-names, same-window-regexps)
11533         (special-display-frame-alist, special-display-popup-frame)
11534         (special-display-function, special-display-buffer-names)
11535         (special-display-regexps, pop-up-frame-alist)
11536         (pop-up-frame-function, split-window-preferred-function)
11537         (split-height-threshold, split-width-threshold)
11538         (even-window-heights): Make obsolete.
11540 2011-06-12  Glenn Morris  <rgm@gnu.org>
11542         * term/xterm.el (terminal-init-xterm): `version' may be nil.  (Bug#8838)
11543         Misc simplifications.
11545 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
11547         * window.el (window-safely-shrinkable-p): Restore function which
11548         was inadvertently removed in change from 2011-06-11.  Declare as
11549         obsolete.
11551         * calendar/calendar.el (calendar-generate-window):
11552         Use window-iso-combined-p instead of combination of one-window-p and
11553         window-safely-shrinkable-p.
11555 2011-06-12  Glenn Morris  <rgm@gnu.org>
11557         * progmodes/fortran.el (fortran-mode-syntax-table):
11558         * progmodes/f90.el (f90-mode-syntax-table):
11559         Set % to punctuation.  (Bug#8820)
11560         (f90-find-tag-default): Remove, no longer needed.
11562 2011-06-12  Daniel Colascione  <dan.colascione@gmail.com>
11564         * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
11566 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
11568         * image.el (image-animated-p): Return animation delay in seconds.
11569         Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
11570         (image-animate-timeout): Remove DELAY argument.  Don't assume
11571         every subimage has the same delay; get it from image-animated-p.
11572         (image-animate): Caller changed.
11574 2011-06-11  Michael Albinus  <michael.albinus@gmx.de>
11576         * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
11577         to ignored backtrace functions.
11579 2011-06-11  Glenn Morris  <rgm@gnu.org>
11581         * calendar/appt.el (appt-disp-window-function): Doc fix.
11582         (appt-check): Handle overlapping appointments.  (Bug#8337)
11584 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
11586         * window.el (window-tree-1, window-tree): New functions, moving
11587         the latter to window.el.
11588         (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
11589         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
11590         (bw-refresh-edges): Remove.
11591         (balance-windows-1, balance-windows-2): New functions.
11592         (balance-windows): Rewrite in terms of window tree functions,
11593         balance-windows-1 and balance-windows-2.
11594         (bw-adjust-window): Remove.
11595         (balance-windows-area-adjust): New function with functionality of
11596         bw-adjust-window but using resize-window.
11597         (set-window-text-height): Rewrite doc-string.
11598         Use normalize-live-window and resize-window.
11599         (enlarge-window-horizontally, shrink-window-horizontally):
11600         Rename argument to DELTA.
11601         (window-buffer-height): New function.
11602         (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
11603         Rewrite using new window resize routines.
11604         (kill-buffer-and-window, mouse-autoselect-window-select):
11605         Use ignore-errors instead of condition-case.
11606         (quit-window): Call delete-frame instead of delete-windows-on
11607         for the only buffer on frame.
11609 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
11611         * loadup.el (top-level): Load window before files for the sake
11612         of replace-buffer-in-windows.
11614         * files.el (read-buffer-to-switch)
11615         (switch-to-buffer-other-window)
11616         (switch-to-buffer-other-frame, display-buffer-other-frame):
11617         Move to window.el.
11619         * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
11620         (previous-buffer): Move to window.el.
11622         * bindings.el (unbury-buffer): Move to window.el.
11624         * window.el (delete-other-windows-vertically): Move after
11625         definition of delete-other-windows.
11626         (other-window, delete-windows-on, replace-buffer-in-windows):
11627         Move here from window.c.
11628         (record-window-buffer, unrecord-window-buffer)
11629         (set-window-buffer-start-and-point, switch-to-prev-buffer)
11630         (switch-to-next-buffer): New functions.
11631         (get-next-valid-buffer, last-buffer, next-buffer): Move here
11632         from simple.el.  Call switch-to-next-buffer.
11633         (previous-buffer): Move here from simple.el.
11634         Call switch-to-prev-buffer.
11635         (bury-buffer): Move here from buffer.c.  Switch to previous
11636         buffer when window cannot be deleted.
11637         (unbury-buffer): Move here from bindings.el.
11638         (ctl-x-map): Move binding for other-window from window.c to
11639         here.
11640         (read-buffer-to-switch, switch-to-buffer-other-window)
11641         (switch-to-buffer-other-frame): Move here from files.el.
11642         (normalize-buffer-to-switch-to): New functions.
11643         (switch-to-buffer): Move here from buffer.c.
11644         Use read-buffer-to-switch and normalize-buffer-to-switch-to.
11646 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
11648         * window.el (window-min-height, window-min-width): Move here
11649         from window.c.  Add defcustoms and rewrite doc-strings.
11650         (resize-mini-window, resize-window): New functions.
11651         (adjust-window-trailing-edge, enlarge-window, shrink-window):
11652         Move here from window.c.
11653         (maximize-window, minimize-window): New functions.
11654         (delete-window, delete-other-windows, split-window): Move here
11655         from window.c.
11656         (window-split-min-size): New function.
11657         (split-window-keep-point): Mention split-window-above-each-other
11658         instead of split-window-vertically.
11659         (split-window-above-each-other, split-window-vertically):
11660         Rename split-window-vertically to split-window-above-each-other
11661         and provide defalias for old definition.
11662         (split-window-side-by-side, split-window-horizontally):
11663         Rename split-window-horizontally to split-window-side-by-side
11664         and provide defalias for the old definition.
11665         (ctl-x-map): Move bindings for delete-window,
11666         delete-other-windows and enlarge-window here from window.c.
11667         Replace bindings for split-window-vertically and
11668         split-window-horizontally by bindings for
11669         split-window-above-each-other and split-window-side-by-side.
11671         * cus-start.el (all): Remove entries for window-min-height and
11672         window-min-width.  Add entries for window-splits and
11673         window-nest.
11675 2011-06-09  Glenn Morris  <rgm@gnu.org>
11677         * calendar/appt.el (appt-mode-line): New function.
11678         (appt-check, appt-disp-window): Use it.
11680         * files.el (hack-one-local-variable-eval-safep):
11681         Allow minor-modes with explicit +/-1 arguments.
11683 2011-06-09  Teodor Zlatanov  <tzz@lifelogs.com>
11685         * term/xterm.el (xterm): Add defgroup.
11686         (xterm-extra-capabilities): Add defcustom to supply known xterm
11687         capabilities, skip querying them, or query them (default).
11688         (terminal-init-xterm): Use it.
11689         (terminal-init-xterm-modify-other-keys): New function to set up
11690         modifyOtherKeys support to simplify `terminal-init-xterm'.
11692 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
11694         * window.el (resize-window-reset, resize-window-reset-1)
11695         (resize-subwindows-skip-p, resize-subwindows-normal)
11696         (resize-subwindows, resize-other-windows, resize-this-window)
11697         (resize-root-window, resize-root-window-vertically)
11698         (window-deletable-p, window-or-subwindow-p)
11699         (frame-root-window-p): New functions.
11701 2011-06-09  Glenn Morris  <rgm@gnu.org>
11703         * net/ange-ftp.el (ange-ftp-switches-ok): New function.
11704         (ange-ftp-get-files): Use it.
11706 2011-06-09  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
11708         * mail/sendmail.el (mail-recover-1, mail-recover):
11709         * files.el (recover-file, recover-session):
11710         Handle dired-listing-switches not being just a single short option.
11712 2011-06-09  Glenn Morris  <rgm@gnu.org>
11714         * calendar/appt.el (appt-display-message, appt-disp-window):
11715         Handle lists of appointments.
11717 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
11719         * window.el (one-window-p): Move down in code.
11720         Rewrite doc-string.
11721         (window-current-scroll-bars): Rewrite doc-string.
11722         Normalize live window argument.
11723         (walk-windows, get-window-with-predicate, count-windows):
11724         Rewrite doc-string.  Use window-list-1.
11725         (window-in-direction-2, window-in-direction, get-mru-window):
11726         New functions.
11728 2011-06-08  Reuben Thomas  <rrt@sc3d.org>
11730         * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
11731         Doc fix (Bug#8713).
11733 2011-06-08  Chong Yidong  <cyd@stupidchicken.com>
11735         * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
11737 2011-06-08  Juanma Barranquero  <lekktu@gmail.com>
11739         * loadhist.el (unload-feature-special-hooks):
11740         Add `comint-output-filter-functions'.
11742 2011-06-08  Ivan Kanis  <gnu@kanis.fr>
11744         * calendar/appt.el (appt-check): Move some initializations into the let.
11746 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
11748         * window.el (window-height): Defalias to window-total-height.
11749         (window-width): Defalias to window-body-width.
11751 2011-06-07  Chong Yidong  <cyd@stupidchicken.com>
11753         * image-mode.el (image-toggle-animation): New command.
11754         (image-mode-map): Bind it to RET.
11755         (image-mode): Update message.
11756         (image-toggle-display-image): Avoid a spurious cache flush.
11757         (image-transform-rotation): Doc fix.
11758         (image-transform-properties): Return quickly in the normal case.
11759         (image-animate-loop): Rename from image-animate-max-time.
11761         * image.el (image-animate-max-time): Move to image-mode.el.
11762         (create-animated-image): Remove unnecessary function.
11763         (image-animate): Rename from image-animate-start.  New arg.
11764         (image-animate-stop): Remove; just use image-animate-timer.
11765         (image-animate-timer): Use car-safe.
11766         (image-animate-timeout): Rename argument.
11768 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
11770         * window.el (get-lru-window, get-largest-window): Move here from
11771         window.c.  Rename first argument to ALL-FRAMES.
11772         Rephrase doc-strings.
11773         (get-buffer-window-list): Rewrite using window-list-1.
11774         Rephrase doc-string.
11775         (window-safe-min-height, window-safe-min-width): New constants.
11776         (window-size-ignore, window-min-size, window-min-size-1)
11777         (window-sizable, window-sizable-p, window-size-fixed-1)
11778         (window-size-fixed-p, window-min-delta-1, window-min-delta)
11779         (window-max-delta-1, window-max-delta, window-resizable)
11780         (window-resizable-p, window-total-height, window-total-width)
11781         (window-body-width): New functions.
11782         (window-full-height-p, window-full-width-p): Rewrite using
11783         window-total-size.
11784         (window-body-height): Rewrite using window-body-size.
11786 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
11788         * window.el (window-right, window-left, window-child)
11789         (window-child-count, window-last-child, window-any-p)
11790         (normalize-live-buffer, normalize-live-frame)
11791         (normalize-any-window, normalize-live-window)
11792         (window-iso-combination-p, window-iso-combined-p)
11793         (window-iso-combinations)
11794         (walk-window-tree-1, walk-window-tree, walk-window-subtree)
11795         (windows-with-parameter, window-with-parameter)
11796         (window-atom-root, make-window-atom, window-atom-check-1)
11797         (window-atom-check, window-side-check, window-check):
11798         New functions.
11799         (ignore-window-parameters, window-sides, window-sides-vertical)
11800         (window-sides-slots): New variables.
11801         (window-size-fixed): Move down in code.  Minor doc-string fix.
11803 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
11805         * comint.el (comint-dynamic-complete-as-filename)
11806         (comint-dynamic-complete-filename): Correctly call
11807         completion-in-region.
11809 2011-06-05  Deniz Dogan  <deniz@dogan.se>
11811         * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
11812         in last change.
11814 2011-06-05  Deniz Dogan  <deniz@dogan.se>
11816         * net/rcirc.el (rcirc-prompt-for-encryption): New function.
11817         (rcirc): Use it to prompt for encryption.
11819 2011-06-05  Roland Winkler  <winkler@gnu.org>
11821         * textmodes/bibtex.el (bibtex-search-buffer): New variable.
11822         (bibtex-search-entries): New command bound to C-c C-a.
11823         (bibtex-display-entries): New function.
11825 2011-06-05  Roland Winkler  <winkler@gnu.org>
11827         * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
11828         (bibtex-insert-kill): After yanking insert newline if necessary.
11829         (bibtex-initialize): Call bibtex-string-files-init only once.
11830         (bibtex-mode): Do not call easy-menu-add.
11831         (bibtex-validate-globally): Use save-excursion in bibtex buffers.
11832         (bibtex-yank): Set arg properly if nil.
11834 2011-06-05  Roland Winkler  <winkler@gnu.org>
11836         * textmodes/bibtex.el (bibtex-search-entry-globally):
11837         New variable.
11838         (bibtex-search-entry): Use it.
11840 2011-06-05  Roland Winkler  <winkler@gnu.org>
11842         * textmodes/bibtex.el (bibtex-entry-format): New option
11843         sort-fields.
11844         (bibtex-format-entry, bibtex-reformat): Honor this option.
11845         (bibtex-parse-entry): Return fields in proper order.
11847 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
11849         * doc-view.el (doc-view-remove-if): Move computation of result out
11850         of `dolist' to silence misleading lexical-binding warning.
11852 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
11854         * emacs-lisp/timer.el (timer-activate): Remove unused arg.
11855         (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
11857 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
11859         * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
11860         "SunOS 5.10".
11862 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
11864         * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
11865         (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
11866         (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
11867         (tramp-parse-putty):
11868         * net/tramp-sh.el (tramp-completion-function-alist-rsh)
11869         (tramp-completion-function-alist-ssh)
11870         (tramp-completion-function-alist-telnet)
11871         (tramp-completion-function-alist-su)
11872         (tramp-completion-function-alist-putty): Set `tramp-autoload'
11873         cookie.
11875         * net/tramp-ftp.el:
11876         * net/tramp-sh.el:
11877         * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
11878         load "tramp.el" `tramp-set-completion-function'.
11880 2011-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11882         * shell.el: Require and use pcomplete.
11883         (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
11884         (shell-completion-vars): Set pcomplete-default-completion-function.
11886 2011-06-04  Deniz Dogan  <deniz@dogan.se>
11888         * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
11889         `memq' (Bug#8799).
11891 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11893         * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
11895 2011-06-02  Juanma Barranquero  <lekktu@gmail.com>
11897         * bs.el (bs--mark-unmark, bs--nth-wrapper):
11898         * mpc.el (mpc-select-extend, mpc-songpointer-context):
11899         * vc/log-view.el (log-view-beginning-of-defun):
11900         * vc/smerge-mode.el (smerge-apply-resolution-patch)
11901         (smerge-refine-forward, smerge-refine-chopup-region):
11902         Silence warning for unused `dotimes' counter variables.
11904 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11906         * net/tramp.el (tramp-with-progress-reporter): Rename from
11907         with-progress-reporter.  Use `declare'.
11908         * net/tramp-smb.el:
11909         * net/tramp-sh.el:
11910         * net/tramp-gvfs.el: Update all uses.
11912 2011-06-02  Jay Belanger  <jay.p.belanger@gmail.com>
11914         * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
11915         buffer isn't killed before making it current.
11917 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11919         Silence various byte-compiler warnings.
11920         * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
11921         `access-type' and new obsolescence format.
11922         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
11923         new format.
11924         (byte-compile-check-variable): New `access-type' argument.
11925         Only warn if the access-type is obsolete.
11926         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
11927         (byte-compile-variable-set): Adjust callers.
11928         * help-fns.el (describe-variable): Adjust to new obsolescence format.
11929         * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
11930         setting it as obsolete.
11931         * simple.el (minibuffer-completing-symbol):
11932         * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
11933         access as obsolete.
11934         * minibuffer.el (minibuffer-completing-file-name): Don't make it
11935         obsolete yet.
11936         * international/quail.el (quail-mouse-choose-completion): Remove unused
11937         code referring to obsolete var.
11938         (quail-choose-completion-string): Remove.
11939         * server.el (server-clients-with, server-kill-buffer-query-function)
11940         (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
11941         * proced.el (proced-send-signal):
11942         * emacs-lisp/lisp.el (lisp-complete-symbol):
11943         Replace completion-annotate-function with completion-extra-properties.
11945 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11947         * simple.el (goto-line): Use read-number.
11948         (overriding-map-is-bound): Remove.
11949         (saved-overriding-map): Change default.
11950         (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
11951         Take the map as argument.
11952         (universal-argument, negative-argument, digit-argument): Use it.
11953         (restore-overriding-map): Adjust.
11954         (do-auto-fill): Use fill-forward-paragraph.
11955         (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
11957         * minibuffer.el (minibuffer-inactive-mode-map): New var.
11958         (minibuffer-inactive-mode): New major mode.
11959         * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
11960         the *Messages* buffer" hack.
11961         (mouse-popup-menubar): Don't burp if the event is a normal key.
11963         Miscellaneous tweaks.
11964         * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
11965         lexical scoping as in subr.el's dolist and dotimes.
11966         * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
11967         Silence compiler warning.
11968         * thingatpt.el (forward-whitespace): Trivial coding style fix.
11969         * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
11970         * international/ccl.el (ccl-compile): Trivial simplification.
11971         * help-fns.el (help-do-arg-highlight): Silence compiler warning.
11972         * emacs-lisp/testcover.el (testcover-end): Remove spurious
11973         `printflag' argument.
11974         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
11975         Purecopy the whole obsolescence data.
11977 2011-06-01  Leo Liu  <sdl.web@gmail.com>
11979         * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
11980         improve doc-string as suggested by Marco Pessotto
11981         <melmothx@gmail.com>.
11982         (rcirc-print): Fix last change.
11984 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11986         * minibuffer.el (complete-with-action): Return nil for the metadata and
11987         boundaries of non-functional tables.
11988         (completion-table-dynamic): Return nil for the metadata.
11989         (completion-table-with-terminator): Add default case, using
11990         complete-with-action.
11991         (completion--metadata): New function.
11992         (completion-all-sorted-completions, minibuffer-completion-help): Use it
11993         to try and avoid pathological performance problems.
11994         (completion--embedded-envvar-table): Return `category' metadata.
11996 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11998         * subr.el (process-alive-p): New tiny convenience function.
12000 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12002         * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
12003         content but also its previous major mode.
12005 2011-05-31  Helmut Eller  <eller.helmut@gmail.com>
12007         * emacs-lisp/debug.el (debug): Restore the previous content of the
12008         *Backtrace* buffer when we exit with C-M-c.
12010 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12012         * minibuffer.el: Add metadata method to completion tables.
12013         (completion-category-overrides): New defcustom.
12014         (completion-metadata, completion--field-metadata)
12015         (completion-metadata-get, completion--styles)
12016         (completion--cycle-threshold): New functions.
12017         (completion-try-completion, completion-all-completions):
12018         Add `metadata' argument to choose completion-styles.
12019         (completion--do-completion): Use metadata to choose cycling.
12020         (completion-all-sorted-completions): Use metadata for sorting.
12021         Remove :completion-cycle-penalty which is not needed any more.
12022         (completion--try-word-completion): Add `metadata' argument.
12023         (minibuffer-completion-help): Check metadata for annotation function
12024         and sorting.
12025         (completion-file-name-table): Return `category' metadata.
12026         (minibuffer-completing-file-name): Make obsolete.
12027         * simple.el (minibuffer-completing-symbol): Make obsolete.
12028         * icomplete.el (icomplete-completions): Pass new `metadata' param to
12029         completion-try-completion.
12031 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12033         * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
12035 2011-05-30  Leo Liu  <sdl.web@gmail.com>
12037         * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
12038         (rcirc-print): Decode all incoming messages (bug#8744).
12039         (rcirc-decode-coding-system): Allow value nil for automatic coding
12040         system detection.
12042 2011-06-01  Glenn Morris  <rgm@gnu.org>
12044         * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
12046 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
12048         * image.el (image-animate-max-time): Allow nil and t values.
12049         Default to nil.
12050         (create-animated-image): Doc fix.
12051         (image-animate-start): Remove second arg; just use
12052         image-animate-max-time.
12053         (image-animate-timeout): Doc fix.  Args changed.
12055         * image-mode.el (image-toggle-display-image): Ensure that the
12056         image spec passed to the animate timer is the same object as in
12057         the buffer's display property (Bug#6981).
12058         (image-transform-properties): Doc fix.
12060         * image.el (image-animate-max-time): Default to nil.
12062 2011-05-29  Martin Rudalics  <rudalics@gmx.at>
12064         * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
12065         entire buffer list (Bug#8184).
12067 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
12069         * image.el (imagemagick-types-inhibit)
12070         (imagemagick-register-types): Doc fix.
12072 2011-05-29  Deniz Dogan  <deniz@dogan.se>
12074         * net/rcirc.el (rcirc): Use the user's stored encryption method by
12075         default.
12077 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
12079         * select.el: Don't perform clipboard-manager saving in hooks;
12080         leave the hooks empty.
12082 2011-05-28  Leo Liu  <sdl.web@gmail.com>
12084         * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
12085         (occur-mode-map): Bind occur-edit-mode.  Use occur-menu-map.
12086         (occur-edit-mode): New major mode (Bug#8463).
12087         (occur-after-change-function): New function.
12088         (occur-engine): Give Occur tags a read-only property.
12090 2011-05-28  Kevin Ryde  <user42@zip.com.au>
12092         * subr.el (def-edebug-spec): Doc fix (Bug#8430).
12094 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
12096         * bindings.el (help-echo): Make the initial non-indicator dash
12097         empty on graphical terminals (Bug#7295).
12099         * files.el (auto-mode-alist): Move config rule after the
12100         in-stripping one (Bug#8547).
12102         * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
12104         * startup.el (normal-splash-screen): Remove gratuitous mode-line
12105         setting (Bug#8740).
12107 2011-05-28  Alp Aker  <aker@pitt.edu>  (tiny change)
12109         * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
12110         (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
12111         (Bug#8539).
12113 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
12115         * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
12117 2011-05-28  Dima Kogan  <dkogan@cds.caltech.edu>  (tiny change)
12119         * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
12120         (hs-hide-block-at-point, hs-find-block-beginning)
12121         (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
12122         (Bug#8279).
12124 2011-05-28  Glenn Morris  <rgm@gnu.org>
12126         * startup.el (fancy-about-screen): Use standard mode line.  (Bug#8740)
12128 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
12130         * help-fns.el (describe-function-1): If the function is a derived
12131         major mode, print the parent mode.
12133         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
12134         (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
12136 2011-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12138         * minibuffer.el (completion--capf-wrapper): Check applicability before
12139         returning non-nil for non-exclusive completion data.
12140         * progmodes/etags.el (tags-completion-at-point-function):
12141         * info-look.el (info-lookup-completions-at-point): Mark as
12142         non-exclusive.
12143         (info-complete): Adjust accordingly.
12145         * info-look.el: Convert to lexical-binding and completion-at-point.
12146         (info-lookup-completions-at-point): New function.
12147         (info-complete): Use it and completion-in-region.
12149 2011-05-28  Drew Adams  <drew.adams@oracle.com>
12151         * isearch.el: Let M-e start with point at the first mismatched char.
12152         (isearch-fail-pos): New function.
12153         (isearch-edit-string): Use it.
12155 2011-05-28  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
12157         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12159 2011-05-27  Toby Cubitt  <toby-predictive@dr-qubit.org>
12161         * emacs-lisp/avl-tree.el: New avl-tree-stack datatype.  Add new
12162         traversal functions for avl-trees.
12163         (avl-tree--stack): New struct.
12164         (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
12165         (avl-tree-enter): Add optional `updatefun' arg.
12166         (avl-tree--do-enter): Add optional `updatefun' arg.
12167         Change return value.
12168         (avl-tree-delete): Add optional `test' and `nilflag' args.
12169         (avl-tree--do-delete): Add `test' and `nilflag' args.
12170         Change return value.
12171         (avl-tree-member): Add optional `nilflag'
12172         (avl-tree-member-p): New function.
12173         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
12174         (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
12175         (avl-tree-stack-empty-p): New functions.
12177         * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
12178         avl-tree--del-balance1 and make it work both ways.
12179         (avl-tree--del-balance2): Remove.
12180         (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
12181         make it work both ways.
12182         (avl-tree--enter-balance2): Remove.
12183         (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
12184         New macros.
12185         (avl-tree--mapc, avl-tree-map): Add direction argument.
12187 2011-05-27  David Michael  <fedora.dm0@gmail.com>  (tiny change)
12189         * files.el (interpreter-mode-alist): Add rbash (bug#8745).
12191 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
12193         * select.el: Support clipboard managers with built-in function
12194         x-clipboard-manager-save, via delete-frame-functions and
12195         kill-emacs-hook.
12196         (xselect-convert-to-targets): Add MULTIPLE target to list.
12197         (xselect-convert-to-save-targets): New function.
12199 2011-05-27  Kenichi Handa  <handa@m17n.org>
12201         * mail/sendmail.el (mail-encode-header): Avoid double encoding by
12202         let-binding rfc2047-encode-encoded-words to nil.
12204 2011-05-27  Glenn Morris  <rgm@gnu.org>
12206         * mail/emacsbug.el: Don't require url-util.
12208         * shell.el (shell-directory-tracker): Case matters.  (Bug#8735)
12210         * files.el (set-auto-mode):
12211         Also respect mode: entries at the end of the file.  (Bug#8586)
12213 2011-05-26  Glenn Morris  <rgm@gnu.org>
12215         * files.el (hack-local-variables-prop-line, hack-local-variables):
12216         Downcase mode names, as seems to be traditional.
12217         (hack-local-variables, hack-local-variables-apply): Doc fixes.
12219         * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
12220         (report-emacs-bug-hook): Try to validate the From address.  (Bug#8038)
12222 2011-05-25  Julien Danjou  <julien@danjou.info>
12224         * textmodes/rst.el (rst-define-level-faces): Do not define face
12225         symbol if it is already defined.
12227 2011-05-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
12229         * play/5x5.el (5x5-new-game, 5x5-randomize):
12230         Reset 5x5-solver-output to nil when a new grid is cast.
12231         (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
12232         these debugging traces, as defmacro breaks the compiled code.
12234 2011-05-24  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
12236         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12238 2011-05-24  Leo Liu  <sdl.web@gmail.com>
12240         * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
12241         (vc-bzr-sha1): Adapt.
12243         * sha1.el: Remove.  Function `sha1' is now builtin.
12245         * bindings.el: Provide sha1 feature.
12247 2011-05-24  Kenichi Handa  <handa@m17n.org>
12249         * mail/sendmail.el: Require `rfc2047'.
12250         (mail-insert-from-field): Do not perform RFC2047 encoding.
12251         (mail-encode-header): New function.
12252         (sendmail-send-it): Set buffer-file-coding-system of the work
12253         buffer to the return value of select-message-coding-system.
12254         Call mail-encode-header.
12256         * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
12258 2011-05-24  Sean Neakums  <sneakums@zork.net>  (tiny change)
12260         * mail/supercite.el (sc-default-cite-frame):
12261         Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
12263 2011-05-24  Glenn Morris  <rgm@gnu.org>
12265         * progmodes/python.el (brm-menu): Declare.
12267         * emulation/viper.el (viper-set-hooks): Declare.
12269         * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
12270         (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
12271         (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
12272         (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
12273         (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
12274         (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
12276 2011-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12278         Add an :exit-function for completion-at-point.
12280         * minibuffer.el (completion--done): New fun.
12281         (completion--do-completion): Use it.  New arg `expect-exact'.
12282         (minibuffer-complete, minibuffer-complete-word): Don't output message,
12283         since completion--do-completion does it for us now.
12284         (minibuffer-force-complete): Use completion--done and
12285         completion--replace.  Handle sole-completion case with more care.
12286         (minibuffer-complete-and-exit): Use new `expect-exact' arg.
12287         (completion-extra-properties): New var.
12288         (completion-annotate-function): Make obsolete.
12289         (minibuffer-completion-help): Adjust accordingly.
12290         Use completion-list-insert-choice-function.
12291         (completion-at-point, completion-help-at-point):
12292         Bind completion-extra-properties.
12293         (completion-pcm-word-delimiters): Add | (for uniquify, for example).
12294         * simple.el (completion-list-insert-choice-function): New var.
12295         (completion-setup-function): Preserve it.
12296         (choose-completion): Pay attention to it, shuffle the code a bit.
12297         (choose-completion-string): New arg `insert-function'.
12299         * textmodes/bibtex.el: Convert to lexical binding.
12300         (bibtex-mode-map): Use completion-at-point.
12301         (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
12302         (bibtex-completion-at-point-function): New fun, from bibtex-complete.
12303         (bibtex-complete): Define as obsolete alias.
12304         (bibtex-complete-internal): Remove.
12305         (bibtex-format-entry): Remove unused sub-group in regexp.
12306         * shell.el (shell--command-completion-data)
12307         (shell-environment-variable-completion):
12308         * pcomplete.el (pcomplete-completions-at-point):
12309         * comint.el (comint--complete-file-name-data): Use :exit-function
12310         instead of completion-table-with-terminator so it also works for
12311         choose-completion.
12313 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12315         * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
12317         * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
12318         (bug#8710).
12320         * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
12322 2011-05-23  Ken Manheimer  <ken.manheimer@gmail.com>
12324         * allout.el (allout-inhibit-auto-fill-on-headline): Create new
12325         customization variable and implement: If non-nil, auto-fill will
12326         be inhibited while on topic's header line.
12328 2011-05-23  Vincent Belaïche  <vincentb1@users.sourceforge.net>
12330         * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
12331         click on.  II/ Make 5x5 multisession.  III/ Ensure that random grids
12332         always have a solution in grid size = 5 cases.
12333         (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
12334         (5x5-solver-output, 5x5-log-buffer): New vars.
12335         (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
12336         Make these variables buffer local to achieve 5x5 multi-session-ness.
12337         (5x5): Set 5x5-grid-size only if SIZE is non-negative.
12338         (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
12339         (5x5-solve-suggest): New funs.
12340         (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
12341         randomize a grid so that we ensure that there is always a solution.
12342         (5x5-make-random-grid): Allow other movement than flipping.
12344 2011-05-23  Kevin Ryde  <user42@zip.com.au>
12346         * emacs-lisp/advice.el (ad-read-advised-function):
12347         Use `function-called-at-point' as the default, if it has
12348         advice and passes PREDICATE.
12350 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12352         * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
12353         byte-compile-lambda if it's actually a lambda.
12355         * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
12356         Fix function quoting.  Use backquote better.
12358 2011-05-22  Yuanle Song  <sylecn@gmail.com>
12360         * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
12361         matching (Bug#8516).
12363 2011-01-22  Jari Aalto  <jari.aalto@cante.net>
12365         * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
12366         different face (Bug#8178).
12368 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
12370         * vc/diff-mode.el (diff-changed): Don't use terminal specs for
12371         defface (Bug#8144).
12373 2011-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12375         * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
12376         funcall as well (bug#8712).  Warn when performing those conversions.
12377         * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
12379         * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
12381 2011-05-22  Glenn Morris  <rgm@gnu.org>
12383         * files.el (hack-local-variables-prop-line): Small simplifications.
12384         (hack-local-variables, hack-local-variables-prop-line):
12385         If MODE-ONLY, return the mode, rather than just `t'.
12387 2011-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12389         * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
12391 2011-05-21  Glenn Morris  <rgm@gnu.org>
12393         * files.el (hack-local-variables-prop-line, hack-local-variables):
12394         If only interested in the mode, don't bother doing the other stuff.
12396         * image-mode.el (image-after-revert-hook):
12397         Redraw all frames on which the image is visible.  (Bug#8567)
12399         * dired-aux.el (dired-touch-initial): Just use current-time.  (Bug#6887)
12401         * wid-edit.el (widget-checklist-match-inline):
12402         Fix 2011-04-19 change.  (Bug#8649)
12404 2011-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12406         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
12407         Also allow singlespace after single-letter capitals followed by a dot.
12409         * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
12410         enabled.  Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
12412 2011-05-20  Nix  <nix@esperi.org.uk>
12414         * files.el (basic-save-buffer-2):
12415         Fix handling of break-hardlink-on-save with non-existent files.
12417 2011-05-19  Deniz Dogan  <deniz@dogan.se>
12419         * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
12420         (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
12422 2011-05-19  Glenn Morris  <rgm@gnu.org>
12424         * progmodes/f90.el (f90-type-def-re):
12425         Handle "type, bind(c)".  (Bug#8691)
12427         * emacs-lisp/autoload.el (batch-update-autoloads):
12428         Set autoload-excludes by parsing loadup.el rather than Makefiles.
12430 2011-05-18  Michael Albinus  <michael.albinus@gmx.de>
12432         * net/tramp.el (tramp-process-actions): Set "first-password-request"
12433         property for the correct connection in case of multihops.
12435 2011-05-18  Glenn Morris  <rgm@gnu.org>
12437         * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
12438         * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
12440         Rationalize calendar handling of day and month abbrev-arrays.
12441         * calendar/calendar.el (calendar-customized-p): New function.
12442         (calendar-abbrev-construct, calendar-make-alist): Change what it does.
12443         (calendar-day-name-array, calendar-month-name-array): Doc fix.
12444         Add :set function.
12445         (calendar-abbrev-length, calendar-day-abbrev-array)
12446         (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
12447         (calendar-day-abbrev-array, calendar-month-abbrev-array):
12448         Elements may no longer be nil.
12449         (calendar-day-name, calendar-month-name):
12450         Update for changed nature of abbrev arrays.
12451         * calendar/diary-lib.el (diary-name-pattern):
12452         Update for changed nature of abbrev arrays.
12453         (diary-mark-entries-1): Update calendar-make-alist calls.
12454         (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
12455         * calendar/cal-html.el (cal-html-day-abbrev-array):
12456         Simply inherit from calendar-day-abbrev-array.
12458 2011-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12460         * progmodes/grep.el (grep-mode): Disable default
12461         compilation-directory-matcher setting (bug#8684).
12463 2011-05-17  Michael Albinus  <michael.albinus@gmx.de>
12465         * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
12466         instead of "head" and "tail".  There were problems with SunOS 5.9,
12467         and it performs better.
12469 2011-05-17  Glenn Morris  <rgm@gnu.org>
12471         * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
12473         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
12474         Replace obsolete function.
12476         * shell.el (pcomplete-parse-arguments-function): Declare.
12478         * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
12479         (appt-display-diary, appt-display-interval, appt-prev-comp-time)
12480         (appt-check): Doc fixes.
12481         (appt-disp-window-function, appt-delete-window-function):
12482         Remove needless special case in custom :type.
12483         (appt-display-count): Default to 0, not nil.
12484         (appt-check): Reset appt-display-count to 0, not nil.
12486 2011-05-17  Juanma Barranquero  <lekktu@gmail.com>
12488         * progmodes/python.el (python-font-lock-keywords):
12489         Add the Python 3.X keyword "nonlocal" (bug#8639).
12491 2011-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12493         * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
12495 2011-05-16  Kevin Ryde  <user42@zip.com.au>
12497         * info-look.el (makefile-automake-mode): New setups, looking in
12498         automake manual, then makefile-mode.
12499         (makefile-mode): Remove automake manual, have it just in
12500         makefile-automake-mode since there's various things different or
12501         not relevant to plain make.
12502         (makefile-mode): Remove "other-modes" non-existent automake-mode,
12503         believe a hypothetical automake-mode would go to makefile-mode,
12504         not the other way around.
12506 2011-05-15  Chong Yidong  <cyd@stupidchicken.com>
12508         * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
12509         hunk-end tags (Bug#8672).
12511         * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
12512         vc-annotate-show-diff-revision-at-line (Bug#8671).
12514 2011-05-14  Glenn Morris  <rgm@gnu.org>
12516         * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
12517         in the middle of an existing one with multiple authors.  (Bug#8645)
12518         (change-log-font-lock-keywords): Also handle multiple author lines
12519         with leading tabs.  (Bug#8644)
12521         * calendar/appt.el (appt-check): Rename some local variables.
12522         Some simplification/reordering.
12524         * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
12525         (feedmail-sendmail-f-doesnt-sell-me-out)
12526         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
12527         (feedmail-debug-sit-for, feedmail-queue-express-hook)
12528         (feedmail-queue-runner-message-sender): Set :version.
12529         (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
12530         (bbdb-dwim-net-address, vm-mail): Declare.
12531         (feedmail-binmail-gnulinuxish-template):
12532         Rename from feedmail-binmail-linuxish-template.
12533         (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
12534         Use insert-buffer-substring.
12536 2011-05-14  Bill Carpenter  <bill@carpenter.org>
12538         * mail/feedmail.el (feedmail-patch-level): Increase.
12539         (feedmail-debug): New custom group.
12540         (feedmail-confirm-outgoing-timeout)
12541         (feedmail-sendmail-f-doesnt-sell-me-out)
12542         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
12543         (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
12544         (feedmail-sender-line, feedmail-from-line)
12545         (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
12546         (feedmail-spray-this-address)
12547         (feedmail-spray-address-fiddle-plex-list)
12548         (feedmail-queue-use-send-time-for-date)
12549         (feedmail-queue-use-send-time-for-message-id)
12550         (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
12551         (feedmail-buffer-eating-function):
12552         Doc fixes.
12553         (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
12554         (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
12555         (feedmail-message-action-scroll-down): New functions.
12556         (feedmail-queue-directory, feedmail-queue-draft-directory):
12557         Use expand-file-name.
12558         (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
12559         Remove C-v help entry.
12560         (feedmail-queue-buffer-file-name): New variable.
12561         (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
12562         (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
12563         (feedmail-message-action-send-strong, feedmail-message-action-edit)
12564         (feedmail-message-action-draft, feedmail-message-action-draft-strong)
12565         (feedmail-message-action-queue, feedmail-message-action-queue-strong)
12566         (feedmail-message-action-toggle-spray)
12567         (feedmail-run-the-queue-no-prompts)
12568         (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
12569         (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
12570         (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
12571         (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
12572         (feedmail-envelope-deducer, feedmail-fiddle-from)
12573         (feedmail-fiddle-sender, feedmail-default-date-generator)
12574         (feedmail-fiddle-date, feedmail-fiddle-message-id)
12575         (feedmail-fiddle-spray-address)
12576         (feedmail-fiddle-list-of-spray-fiddle-plexes)
12577         (feedmail-fiddle-list-of-fiddle-plexes)
12578         (feedmail-fill-to-cc-function, feedmail-fill-this-one)
12579         (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
12580         (feedmail-queue-runner-message-sender, feedmail-binmail-template):
12581         Change default.  Doc fix.
12582         (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
12583         (feedmail-binmail-linuxish-template): New constant.
12584         (feedmail-buffer-to-sendmail): Doc fix.  Add debug call.
12585         Respect feedmail-sendmail-f-doesnt-sell-me-out.
12586         (feedmail-send-it): Add debug call.
12587         Use feedmail-queue-buffer-file-name, and
12588         feedmail-send-it-immediately-wrapper.
12589         (feedmail-message-action-send): Add debug call.
12590         Use feedmail-send-it-immediately-wrapper.
12591         (feedmail-queue-express-to-queue): Add debug call.
12592         Run feedmail-queue-express-hook.
12593         (feedmail-message-action-help): Add debug call.  Use feedmail-p-h-b-n.
12594         (feedmail-message-action-help-blat):
12595         Rename from feedmail-queue-send-edit-prompt-help-first.
12596         (feedmail-run-the-queue): Add debug call.  Set buffer-file-type.
12597         Check line-endings.  Handle errors better.
12598         (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
12599         Doc fix.  Add debug call.
12600         (feedmail-queue-send-edit-prompt): Doc fix.  Add debug call.
12601         Use feedmail-queue-send-edit-prompt-inner.
12602         (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
12603         (feedmail-queue-send-edit-prompt-inner): New function, extracted
12604         from feedmail-queue-send-edit-prompt.
12605         (feedmail-queue-send-edit-prompt-help)
12606         (feedmail-queue-send-edit-prompt-help-later): Remove functions.
12607         (feedmail-tidy-up-slug): Add debug call.
12608         Respect feedmail-queue-slug-suspect-regexp.
12609         (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
12610         (feedmail-dump-message-to-queue): Add debug call.
12611         Expand queue-directory.
12612         (feedmail-dump-message-to-queue): Change message slightly.
12613         Use feedmail-say-chatter.
12614         (feedmail-rfc822-date): Add debug call.  Bind system-time-locale.
12615         (feedmail-send-it-immediately-wrapper): New function.
12616         (feedmail-send-it-immediately): Add debug calls.  Use let not let*.
12617         Insert empty string rather than newline.  Handle full-frame case.
12618         Use catch/throw.  Use feedmail-say-chatter.
12619         (feedmail-fiddle-from): Try mail-host-address.
12620         (feedmail-default-message-id-generator): Doc fix.
12621         Bind system-time-locale.  Handle missing end.
12622         (feedmail-fiddle-x-mailer): Add debug call.
12623         Handle feedmail-x-mailer-line being nil.
12624         (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
12625         Add debug call.  Use buffer-substring-no-properties.
12626         (feedmail-say-debug, feedmail-say-chatter): New functions.
12627         (feedmail-find-eoh): Give an explicit error.
12629 2011-05-13  Ulf Jasper  <ulf.jasper@web.de>
12631         * net/newst-treeview.el (newsticker-treeview-face): Change default
12632         family from helvetica to sans.
12633         (newsticker-treeview-tool-bar-map): Move tool-bar icons to
12634         etc/images/newsticker.
12636         * net/newst-reader.el (newsticker-feed-face): Change default
12637         family from helvetica to sans.
12639         * net/newst-plainview.el (newsticker-new-item-face)
12640         (newsticker-old-item-face, newsticker-immortal-item-face)
12641         (newsticker-obsolete-item-face, newsticker-date-face)
12642         (newsticker-statistics-face): Change default family from
12643         helvetica to sans.
12644         (newsticker--plainview-tool-bar-map): Move tool-bar icons to
12645         etc/images/newsticker.
12647         * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
12648         (newsticker--process-auto-mark-filter-match): Tell user about
12649         auto-marking.
12651 2011-05-13  Didier Verna  <didier@xemacs.org>
12653         Common Lisp indentation improvements on defmethod and lambda-lists.
12654         * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
12655         TODO entries.
12656         (lisp-lambda-list-keyword-parameter-indentation)
12657         (lisp-lambda-list-keyword-parameter-alignment)
12658         (lisp-lambda-list-keyword-alignment): New customizable user options.
12659         (lisp-indent-defun-method): Improve docstring.
12660         (extended-loop-p): Fix comment.
12661         (lisp-indent-lambda-list-keywords-regexp): New variable.
12662         (lisp-indent-lambda-list): New function.
12663         (lisp-indent-259): Use it.
12664         (lisp-indent-defmethod): Support for more than one
12665         method qualifier and properly indent methods lambda-lists.
12666         (defgeneric): Provide a missing common-lisp-indent-function property.
12668 2011-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12670         * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
12671         bounds for the empty string (bug#8667).
12673 2011-05-13  Glenn Morris  <rgm@gnu.org>
12675         * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
12677         * mail/sendmail.el (sendmail-program): Try executable-find first.
12678         (sendmail-send-it): `sendmail-program' cannot be unbound.
12680         * calendar/appt.el (appt-make-list): Simplify.
12681         (appt-time-msg-list): Doc fix.
12682         (appt-check): Change mode-line message at the time of the appointment.
12684 2011-05-12  Andreas Schwab  <schwab@linux-m68k.org>
12686         * progmodes/ld-script.el (ld-script-keywords)
12687         (ld-script-builtins): Update keywords list.
12689 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12691         * progmodes/grep.el (grep-filter): Don't trip on partial lines.
12693         * shell.el (shell-completion-vars): New function.
12694         (shell-mode):
12695         * simple.el (read-shell-command): Use it.
12696         (blink-matching-open): No need for " [...]" in minibuffer-message.
12698 2011-05-12  Glenn Morris  <rgm@gnu.org>
12700         * calendar/appt.el (appt-now-displayed): Remove pointless variable.
12701         (appt-check): Simplify.
12703 2011-05-12  Eli Zaretskii  <eliz@gnu.org>
12705         * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
12706         literal "/dev/null".
12708 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12710         * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
12711         Fix typo.
12713 2011-05-12  Ralph Schleicher  <rs@ralph-schleicher.de>
12715         * progmodes/which-func.el (which-function):
12716         Use add-log-current-defun instead of add-log-current-defun-function,
12717         which might not be defined (Bug#8260).
12719 2011-05-12  Glenn Morris  <rgm@gnu.org>
12721         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
12722         Let byte-compile-initial-macro-environment always take precedence.
12724 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12726         * net/rcirc.el: Add support for SSL/TLS connections.
12727         (rcirc-server-alist): New field `encryption'.
12728         (rcirc): Check `encryption' settings.
12729         (rcirc-connect): New arg `encryption'.  Use open-network-stream.
12730         Merge make-local-variable into `set'.
12731         (rcirc--connection-open-p): New function.
12732         (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
12733         the process is not a network process (e.g. running gnutls-cli).
12734         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
12735         Make rcirc-(en|de)code-coding-system local here.
12736         (rcirc-mode): Merge make-local-variable into `set'.
12737         (rcirc-parent-buffer): Make permanent buffer-local.
12738         (rcirc-multiline-minor-mode): Don't do it here.
12739         (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
12740         there's no server buffer.
12742 2011-05-11  Glenn Morris  <rgm@gnu.org>
12744         * newcomment.el (comment-kill): Prefix "unused" local.
12746         * term/w32console.el (get-screen-color): Declare.
12748         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
12749         Handle symbol elements of byte-compile-initial-macro-environment.
12751 2011-05-10  Leo Liu  <sdl.web@gmail.com>
12753         * bookmark.el (bookmark-bmenu-mode-map):
12754         Bind bookmark-bmenu-search to `/'.
12756         * mail/footnote.el: Convert to utf-8 encoding.
12757         (footnote-unicode-string, footnote-unicode-regexp): New variable.
12758         (Footnote-unicode): New function.
12759         (footnote-style-alist): Add unicode style to the list.
12760         (footnote-style): Doc fix.
12762 2011-05-10  Jim Meyering  <meyering@redhat.com>
12764         Fix doubled-word typos.
12765         * international/quail.el (quail-insert-kbd-layout): and and -> and
12766         * kermit.el: and and -> and
12767         * net/ldap.el (ldap-search-internal): to to -> to
12768         * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
12769         * progmodes/js.el (js-mode): and and -> and
12770         * textmodes/artist.el (artist-move-to-xy): at at -> at
12771         (artist-draw-region-trim-line-endings): if if -> if
12772         And Safetyc -> Safety.
12773         * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
12775 2011-05-10  Glenn Morris  <rgm@gnu.org>
12776             Stefan Monnier  <monnier@iro.umontreal.ca>
12778         * files.el (hack-one-local-variable-eval-safep):
12779         Consider "eval: (foo-mode)" to be safe.  (Bug#8613)
12781 2011-05-10  Glenn Morris  <rgm@gnu.org>
12783         * calendar/diary-lib.el (diary-list-entries-hook)
12784         (diary-mark-entries-hook, diary-nongregorian-listing-hook)
12785         (diary-nongregorian-marking-hook, diary-list-entries)
12786         (diary-include-other-diary-files, diary-mark-entries)
12787         (diary-mark-included-diary-files): Doc fixes.
12789 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
12791         * misc.el: Require tabulated-list.el during compilation.
12793 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
12795         * progmodes/compile.el (compilation-start):
12796         Run compilation-filter-hook for the async case too.
12797         (compilation-filter-hook): Doc fix.
12799 2011-05-09  Deniz Dogan  <deniz@dogan.se>
12801         * wdired.el: Remove outdated installation comment.  Fix usage
12802         comment.
12804 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
12806         * misc.el: Implement new command `list-dynamic-libraries'.
12807         (list-dynamic-libraries--loaded-only-p): New variable.
12808         (list-dynamic-libraries--refresh): New function.
12809         (list-dynamic-libraries): New command.
12811 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
12813         * progmodes/compile.el (compilation-error-regexp-alist-alist):
12814         Fix the ant regexp to handle end-line and end-column info from jikes.
12815         Re-introduce maven regexp.  Give the ruby-Test::Unit regexp a
12816         higher priority to avoid clobbering by gnu.
12818 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
12820         * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
12821         if the face has existing theme settings (Bug#8454).
12823 2011-05-08  Ralph Schleicher  <rs@ralph-schleicher.de>
12825         * progmodes/perl-mode.el (perl-imenu-generic-expression):
12826         Only match variables declared via `my' or `our' (Bug#8261).
12828         * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
12829         special file names `.' and `..' (Bug#8259).
12831 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
12833         * progmodes/grep.el (grep-mode-font-lock-keywords):
12834         Remove buffer-changing entries.
12835         (grep-filter): New function.
12836         (grep-mode): Add it to compilation-filter-hook.
12838         * progmodes/compile.el (compilation-filter-hook)
12839         (compilation-filter-start): New defvars.
12840         (compilation-filter): Call compilation-filter-hook prior to
12841         updating the process mark.
12843 2011-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12845         * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
12847 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
12849         * mail/sendmail.el (send-mail-function): On MS-Windows, default to
12850         mailclient-send-it even if window-system is nil.  (Bug#8595)
12852         * term/w32console.el (terminal-init-w32console):
12853         Call get-screen-color and use its output to set the frame
12854         background-mode.  (Bug#8597)
12856 2011-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12858         Make bytecomp.el understand that defmethod defines funs (bug#8631).
12859         * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
12860         New functions.
12861         (defgeneric, eieio--defmethod): Use them.
12862         (eieio-defgeneric): Remove.
12863         (defmethod): Call defgeneric in a way visible to the byte-compiler.
12865 2011-05-07  Glenn Morris  <rgm@gnu.org>
12867         * calendar/timeclock.el (timeclock-log-data): Remove unused local.
12868         Use let rather than let*.
12869         (timeclock-find-discrep): Remove unused local.
12871         * calendar/diary-lib.el (diary-comment-start): Doc fix.
12873         * calendar/appt.el (appt-time-msg-list): Doc fix.
12875 2011-05-06  Noah Friedman  <friedman@splode.com>
12877         * apropos.el (apropos-print-doc): Only use
12878         emacs-lisp-docstring-fill-column when it is bound to an integer,
12879         per that variable's documentation.
12881 2011-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12883         * lpr.el (print-region-1): Echo lpr-program's output, so error messages
12884         and warnings are not silently discarded (e.g. use -d instead of -P).
12886 2011-05-06  Glenn Morris  <rgm@gnu.org>
12888         * calendar/appt.el (appt-message-warning-time): Doc fix.
12889         (appt-warning-time-regexp): New option.
12890         (appt-make-list): Respect appt-message-warning-time.
12892         * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
12893         New options.
12894         (diary-add-to-list): Strip comments from the displayed string.
12895         (diary-mode): Set comment-start and comment-end.
12897         * vc/diff-mode.el (smerge-refine-subst): Declare.
12898         (diff-refine-hunk): Don't require smerge-mode when compiling.
12900 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
12902         * simple.el (list-processes): Return nil as the docstring says.
12904 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
12906         * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
12907         to "".
12908         (ange-ftp-write-region, ange-ftp-insert-file-contents)
12909         (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
12910         determining of binary transfer.  (Bug#7383)
12912 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
12914         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
12915         Fix port computation bug.  (Bug#8618)
12917 2011-05-05  Glenn Morris  <rgm@gnu.org>
12919         * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
12921         * simple.el (shell-dynamic-complete-functions)
12922         (comint-dynamic-complete-functions): Declare.
12924         * net/network-stream.el (gnutls-negotiate):
12925         * simple.el (tabulated-list-print): Fix declarations.
12927         * progmodes/gud.el (syntax-symbol, syntax-point):
12928         Remove unnecessary and incorrect declarations.
12930         * emacs-lisp/check-declare.el (check-declare-scan):
12931         Handle byte-compile-initial-macro-environment in bytecomp.el
12933 2011-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12935         Fix earlier half-done eieio-defmethod change (bug#8338).
12936         * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
12937         Streamline and change calling convention.
12938         (defmethod): Adjust accordingly and simplify.
12939         (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
12940         new eieio--defmethod.
12941         (slot-boundp): Minor CSE simplification.
12943 2011-05-05  Milan Zamazal  <pdm@zamazal.org>
12945         * progmodes/glasses.el (glasses-separate-capital-groups): New option.
12946         (glasses-make-readable): Use glasses-separate-capital-groups.
12948 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
12950         * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
12951         (warning-series): Doc fix.
12952         (display-warning): Don't try to create the buffer if we just found it.
12954 2011-05-04  Chong Yidong  <cyd@stupidchicken.com>
12956         * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
12957         (autoload-find-generated-file): New function.
12958         (generate-file-autoloads): Bind generated-autoload-file to
12959         buffer-file-name.
12960         (update-file-autoloads, update-directory-autoloads):
12961         Use autoload-find-generated-file.  If called interactively, prompt for
12962         output file (Bug#7989).
12963         (batch-update-autoloads): Doc fix.
12965 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
12967         * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
12969 2011-05-04  Glenn Morris  <rgm@gnu.org>
12971         * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
12972         function, so it follows changes in calendar-date-style.
12973         (diary-fancy-date-matcher): New function.
12974         (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
12975         (diary-fancy-font-lock-fontify-region-function):
12976         Use diary-fancy-date-pattern as a function.
12978         * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
12979         non-numbers for `year' etc pseudo-variables.  (Bug#8583)
12981 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
12983         * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
12984         instead of positional arguments.  Allow :keylist and :crlfiles
12985         arguments.
12986         (open-gnutls-stream): Call it.
12988         * net/network-stream.el (network-stream-open-starttls): Adjust to
12989         call `gnutls-negotiate' with :process and :hostname arguments.
12991 2011-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12993         * minibuffer.el (completion--message): New function.
12994         (completion--do-completion, minibuffer-complete)
12995         (minibuffer-force-complete, minibuffer-complete-word): Use it.
12996         (completion--do-completion): Don't ignore completion-auto-help when in
12997         icomplete-mode.
12999         * whitespace.el (whitespace-trailing-regexp): Don't rely on the
13000         internal encoding (e.g. tibetan zero is not whitespace).
13001         (global-whitespace-mode): Prefer save-current-buffer.
13002         (whitespace-trailing-regexp): Remove useless save-match-data.
13003         (whitespace-empty-at-bob-regexp): Minor simplification.
13005 2011-05-03  Chong Yidong  <cyd@stupidchicken.com>
13007         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
13009 2011-05-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13011         * textmodes/ispell.el (ispell-add-per-file-word-list):
13012         Use `concat' to create string for insertion.
13014 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13016         * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
13017         Avoid open-line which runs post-self-insert-hook.
13018         (bibtex-fill-entry): Remove unused `end' var.
13020 2011-05-03  Dirk Ullrich  <dirk.ullrich@googlemail.com>  (tiny change)
13022         * textmodes/ispell.el (ispell-add-per-file-word-list):
13023         Protect against `nil' value of `comment-start' (Bug#8579).
13025 2011-05-03  Leo Liu  <sdl.web@gmail.com>
13027         * isearch.el (isearch-yank-pop): New command.
13028         (isearch-mode-map): Bind it to `M-y'.
13029         (isearch-forward): Mention it.
13031 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13033         * simple.el (minibuffer-complete-shell-command): Remove.
13034         (minibuffer-local-shell-command-map): Use completion-at-point.
13035         (read-shell-command): Setup completion vars here instead.
13036         (read-expression-map): Bind TAB to symbol completion.
13038         * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
13039         error directly rather via storing it into `results'.
13041 2011-05-02  Leo Liu  <sdl.web@gmail.com>
13043         * vc/diff.el: Fix description.
13045 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13047         * server.el (server-eval-at): New function.
13049 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13051         * net/network-stream.el (open-network-stream): Take a :nowait
13052         parameter and pass it on to `make-network-process'.
13053         (network-stream-open-plain): Ditto.
13055 2011-04-30  Andreas Schwab  <schwab@linux-m68k.org>
13057         * faces.el (face-spec-set-match-display): Don't match toolkit
13058         options on terminal frames.
13060 2011-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13062         * progmodes/pascal.el: Use lexical binding.
13063         (pascal-mode-map): Remove author preferences.
13065         * pcomplete.el (pcomplete-std-complete): Don't abuse
13066         completion-at-point.
13068 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
13070         * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
13071         removing code that has been dead since 1991 or so.
13073         * startup.el (command-line): When warning about "_emacs", use a
13074         delayed warning to allow the user to filter it out.
13076 2011-04-28  Deniz Dogan  <deniz@dogan.se>
13078         * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
13079         user has not joined.
13081 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13083         * pcomplete.el (pcomplete-completions-at-point): Return nil if there
13084         aren't any completions at point.
13086 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
13088         * subr.el (display-delayed-warnings): New function.
13089         (delayed-warnings-hook): New variable.
13091 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13093         * minibuffer.el (completion-at-point, completion-help-at-point):
13094         Don't presume that a given completion-at-point-function will always
13095         use the same calling convention.
13097         * pcomplete.el (pcomplete-completions-at-point):
13098         Obey pcomplete-ignore-case.  Don't call pcomplete-norm-func unless
13099         pcomplete-seen is non-nil.
13100         (pcomplete-comint-setup): Also recognize the new comint/shell
13101         completion functions.
13102         (pcomplete-do-complete): Don't call pcomplete-norm-func unless
13103         pcomplete-seen is non-nil.
13105 2011-04-27  Niels Giesen  <niels.giesen@gmail.com>
13107         * calendar/icalendar.el (diary-lib): Add require statement.
13108         (icalendar--create-uid): Read out a uid from a text-property on
13109         the first character in the entry.  This allows for code to add its
13110         own uid to the entry.
13111         (icalendar--convert-float-to-ical): Add export of
13112         `diary-float'-entries save for those with the optional DAY
13113         argument.
13115 2011-04-27  Daniel Colascione  <dan.colascione@gmail.com>
13117         * subr.el (shell-quote-argument): Use alternate escaping strategy
13118         when we spot a variable reference in a string.
13120 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
13122         * cus-start.el (all): Define customization for debug-on-event.
13124 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
13126         * subr.el (shell-quote-argument): Escape correctly under Windows.
13128 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13130         * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
13132 2011-04-25  Michael Albinus  <michael.albinus@gmx.de>
13134         * net/tramp.el (tramp-process-actions): Add POS argument.
13135         Delete region between POS and (pos).
13137         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13138         Use `nil' position in `tramp-process-actions' call.
13139         (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
13141         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
13142         position in `tramp-process-actions' call.
13144         * net/trampver.el: Update release number.
13146 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13148         * custom.el (defcustom): Obey lexical-binding.
13150         Fix octave-inf completion problems reported by Alexander Klimov.
13151         * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
13152         Inherit from octave-mode-syntax-table.
13153         (inferior-octave-mode): Set info-lookup-mode.
13154         (inferior-octave-completion-at-point): New function.
13155         (inferior-octave-complete): Use it and completion-in-region.
13156         (inferior-octave-dynamic-complete-functions): Use it as well, and use
13157         comint-filename-completion.
13158         * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
13159         symbol elements which shouldn't be word elements.
13160         (octave-font-lock-keywords, octave-beginning-of-defun)
13161         (octave-function-header-regexp): Adjust regexps accordingly.
13162         (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
13164 2011-04-25  Juanma Barranquero  <lekktu@gmail.com>
13166         * net/gnutls.el (gnutls-errorp): Declare before first use.
13168 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
13170         * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
13171         verify-error, and verify-hostname-error parameters.  Check whether
13172         default trustfile exists before going to use it.  Add missing
13173         argument to gnutls-message-maybe call.  Return value.
13174         Reported by Claudio Bley <claudio.bley@gmail.com>.
13175         (open-gnutls-stream): Add usage example.
13177         * net/network-stream.el (network-stream-open-starttls): Give host
13178         parameter to `gnutls-negotiate'.
13179         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
13180         * subr.el (shell-quote-argument): Escape correctly under Windows.
13182 2011-04-24  Daniel Colascione  <dan.colascione@gmail.com>
13184         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
13185         Use correct match group (bug#8438).
13187 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
13189         * emacs-lisp/package.el (package-built-in-p): Fix typo.
13190         (package-menu--generate): New arg specifying packages to show.
13191         (package-menu-refresh, package-menu-execute, list-packages):
13192         Callers changed.
13193         (package-show-package-list): New function, replacing deleted
13194         package--list-packages (renamed because it is non-internal).
13196         * finder.el (finder-list-matches): Use package-show-package-list
13197         instead of deleted package--list-packages.
13199         * vc/vc-annotate.el (vc-annotate-goto-line): New command.
13200         Based on a previous implementation by Juanma Barranquero (Bug#8366).
13201         (vc-annotate-mode-map): Bind it to RET.
13203 2011-04-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
13205         * progmodes/etags.el (next-file): Don't use set-buffer to change
13206         buffers (Bug#8478).
13208 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
13210         * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
13212         * apropos.el (apropos-label-face): Avoid variable-pitch face.
13213         (apropos-accumulator): Doc fix.
13214         (apropos-function, apropos-macro, apropos-command)
13215         (apropos-variable, apropos-face, apropos-group, apropos-widget)
13216         (apropos-plist): Add face property.
13217         (apropos-symbols-internal): Fix indentation.
13218         (apropos-print): Simplify help, and recognize apropos-multi-type.
13219         (apropos-print-doc): Use button-type-get to extract the button's
13220         face property.  Fill docstring (Bug#8352).
13222 2011-04-23  Juanma Barranquero  <lekktu@gmail.com>
13224         * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
13226         * play/mpuz.el (mpuz-silent): Doc fix.
13227         (mpuz-mode-map): Use mapc.
13228         (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
13229         (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
13230         Fix typos in docstrings.
13232         * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
13233         (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
13235         * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
13237 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
13239         * minibuffer.el (completion--do-completion): Avoid the "Next char
13240         not unique" prompt if icomplete-mode is enabled (Bug#5849).
13242         * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
13243         mouse-2 into unread-command-events, it is interpreted correctly.
13245         * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
13246         (image-toggle-display): Doc fix.
13248 2011-04-23  Stephen Berman  <stephen.berman@gmx.net>
13250         * textmodes/page.el (what-page): Use line-number-at-pos to
13251         calculate line number (Bug#6825).
13253 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
13255         * eshell/esh-mode.el (find-tag-interactive): Declare function.
13256         (eshell-find-tag): Remove `with-no-warnings', unneeded now.
13257         Pass argument NO-DEFAULT to `find-tag-interactive'.
13259 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
13261         Lexical-binding cleanup.
13263         * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
13264         (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
13265         * progmodes/ada-prj.el (ada-prj-initialize-values)
13266         (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
13267         (ada-prj-show-value):
13268         * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
13269         * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
13270         (antlr-invalidate-context-cache, antlr-options-menu-filter)
13271         (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
13272         * progmodes/bug-reference.el (bug-reference-push-button):
13273         * progmodes/fortran.el (fortran-line-length):
13274         * progmodes/glasses.el (glasses-change):
13275         * progmodes/octave-mod.el (octave-fill-paragraph):
13276         * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
13277         (python-pdbtrack-grub-for-buffer, python-sentinel):
13278         * progmodes/sql.el (sql-save-connection):
13279         * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
13280         * progmodes/xscheme.el (xscheme-enter-debugger-mode):
13281         Mark unused parameters.
13283         * progmodes/compile.el (compilation--flush-directory-cache)
13284         (compilation--flush-parse, compile-internal): Mark unused parameters.
13285         (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
13286         (compilation-next-error-function): Remove unused variable `timestamp'.
13288         * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
13289         (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
13291         * progmodes/dcl-mode.el (dcl-end-of-command):
13292         Remove unused variable `start'.
13293         (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
13294         (dcl-option-value-basic, dcl-option-value-offset)
13295         (dcl-option-value-margin-offset, dcl-option-value-comment-line):
13296         Mark unused parameters.
13297         (dcl-save-local-variable): Remove unused variable `val'.
13298         (mode): Declare.
13300         * progmodes/delphi.el (delphi-save-state, delphi-after-change):
13301         Mark unused parameters.
13302         (delphi-ignore-changes): Move before first use.
13303         (delphi-charset-token-at): Remove unused variable `start'.
13304         (delphi-else-start): Remove unused variable `if-count'.
13305         (delphi-comment-block-start, delphi-comment-block-end):
13306         Remove unused variable `kind'.
13307         (delphi-indent-line): Remove unused variable `new-point'.
13309         * progmodes/ebrowse.el (ebrowse-files-list)
13310         (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
13311         Mark unused parameters.  Don't quote `lambda'.
13312         (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
13313         Don't quote `lambda'.
13314         (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
13315         (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
13316         (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
13317         (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
13318         Use `ignore-errors'.
13319         (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
13320         (ebrowse-view/find-file-and-search-pattern)
13321         (ebrowse-view/find-member-declaration/definition):
13322         Rename parameter TAGS-FILE-NAME to TAGS-FILE.
13323         (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
13324         Rename parameter PREFIX-ARG to PREFIX.
13325         (ebrowse-tags-read-name): Remove unused variables `start' and
13326         `member-info'.
13327         (ebrowse-display-member-buffer): Rename variable `tags-file-name'
13328         to `tags-file'.
13330         * progmodes/etags.el (local-find-tag-hook): Declare.
13331         (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
13332         Mark unused parameters.
13334         * progmodes/executable.el (compilation-error-regexp-alist): Declare.
13335         (executable-interpret): Mark unused parameter.
13337         * progmodes/flymake.el (flymake-process-sentinel)
13338         (flymake-after-change-function)
13339         (flymake-create-temp-with-folder-structure)
13340         (flymake-get-include-dirs-dot): Mark unused parameters.
13341         (flymake-safe-delete-directory): Remove unused variable `err'.
13343         * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
13344         (speedbar-timer-fn, speedbar-line-text)
13345         (speedbar-change-expand-button-char, speedbar-delete-subblock)
13346         (speedbar-center-buffer-smartly): Declare functions.
13347         (gdb-find-watch-expression): Remove unused variable `array'.
13348         (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
13349         (gdb-starting): Mark unused parameters.
13350         (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
13351         (gdb-table-string): Remove unused variable `res'.
13352         (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
13353         (gdb-disassembly-handler-custom): Remove unused variable `pos'.
13354         (gdb-display-buffer): Remove unused variable `cur-size'.
13356         * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
13357         allow lexical-binding compilation.
13358         (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
13359         (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
13360         (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
13361         Mark unused parameters.
13362         (gud-gdb-marker-filter): Remove unused variable `match'.
13363         (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
13364         lambda expressions and funcall them, instead of using `fset'.
13366         * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
13367         HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
13369         * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
13370         variable `header-beg'; use `let'.
13372         * progmodes/icon.el (indent-icon-exp): Remove unused variables
13373         `restart', `last-sexp' and `at-do'.
13375         * progmodes/js.el (js--debug): Mark unused parameter.
13376         (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
13377         (js--splice-into-items): Remove unused variable `item'.
13378         (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
13380         * progmodes/make-mode.el (makefile-make-font-lock-keywords):
13381         Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
13382         (makefile-complete): Remove unused variable `try'.
13383         (makefile-fill-paragraph, makefile-match-function-end):
13384         Mark unused parameters.
13386         * progmodes/octave-inf.el (inferior-octave-complete):
13387         Remove unused variable `proc'.
13388         (inferior-octave-output-digest): Mark unused parameter.
13390         * progmodes/perl-mode.el (perl-calculate-indent):
13391         Remove unused variable `err'.
13393         * progmodes/prolog.el (prolog-mode-keybindings-inferior)
13394         (prolog-indent-line): Mark unused parameters.
13395         (prolog-indent-line): Remove unused variable `beg'.
13397         * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
13398         (reporter-dont-compact-list): Declare.
13400         * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
13401         Remove unused variable `char'.
13402         (sh-debug): Mark unused parameter.
13403         (sh-get-indent-info): Remove unused variable `start'.
13404         (sh-calculate-indent): Remove unused variable `var'.
13406         * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
13407         (simula-electric-keyword): Remove unused variable `null'.
13408         (simula-search-backward, simula-search-forward): Remove unused
13409         variables `begin' and `end'.
13411         * progmodes/vera-mode.el (vera-guess-basic-syntax):
13412         Remove unused variable `pos'.
13413         (vera-electric-tab, vera-comment-uncomment-region):
13414         Mark unused parameters.
13415         (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
13417 2011-04-22  Chong Yidong  <cyd@stupidchicken.com>
13419         * emacs-lisp/package.el (package--builtins, package-alist)
13420         (package-load-descriptor, package-built-in-p, package-activate)
13421         (define-package, package-installed-p)
13422         (package-compute-transaction, package-buffer-info)
13423         (package--push): Doc fix.  Distinguish more clearly between
13424         version strings and version lists.
13426 2011-04-21  Juanma Barranquero  <lekktu@gmail.com>
13428         Lexical-binding cleanup.
13430         * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
13431         (5x5-make-mutate-best):
13432         * play/fortune.el (fortune-in-buffer):
13433         * play/gomoku.el (gomoku-init-display):
13434         * play/solitaire.el (solitaire, solitaire-do-check):
13435         * play/tetris.el (tetris-default-update-speed-function):
13436         Mark unused parameters.
13438         * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
13439         (bubbles--shift): Remove unused variable `char-org'.
13440         (bubbles--set-faces): Remove unused variable `fg-col'.  Simplify.
13441         (bubbles--show-images): Remove unused variable `char'.
13443         * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
13444         (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
13445         (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
13446         (decipher-analyze-buffer): Use ?\s.
13447         (decipher-make-checkpoint): Remove unused variable `mapping'.
13449         * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
13451         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
13452         Remove unused variable `result'; use `let'.
13454         * play/gametree.el (gametree-current-layout, gametree-apply-layout):
13455         Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
13456         (gametree-children-shown-p, gametree-compute-reduced-score):
13457         Use `ignore-errors'.
13459         * play/handwrite.el (ps-lpr-switches): Declare.
13460         (handwrite): Remove unused variables `pmin' and `lastp'.
13462         * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
13464         * play/landmark.el (landmark-init-display)
13465         (landmark-update-naught-weights): Mark unused parameters.
13466         (landmark-y): Remove unused variable `noise'.  Simplify.
13467         (landmark-human-plays): Remove unused variable `score'.
13469         * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
13470         (mpuz-try-proposal): Remove unused variable `game'.
13472         * play/zone.el (life-patterns): Declare.
13474 2011-04-20  Juanma Barranquero  <lekktu@gmail.com>
13476         * vc/vc.el (ediff-vc-internal): Declare function.
13478 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13480         * shell.el: Use lexical-binding and std completion UI.
13481         (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
13482         (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
13483         comint-preoutput-filter-functions rather than on
13484         comint-output-filter-functions.
13485         (shell-command-completion, shell--command-completion-data)
13486         (shell-filename-completion, shell-environment-variable-completion)
13487         (shell-c-a-p-replace-by-expanded-directory): New functions.
13488         (shell-dynamic-complete-functions, shell-dynamic-complete-command)
13489         (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
13490         (shell-dynamic-complete-environment-variable): Use them.
13491         (shell-dynamic-complete-as-environment-variable)
13492         (shell-dynamic-complete-as-command): Remove.
13493         (shell-match-partial-variable): Match past point.
13494         * comint.el: Clean up use of completion-at-point-functions.
13495         (comint-completion-at-point): New function.
13496         (comint-mode): Use it completion-at-point-functions.
13497         (comint-dynamic-complete): Make it obsolete.
13498         (comint-replace-by-expanded-history-before-point): Add dry-run arg.
13499         (comint-c-a-p-replace-by-expanded-history): New function.
13500         (comint-dynamic-complete-functions)
13501         (comint-replace-by-expanded-history): Use it.
13502         * minibuffer.el (completion-table-with-terminator): Allow dynamic
13503         termination strings.  Try harder to avoid second try-completion.
13504         (completion-in-region-mode-map): Disable bindings that don't work yet.
13506         * comint.el: Use lexical-binding.  Require CL.
13507         (comint-dynamic-complete-functions): Use comint-filename-completion.
13508         (comint-completion-addsuffix): Tweak custom type.
13509         (comint-filename-completion, comint--common-suffix)
13510         (comint--common-quoted-suffix, comint--table-subvert)
13511         (comint--complete-file-name-data): New functions.
13512         (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
13513         (comint-dynamic-list-filename-completions): Use them.
13514         (comint-dynamic-simple-complete): Make obsolete.
13516         * minibuffer.el (completion-in-region-mode):
13517         Keep completion-in-region-mode--predicate global.
13518         (completion-in-region--postch):
13519         Assume completion-in-region-mode--predicate is not null.
13521         * progmodes/flymake.el (flymake-start-syntax-check-process):
13522         Obey `dir'.  Simplify.
13524         * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
13525         we're in VC after all.
13527 2011-04-20  Christoph Scholtes  <cschol2112@googlemail.com>
13529         * vc/vc.el (vc-diff-build-argument-list-internal)
13530         (vc-version-ediff, vc-ediff): New commands.
13531         (vc-version-diff): Use vc-diff-build-argument-list-internal.
13533 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13535         * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
13536         add sanity check.
13538         * obsolete/erc-hecomplete.el: Make obsolete.
13539         * obsolete/: Standardize obsolescence info in the header.
13541 2011-04-20  Glenn Morris  <rgm@gnu.org>
13543         * calendar/solar.el (solar-horizontal-coordinates):
13544         Use the longitude argument rather than `calendar-longitude'.
13545         (solar-date-next-longitude): Remove unused locals.
13547 2011-04-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13549         * whitespace.el: New version 13.2.1.
13551 2011-04-20  felix  <EmacsWiki>  (tiny change)
13553         * whitespace.el (global-whitespace-mode): Keep highlight when
13554         switching between major modes on a file.
13556 2011-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13558         * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
13559         (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
13560         multi-line comments as well.
13562 2011-04-19  Juanma Barranquero  <lekktu@gmail.com>
13564         Lexical-binding cleanup.
13566         * arc-mode.el (archive-mode-revert):
13567         * cmuscheme.el (scheme-interactively-start-process):
13568         * custom.el (custom-initialize-delay):
13569         * dnd.el (dnd-open-local-file, dnd-open-remote-url):
13570         * dos-w32.el (direct-print-region-helper, direct-print-region-function):
13571         * emacs-lock.el (emacs-lock-clear-sentinel):
13572         * ezimage.el (defezimage):
13573         * follow.el (follow-avoid-tail-recenter):
13574         * fringe.el (set-fringe-mode-1):
13575         * generic-x.el (bat-generic-mode-compile):
13576         * help-mode.el (help-info-variable, help-do-xref)
13577         (help-mode-revert-buffer):
13578         * help.el (view-emacs-todo):
13579         * iswitchb.el (iswitchb-completion-help):
13580         * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
13581         * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
13582         (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
13583         * locate.el (locate-update):
13584         * longlines.el (longlines-encode-region)
13585         (longlines-after-change-function):
13586         * outline.el (outline-isearch-open-invisible):
13587         * ps-def.el (declare-function, charset-dimension, char-width)
13588         (encode-char):
13589         * ps-mule.el (ps-mule-plot-string):
13590         * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
13591         (recentf-edit-list-select, recentf-edit-list-validate)
13592         (recentf-open-files-action):
13593         * rect.el (delete-whitespace-rectangle-line)
13594         (rectangle-number-line-callback):
13595         * register.el (window-configuration-to-register)
13596         (frame-configuration-to-register):
13597         * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
13598         * select.el (xselect-convert-to-string, xselect-convert-to-length)
13599         (xselect-convert-to-targets, xselect-convert-to-delete)
13600         (xselect-convert-to-filename, xselect-convert-to-charpos)
13601         (xselect-convert-to-lineno, xselect-convert-to-colno)
13602         (xselect-convert-to-os, xselect-convert-to-host)
13603         (xselect-convert-to-user, xselect-convert-to-class)
13604         (xselect-convert-to-name, xselect-convert-to-integer)
13605         (xselect-convert-to-atom, xselect-convert-to-identity):
13606         * subr.el (declare, ignore, process-kill-without-query)
13607         (text-clone-maintain):
13608         * terminal.el (te-get-char, te-tic-sentinel):
13609         * tool-bar.el (tool-bar-make-keymap):
13610         * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
13611         * type-break.el (type-break-mode, type-break-noninteractive-query):
13612         * view.el (View-back-to-mark):
13613         * wid-browse.el (widget-browse-action, widget-browse-widget)
13614         (widget-browse-widgets, widget-browse-sexp):
13615         * widget.el (define-widget-keywords):
13616         * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
13617         Mark unused parameters.
13619         * align.el (align-adjust-col-for-rule): Mark unused parameter.
13620         (align-areas): Remove unused variable `look'.
13621         (align-region): Remove unused variables `real-end' and `pos-list'.
13623         * apropos.el (apropos-score-doc): Remove unused variable `i'.
13625         * bindings.el (mode-line-modified, mode-line-remote):
13626         Mark unused parameters.
13627         (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
13629         * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
13630         (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
13632         * comint.el (comint-history-isearch-pop-state)
13633         (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
13634         (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
13635         (comint-substitute-in-file-name): Doc fix.
13637         * completion.el (cmpl-statistics-block): Mark unused parameter.
13638         (add-completions-from-tags-table, add-completions-from-lisp-buffer)
13639         (save-completions-to-file, load-completions-from-file):
13640         Remove unused local variable `e'.
13642         * composite.el (compose-chars): Remove unused variable `len'.
13643         (lgstring-insert-glyph): Remove unused variable `g'.
13644         (compose-glyph-string): Remove unused variables `ascent',
13645         `descent', `lbearing' and `rbearing'.
13646         (compose-glyph-string-relative): Remove unused variables
13647         `lbearing', `rbearing' and `wadjust'.
13648         (compose-gstring-for-graphic): Remove unused variables `header',
13649         `wadjust', `xoff' and `yoff'.  Use `let', not `let*'.
13650         (compose-gstring-for-terminal): Remove unused variables `header'
13651         and `nchars'.  Use `let', not `let*'.
13653         * cus-edit.el (Custom-set, Custom-save, custom-reset)
13654         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
13655         (Custom-buffer-done, custom-buffer-create-internal)
13656         (custom-browse-visibility-action, custom-browse-group-tag-action)
13657         (custom-browse-variable-tag-action, custom-browse-face-tag-action)
13658         (widget-magic-mouse-down-action, custom-toggle-parent)
13659         (custom-add-parent-links, custom-toggle-hide-variable)
13660         (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
13661         (custom-toggle-hide-face, face, hook, custom-group-link-action)
13662         (custom-face-menu-create, custom-variable-menu-create, get)
13663         (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
13664         (custom-reset-standard-save-and-update): Remove unused variable `value'.
13665         (customize-apropos): Remove unused variable `tests'.
13666         (custom-group-value-create): Remove unused variable `hidden-p'.
13667         (sort-fold-case): Declare.
13669         * cus-theme.el (custom-reset-standard-faces-list)
13670         (custom-reset-standard-variables-list): Declare.
13671         (customize-create-theme, custom-theme-revert, custom-theme-write)
13672         (custom-theme-choose-mode, customize-themes, custom-theme-save):
13673         Mark unused parameters.
13675         * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
13677         * delim-col.el (delimit-columns-max): Move defvar before first use.
13679         * descr-text.el (describe-char-categories): Don't quote `lambda'.
13680         (describe-char): Don't quote `lambda'.  Mark unused parameter.
13682         * desktop.el (desktop-save-buffer-p): Mark unused parameter.
13683         (auto-insert): Declare.
13684         (desktop-restore-file-buffer): Rename desktop-* parameters;
13685         mark unused ones.
13686         (desktop-create-buffer): Rename desktop-* parameters and bind them.
13687         (desktop-buffer): Rename desktop-* parameters.
13689         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
13690         (dframe-reposition-frame-xemacs, dframe-help-echo)
13691         (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
13692         Mark unused parameters.
13694         * dired-aux.el (backup-extract-version-start, overwrite-query)
13695         (overwrite-backup-query, rename-regexp-query)
13696         (rename-non-directory-query): Declare.
13697         (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
13698         (dired-add-entry): Remove unused variable `orig-file-name'.
13699         (dired-copy-file-recursive): Remove unused variable `dirfailed'.
13700         Use parameter PRESERVE-TIME instead of accessing dynamic variable
13701         `dired-copy-preserve-time' directly.
13702         (dired-do-create-files-regexp): Remove unused variable `fn-count'.
13703         (dired-insert-subdir-newpos): Rename unused variable `pos'.
13705         * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
13706         (dired-virtual-revert, dired-make-relative-symlink):
13707         Mark unused parameters.
13708         (manual-program): Declare.
13709         (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
13710         (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
13711         wrapped in `with-no-warnings' to avoid replacing one warning by another.
13713         * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
13715         * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
13717         * echistory.el (electric-history-in-progress, Helper-return-blurb):
13718         Declare.
13720         * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
13722         * electric.el (Electric-command-loop): Rename parameter
13723         INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
13725         * expand.el (expand-in-literal): Remove unused variable `here'.
13727         * facemenu.el (facemenu-add-new-color):
13728         Remove unused variable `docstring'.
13730         * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
13731         (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
13732         (face-attr-construct): Mark unused parameter.  Doc fix.
13733         (read-color): Remove unused variable `hex-string'.
13735         * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
13736         (locate-dominating-file): Remove unused vars `prev-file' and `user'.
13737         (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
13738         (display-buffer-other-frame): Remove unused variable `old-window'.
13739         (kill-buffer-hook): Declare.
13740         (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
13741         Mark unused parameters.
13742         (after-find-file): Pass 1 to `auto-save-mode', not t.
13744         * files-x.el (auto-insert): Declare.
13745         (modify-file-local-variable-prop-line): Remove unused variable `val'.
13747         * find-lisp.el (find-lisp-find-dired-internal): Remove unused
13748         variable `buf'.  Mark unused parameter.
13749         (find-lisp-insert-directory): Mark unused parameter.
13751         * format.el (format-decode-run-method): Mark unused parameter; doc fix.
13752         (format-encode-region): Remove unused variables `cur-buf' and `result'.
13753         (format-common-tail): Remove, unused.
13754         (format-deannotate-region): Remove unused variable `loc'.
13755         (format-annotate-region): Remove unused variable `p'.
13756         (format-annotate-single-property-change): Remove unused variables
13757         `default' and `tail'.
13759         * forms.el (read-file-filter): Declare.
13760         (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
13762         * frame.el (frame-creation-function-alist): Mark unused parameter.
13763         (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
13765         * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
13766         Remove unused parameters.
13767         (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
13768         (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
13770         * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
13771         (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
13772         (hfy-prepare-tag-map): Mark unused parameters.
13773         (htmlfontify-buffer): Use `called-interactively-p'.
13775         * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
13776         (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
13777         (ibuffer-do-occur): Mark unused parameters.
13778         (ibuffer-forward-next-marked): Remove unused variable `curmark'.
13779         (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
13781         * ibuffer.el: Don't quote `lambda'.
13782         (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
13783         (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
13784         Mark unused parameters.
13786         * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
13787         (ido-completing-read): Mark unused parameters.
13788         (ido-copy-current-word): Mark unused parameters;
13789         remove unused variable `name'.
13790         (ido-sort-merged-list): Remove unused parameter `dirs'.
13792         * ielm.el (ielm-input-sender): Mark unused parameter.
13793         (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
13794         (ielm-output, ielm-wbuf, ielm-pmark): Declare.
13795         (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
13796         `ielm-string' as a dynamic variable accessible from the IELM prompt.
13797         Bind `ielm-string' to INPUT-STRING.  Remove unused variable `err'.
13799         * image-dired.el (image-dired-display-thumbs): Remove unused
13800         variables `curr-file' and `count'.
13801         (image-dired-remove-tag): Remove unused variable `start'.
13802         (image-dired-tag-files, image-dired-create-thumbs): Remove unused
13803         variable `curr-file'
13804         (image-dired-rotate-original): Remove unused variable `temp-file'.
13805         (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
13806         Remove unused variable `file'.
13807         (image-dired-gallery-generate): Remove unused variable `curr'.
13808         (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
13810         * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
13812         * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
13814         * informat.el (texinfo-command-start, texinfo-command-end): Declare.
13816         * isearch.el (minibuffer-history-symbol): Declare.
13817         (isearch-edit-string): Remove unused variable `err'.
13818         (isearch-message-prefix, isearch-message-suffix):
13819         Mark unused parameters.
13821         * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
13823         * macros.el (insert-kbd-macro): Remove unused variable `mods'.
13825         * makesum.el (double-column): Remove unused variable `cnt'.
13827         * misearch.el (multi-isearch-pop-state): Mark unused parameter.
13828         (ido-ignore-item-temp-list): Declare.
13830         * mouse-drag.el (mouse-drag-throw): Remove unused variables
13831         `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
13832         `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
13833         (mouse-drag-drag): Remove unused variables `mouse-delta' and
13834         `mouse-col-delta'.
13836         * mouse-sel.el (mouse-extend-internal):
13837         Remove unused variable `orig-window-frame'.
13839         * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
13840         (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
13841         Move declarations before first use.
13842         (pcomplete-opt): Mark unused parameters; doc fix.
13844         * proced.el (proced-revert): Mark unused parameter.
13845         (proced-send-signal): Remove unused variable `err'.
13847         * ps-print.el (ps-print-preprint-region, ps-print-preprint):
13848         Rename parameter PREFIX-ARG to ARG.
13849         (ps-basic-plot-string, ps-basic-plot-whitespace):
13850         Mark unused parameters.
13852         * replace.el (replace-count): Define.
13853         (occur-revert-function): Mark unused parameters.
13854         (ido-ignore-item-temp-list, isearch-error, isearch-forward)
13855         (isearch-case-fold-search, isearch-string): Declare.
13856         (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
13857         bind `case-fold-search'.  Remove unused variables `beg' and `end',
13858         and simplify.
13859         (replace-eval-replacement): Rename parameter REPLACE-COUNT to
13860         COUNT and bind `replace-count'.
13861         (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
13862         to COUNT.
13864         * savehist.el (print-readably, print-string-length): Declare.
13866         * shadowfile.el (shadow-expand-cluster-in-file-name):
13867         Remove unused variable `cluster'.
13868         (shadow-copy-file): Remove unused variable `i'.
13869         (shadow-noquery, shadow-clusters, shadow-site-cluster)
13870         (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
13871         (shadow-define-literal-group, shadow-define-regexp-group)
13872         (shadow-make-group, shadow-shadows-of): Clean up docstrings.
13874         * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
13875         (shell): Use `called-interactively-p'.
13876         (shell-directory-tracker): Remove unused variable `chdir-failure'.
13878         * simple.el (compilation-context-lines, comint-file-name-quote-list)
13879         (comint-file-name-chars, comint-delimiter-argument-list): Declare.
13880         (delete-backward-char): Remove unused variable `ocol'.
13881         (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
13882         (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
13883         (event-apply-hyper-modifier, event-apply-shift-modifier)
13884         (event-apply-control-modifier, event-apply-meta-modifier):
13885         Mark unused parameters.
13886         (undo-make-selective-list): Remove duplicate variable `undo-elt'.
13887         (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
13889         * speedbar.el (speedbar-ignored-directory-expressions)
13890         (speedbar-supported-extension-expressions, speedbar-directory-buttons)
13891         (speedbar-find-file, speedbar-dir-follow)
13892         (speedbar-directory-buttons-follow, speedbar-tag-find)
13893         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
13894         (speedbar-buffers-line-directory, speedbar-buffer-click):
13895         Mark unused parameters.
13896         (speedbar-tag-file): Remove unused variable `mode'.
13897         (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
13899         * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
13901         * talk.el (talk): Remove unused variable `display'.
13903         * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
13904         (tar-write-region-annotate): Mark unused parameter.
13906         * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
13907         (minutes, seconds, time-zone, day, year, monthname, month, dayname):
13908         Declare them, wrapped in `with-no-warnings' to avoid replacing one
13909         warning by another.
13911         * time-stamp.el (time-stamp-string-preprocess):
13912         Remove unused variable `require-padding'.
13914         * tree-widget.el (widget-glyph-enable): Declare.
13915         (tree-widget-action): Mark unused parameter.
13917         * w32-fns.el (x-get-selection): Mark unused parameter.
13918         (autoload-make-program, generated-autoload-file): Declare.
13920         * wdired.el (wdired-revert): Mark unused parameters.
13921         (wdired-xcase-word): Remove unused variable `err'.
13923         * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
13924         (whitespace-help-scroll): Remove unused variable `data-help'.
13926         * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
13927         (widget-image-insert, widget-after-change, default)
13928         (widget-default-format-handler, widget-default-notify)
13929         (widget-default-prompt-value, widget-info-link-action)
13930         (widget-url-link-action, widget-function-link-action)
13931         (widget-variable-link-action, widget-file-link-action)
13932         (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
13933         (widget-field-prompt-internal, widget-field-action, widget-field-match)
13934         (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
13935         (widget-insert-button-action, widget-delete-button-action, visibility)
13936         (widget-documentation-link-action, widget-documentation-string-action)
13937         (widget-const-prompt-value, widget-regexp-match, symbol)
13938         (widget-coding-system-prompt-value)
13939         (widget-key-sequence-value-to-external, sexp)
13940         (widget-sexp-value-to-internal, character, vector, cons)
13941         (widget-choice-prompt-value, widget-boolean-prompt-value)
13942         (widget-color--choose-action): Mark unused parameters.
13943         (widget-item-match-inline, widget-choice-match-inline)
13944         (widget-checklist-match, widget-checklist-match-inline)
13945         (widget-group-match): Rename parameter VALUES to VALS.
13946         (widget-field-value-set): Remove unused variable `size'.
13947         (widget-color-action): Remove unused variables `value' and `start'.
13949         * windmove.el (windmove-wrap-loc-for-movement): Remove unused
13950         variable `dir'.  Doc fix.
13951         (windmove-find-other-window): Don't pass it.
13953         * window.el (count-windows): Mark unused parameter.
13954         (bw-adjust-window): Remove unused variable `err'.
13956         * woman.el (woman-file-name): Remove unused variable `default'.
13957         (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
13958         WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
13959         (global-font-lock-mode): Declare.
13960         (woman-decode-region): Mark unused parameter.
13961         (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
13963         * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
13964         (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
13965         (x-dnd-handle-moz-url): Remove unused variable `title'.
13966         (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
13968         * xml.el (xml-parse-tag, xml-parse-attlist):
13969         Remove unused variable `pos'.
13971 2011-04-19  Glenn Morris  <rgm@gnu.org>
13973         * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
13974         (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
13975         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
13976         (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
13977         * calendar/cal-html.el (cal-html-insert-minical):
13978         * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
13979         (calendar-mark-date-pattern):
13980         Prefix "unused" locals.
13982         * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
13983         optional argument `style'.
13985         * calendar/appt.el (appt-make-list):
13986         * calendar/cal-china.el (calendar-chinese-date-string):
13987         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
13988         (diary-hebrew-yahrzeit):
13989         * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
13990         * calendar/calendar.el (calendar-generate-window):
13991         * calendar/time-date.el (time-to-days):
13992         Remove unused local variables.
13994 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
13996         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
13997         glyphless-char-display table.
13998         (tabulated-list-glyphless-char-display): New var.
14000 2011-04-18  Sam Steingold  <sds@gnu.org>
14002         * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
14003         to acknowledgments.
14005 2011-04-17  Glenn Morris  <rgm@gnu.org>
14007         * calendar/diary-lib.el (diary-sexp-entry):
14008         * calendar/holidays.el (holiday-sexp):
14009         Set debug-on-error rather than the removed stack-trace-on-error.
14011 2011-04-16  Glenn Morris  <rgm@gnu.org>
14013         * progmodes/f90.el: Use lexical-binding.
14014         (f90-get-correct-indent): Remove unnecessary local variable `cont'.
14016 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14018         * mail/sendmail.el (mail-mode-map): Use completion-at-point.
14019         (mail-mode): Setup mailalias completion here instead.
14020         * mail/mailalias.el: Use lexical-binding.
14021         (pattern, mailalias-done): Declare dynamic.
14022         (mail-completion-at-point-function): New function, from mail-complete.
14023         (mail-complete): Use it.
14024         (mail-completion-expand): New function.
14025         (mail-get-names): Use it.
14026         (mail-directory, mail-directory-process, mail-directory-stream):
14027         Don't use `pattern' for lexically bound arg.
14029         * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
14031         * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
14032         (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
14033         (hfy-etags-cmd-alist): Don't eval-and-compile any more.
14035         * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
14036         (byte-save-window-excursion, byte-temp-output-buffer-setup)
14037         (byte-interactive-p): Define them again, for use when inlining
14038         old code.
14040 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
14042         * loadup.el: Use `string-to-number', not `string-to-int'.
14044 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14046         * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
14047         gud-gdb-complete-command.
14048         (gud-gdb-completions): New function, from gud-gdb-complete-command.
14049         (gud-gdb-completion-at-point): New function.
14050         (gud-gdb-completions): Remove.
14052 2011-04-14  Michael Albinus  <michael.albinus@gmx.de>
14054         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
14055         when the scripts fail.  Use `tramp-do-file-attributes-with-ls' then.
14056         (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
14057         whether `executable-find' is bound.
14059         * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
14061 2011-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14063         * minibuffer.el (completion-in-region-mode-predicate)
14064         (completion-in-region-mode--predicate): New vars.
14065         (completion-in-region, completion-in-region--postch)
14066         (completion-in-region-mode): Use them.
14067         (completion--capf-wrapper): Also return the hook function.
14068         (completion-at-point, completion-help-at-point):
14069         Adjust and provide a predicate.
14071         Preserve arg names for advice of subr and lexical functions (bug#8457).
14072         * help-fns.el (help-function-arglist): Consolidate the subr and
14073         new-byte-code cases.  Add argument `preserve-names' to extract names
14074         from the docstring when needed.
14075         * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
14076         (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
14077         (ad-arglist): Use help-function-arglist's new arg.
14078         (ad-definition-type): Use cond.
14080 2011-04-13  Juanma Barranquero  <lekktu@gmail.com>
14082         * autorevert.el (auto-revert-handler):
14083         Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
14084         which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
14085         Don't quote lambda.
14087         * image-mode.el (image-transform-set-scale):
14088         Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
14090 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14092         * net/network-stream.el (network-stream-open-starttls): Only do
14093         opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
14094         Upgrades via gnutls-cli are too slow to be done opportunistically.
14096 2011-04-12  Juanma Barranquero  <lekktu@gmail.com>
14098         * dframe.el (dframe-current-frame): Remove spurious quote.
14100 2011-04-12  Glenn Morris  <rgm@gnu.org>
14102         * calendar/cal-tex.el (cal-tex-end-document):
14103         Try to automatically use latin1 input if needed.
14105         * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
14106         Don't try to cons a mark onto an empty element.
14108 2011-04-11  Leo Liu  <sdl.web@gmail.com>
14110         * ido.el (ido-buffer-internal): Allow method 'kill for virtual
14111         buffers.
14112         (ido-kill-buffer-at-head): Support killing virtual buffers.
14114 2011-04-10  Chong Yidong  <cyd@stupidchicken.com>
14116         * minibuffer.el (completion-show-inline-help): New var.
14117         (completion--do-completion, minibuffer-complete)
14118         (minibuffer-force-complete, minibuffer-complete-word):
14119         Inhibit minibuffer messages if completion-show-inline-help is nil.
14121         * icomplete.el (icomplete-mode): Bind completion-show-inline-help
14122         to avoid interference from inline help (Bug#5849).
14124 2011-04-10  Leo Liu  <sdl.web@gmail.com>
14126         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14127         Fix typo.
14129 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
14131         * image-mode.el (image-toggle-display-image): Signal an error if
14132         not in Image mode.
14133         (image-transform-mode, image-transform-resize)
14134         (image-transform-set-rotation): Doc fix.
14135         (image-transform-set-resize): Delete.
14136         (image-transform-set-scale, image-transform-fit-to-height)
14137         (image-transform-fit-to-width): Handle image-toggle-display-image
14138         and image-transform-resize directly.
14140 2011-04-08  Sho Nakatani  <lay.sakura@gmail.com>
14142         * doc-view.el (doc-view-fit-width-to-window)
14143         (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
14144         New functions for fitting the shown image to the Emacs window size.
14145         (doc-view-mode-map): Add bindings for the new functions.
14147 2011-04-08  Juanma Barranquero  <lekktu@gmail.com>
14149         * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
14150         Fix typo in docstring.
14152 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
14154         * files.el (file-size-human-readable): Produce one digit after
14155         decimal, like "ls -lh" does.
14157         * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
14158         the file size representation.
14160         * simple.el (list-processes): If async subprocesses are not
14161         available, error out with a clear error message.
14163 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
14165         * help.el (help-form-show): New function, to be called from C.
14166         Put help-form output in a buffer named differently than *Help*.
14168 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
14170         * files.el (file-size-human-readable): New function.
14172         * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
14173         computing the representation inline.  Don't require `cl'.
14175 2011-04-08  Glenn Morris  <rgm@gnu.org>
14177         * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
14179         * net/browse-url.el (browse-url-firefox):
14180         Test system-type, not system-configuration.
14182         * vc/log-edit.el (log-edit-empty-buffer-p): New function.
14183         (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
14184         Use log-edit-empty-buffer-p.  (Bug#7598)
14186         * net/rlogin.el (rlogin-process-connection-type): Simplify.
14187         (rlogin-mode-map): Initialize in the defvar.
14188         (rlogin): Use ignore-errors.
14190         * replace.el (occur-mode-map): Some fixes for menu items.
14192 2011-04-07  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
14194         * play/morse.el (denato-region): Handle varying case.  (Bug#8386)
14196 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
14198         * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
14199         issuing unused warnings.
14201         * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
14202         macro directly.
14204         * simple.el: Lisp reimplement of list-processes.  Based on an
14205         earlier reimplementation by Leo Liu, but using tabulated-list.el.
14206         (process-menu-mode): New major mode.
14207         (list-processes--refresh, list-processes):
14208         (process-menu-visit-buffer): New functions.
14210         * files.el (save-buffers-kill-emacs): Don't assume any return
14211         value of list-processes, which is undocumented anyway.
14213 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
14215         * emacs-lisp/tabulated-list.el: New file.
14217         * emacs-lisp/package.el: Use Tabulated List mode.
14218         (package-menu-mode-map): Inherit from tabulated-list-mode-map.
14219         (package-menu-mode): Derive from tabulated-list-mode.  Set up the
14220         table format using Tabulated List mode variables.
14221         (package--push): New macro, replacing package-list-maybe-add.
14222         (package-menu--generate): Use package--push.  Renamed from
14223         package--generate-package-list.
14224         (package-menu-refresh, list-packages): Use it.
14225         (package-menu--print-info): Rename from package-print-package.
14226         Return insertion data instead of inserting it directly.
14227         (package-menu-describe-package, package-menu-execute):
14228         Use tabulated-list-get-id.
14229         (package-menu-mark-delete, package-menu-mark-install)
14230         (package-menu-mark-unmark, package-menu-backup-unmark)
14231         (package-menu-mark-obsolete-for-deletion):
14232         Use tabulated-list-put-tag.
14233         (package--list-packages, package-menu-revert)
14234         (package-menu-get-package, package-menu-get-version)
14235         (package-menu-sort-by-column): Functions deleted.
14236         (package-menu-package-list, package-menu-sort-key): Vars deleted.
14237         (package-menu--status-predicate, package-menu--version-predicate)
14238         (package-menu--name-predicate)
14239         (package-menu--description-predicate): Handle arguments in the
14240         Tabulated List format.
14241         (package-list-packages-no-fetch): Call list-packages.
14243 2011-04-06  Juanma Barranquero  <lekktu@gmail.com>
14245         * files.el (after-find-file-from-revert-buffer): Remove variable.
14246         (after-find-file): Don't bind it.
14247         (revert-buffer-in-progress-p): New variable.
14248         (revert-buffer): Bind it.
14249         Pass nil for `after-find-file-from-revert-buffer'.
14251         * saveplace.el (save-place-find-file-hook): Use new variable
14252         `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
14254 2011-04-06  Glenn Morris  <rgm@gnu.org>
14256         * Makefile.in (AUTOGEN_VCS): New variable.
14257         (autoloads): Use $AUTOGEN_VCS.
14259         * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
14260         * calendar/calendar.el (calendar-mode-map):
14261         Check for toolkit scroll bars.  (Bug#8305)
14263 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
14265         * minibuffer.el (completion-in-region--postch)
14266         (completion-in-region-mode): Remove unnecessary messages.
14268 2011-04-05  Juanma Barranquero  <lekktu@gmail.com>
14270         * font-lock.el (font-lock-refresh-defaults):
14271         Don't bind `hi-lock--inhibit-font-lock-hook', removed in
14272         2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
14274         * info.el (Info-directory-list, Info-read-node-name-2)
14275         (Info-split-parameter-string): Doc fixes.
14276         (Info-virtual-nodes): Reflow docstring.
14277         (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
14278         (Info-apropos-toc-nodes, info-finder, Info-get-token)
14279         (Info-find-emacs-command-nodes, Info-speedbar-key-map):
14280         Fix typos in docstrings.
14281         (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
14282         (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
14283         (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
14284         (Info-restore-desktop-buffer): Mark unused parameters.
14285         (Info-directory-find-file, Info-directory-find-node)
14286         (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
14287         (Info-virtual-index-find-node, Info-apropos-find-file)
14288         (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
14289         Mark unused parameters; fix typos in docstrings.
14290         (Info-virtual-index): Remove unused local variable `nodename'.
14292 2011-04-05  Deniz Dogan  <deniz@dogan.se>
14294         * net/rcirc.el: Update my e-mail address.
14295         (rcirc-mode-map): Remove M-o binding.
14297 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
14299         * startup.el (command-line): Save the cursor's theme-face
14300         directly, instead of using face-override-spec.
14302         * custom.el (load-theme): Minor optimization in assigning faces.
14304 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
14306         * help-fns.el (describe-variable): Complete all variables having
14307         documentation, including keywords.
14308         http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
14310 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
14312         Convert to lexical-binding.
14314         * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
14315         (bs--get-marked-string, bs--get-modified-string)
14316         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
14317         (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
14318         (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
14320         * ehelp.el (electric-help-execute-extended)
14321         (electric-help-ctrl-x-prefix):
14322         * hexl.el (hexl-revert-buffer-function):
14323         * linum.el (linum-after-change, linum-after-scroll):
14324         * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
14326         * help-fns.el (help-describe-category-set): Remove unused ERR variable.
14328 2011-04-04  Daiki Ueno  <ueno@unixuser.org>
14330         * epa-dired.el:
14331         * epa-mail.el:
14332         * epa-hook.el:
14333         * epa-file.el:
14334         * epa.el:
14335         * epg.el: Use lexical binding.
14337 2011-04-03  Chong Yidong  <cyd@stupidchicken.com>
14339         * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
14341         * textmodes/flyspell.el (flyspell-word): Recognize default
14342         dictionary case for flyspell-mark-duplications-exceptions.
14343         Use regexp matching for languages.
14344         (flyspell-mark-duplications-exceptions): Add "that" and "had" for
14345         default dictionary (Bug#7926).
14347 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
14349         * emacs-lisp/package.el (package--with-work-buffer):
14350         Recognize https URLs.
14352         * net/network-stream.el: Move from gnus/proto-stream.el.
14353         Change prefix to network-stream throughout.
14354         (open-protocol-stream): Merge into open-network-stream, leaving
14355         open-protocol-stream as an alias.  Handle nil BUFFER args.
14357         * subr.el (open-network-stream): Move to net/network-stream.el.
14359 2011-04-02  Glenn Morris  <rgm@gnu.org>
14361         * find-dired.el (find-exec-terminator): New option.
14362         (find-ls-option): Test for -ls support.
14363         (find-ls-subdir-switches): Test for -b in find-ls-option.
14364         (find-dired, find-grep-dired): Doc fixes.
14365         (find-dired): Use find-exec-terminator.
14367         * find-dired.el (find-ls-option, find-ls-subdir-switches)
14368         (find-grep-options): Do not autoload these defcustoms, remove purecopy.
14369         (find-name-arg): Remove purecopy.
14371         * progmodes/grep.el (grep-find-use-xargs): Doc fix.
14372         (grep-compute-defaults): Check for `-exec COMMAND +' support.
14373         Set grep-find-use-xargs, grep-find-command, and grep-find-template
14374         accordingly.  Don't add the null-device if not needed.
14376         * files.el (save-some-buffers): Doc fix.
14378 2011-04-02  Eli Zaretskii  <eliz@gnu.org>
14380         * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
14382 2011-04-01  Juanma Barranquero  <lekktu@gmail.com>
14384         * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
14385         Use `dolist' rather than `mapcar'.
14387 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14389         Add lexical binding.
14391         * subr.el (apply-partially): Use new closures rather than CL.
14392         (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
14393         (dolist, dotimes): Use slightly different expansion for lexical code.
14394         (functionp): Move to C.
14395         (letrec): New macro.
14396         (with-wrapper-hook): Use it and apply-partially instead of CL.
14397         (eval-after-load): Preserve lexical-binding.
14398         (save-window-excursion, with-output-to-temp-buffer): Turn them
14399         into macros.
14401         * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
14403         * help-fns.el (help-split-fundoc): Return nil if there's nothing else
14404         than the arglist.
14405         (help-add-fundoc-usage): Don't add `Not documented'.
14406         (help-function-arglist): Handle closures, subroutines, and new
14407         byte-code-functions.
14408         (help-make-usage): Remove leading underscores.
14409         (describe-function-1): Handle closures.
14410         (describe-variable): Use special-variable-p for completion.
14412         * files.el (lexical-binding): Declare safe.
14414         * emacs-lisp/pcase.el: Don't use destructuring-bind.
14415         (pcase--memoize): Rename from pcase-memoize.  Change weakness.
14416         (pcase): Add `let' pattern.
14417         Change memoization so it actually works.
14418         (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
14419         (pcase--u1) <guard, pred>: Fix possible shadowing problem.
14420         <let>: New case.
14422         * emacs-lisp/macroexp.el: Use lexical binding.
14423         (macroexpand-all-1): Check obsolete macros.  Expand compiler-macros.
14424         Don't convert ' to #' without checking that it's indeed quoting
14425         a lambda.
14427         * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
14428         Use eval-sexp-add-defvars.
14429         (eval-sexp-add-defvars): New fun.
14431         * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
14433         * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
14434         Don't autoload.
14435         (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
14436         than the internal `byte-compile-lambda'.
14437         (defmethod): Don't hide code under quotes.
14438         (eieio-defmethod): New `code' argument.
14440         * emacs-lisp/eieio-comp.el: Remove.
14442         * emacs-lisp/edebug.el (edebug-eval-defun)
14443         (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
14444         (edebug-toggle): Avoid `eval'.
14446         * emacs-lisp/disass.el (disassemble-internal): Handle new
14447         `closure' objects.
14448         (disassemble-1): Handle new byte codes.
14450         * emacs-lisp/cl.el (pushnew): Silence warning.
14452         * emacs-lisp/cl-macs.el (cl-byte-compile-block)
14453         (cl-byte-compile-throw): Remove.
14454         (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
14456         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
14457         closures.
14459         * emacs-lisp/cconv.el: New file.
14461         * emacs-lisp/bytecomp.el: Use lexical binding instead of
14462         a "bytecomp-" prefix.  Macroexpand everything as a separate phase.
14463         (byte-compile-initial-macro-environment):
14464         Handle declare-function here.
14465         (byte-compile--lexical-environment): New var.
14466         (byte-stack-ref, byte-stack-set, byte-discardN)
14467         (byte-discardN-preserve-tos): New lap codes.
14468         (byte-interactive-p): Don't use any more.
14469         (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
14470         New macros.
14471         (byte-compile-lapcode): Use them and handle new lap codes.
14472         (byte-compile-obsolete): Remove.
14473         (byte-compile-arglist-signature): Handle new byte-code arg"lists".
14474         (byte-compile-arglist-warn): Check late def of inlinable funs.
14475         (byte-compile-cl-warn): Don't silence warnings for compiler-macros
14476         since they should have been expanded by now.
14477         (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
14478         (byte-compile-from-buffer): Remove unused second arg.
14479         (byte-compile-preprocess): New function.
14480         (byte-compile-toplevel-file-form): New function to distinguish
14481         file-form calls from outside from file-form calls from hunk-handlers.
14482         (byte-compile-file-form): Simplify.
14483         (byte-compile-file-form-defsubst): Remove.
14484         (byte-compile-file-form-defmumble): Simplify now that
14485         byte-compile-lambda always returns a byte-code-function.
14486         (byte-compile): Preprocess.
14487         (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
14488         Remove, not used any more.
14489         (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
14490         (byte-compile-make-args-desc): New funs.
14491         (byte-compile-lambda): Handle lexical functions.  Always return
14492         a byte-code-function.
14493         (byte-compile-reserved-constants): New var, to make up room for
14494         closed-over variables.
14495         (byte-compile-constants-vector): Obey it.
14496         (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
14497         (byte-compile-macroexpand-declare-function): New function.
14498         (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
14499         byte-code-functions.
14500         (byte-compile-form): Check obsolescence here.
14501         (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
14502         (byte-compile-variable-ref): Remove.
14503         (byte-compile-dynamic-variable-op): New fun.
14504         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
14505         (byte-compile-variable-set): New funs.
14506         (byte-compile-discard): Add 2 args.
14507         (byte-compile-stack-ref, byte-compile-stack-set)
14508         (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
14509         (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
14510         macroexpand-all instead.
14511         (byte-compile-quote-form): Remove.
14512         (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
14513         (byte-compile-bind, byte-compile-unbind): New funs.
14514         (byte-compile-let): Handle let* and lexical binding.
14515         (byte-compile-let*): Remove.
14516         (byte-compile-catch, byte-compile-unwind-protect)
14517         (byte-compile-track-mouse, byte-compile-condition-case):
14518         Handle a new :fun-body form, used for lexical scoping.
14519         (byte-compile-save-window-excursion)
14520         (byte-compile-with-output-to-temp-buffer): Remove.
14521         (byte-compile-defun): Simplify.
14522         (byte-compile-stack-adjustment): New fun.
14523         (byte-compile-out): Use it.
14524         (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
14526         * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
14527         handler any more.
14529         * emacs-lisp/byte-opt.el: Use lexical binding.
14530         (byte-inline-lapcode): Remove (to bytecomp).
14531         (byte-compile-inline-expand): Pay attention to inlining to/from
14532         lexically bound code.
14533         (byte-compile-unfold-lambda): Don't handle byte-code-functions
14534         any more.
14535         (byte-optimize-form-code-walker): Don't handle save-window-excursion
14536         any more and don't call compiler-macros.
14537         (byte-compile-splice-in-already-compiled-code): Remove.
14538         (byte-code): Don't inline any more.
14539         (disassemble-offset): Receive `bytes' as argument rather than via
14540         dynamic scoping.
14541         (byte-compile-tag-number): Declare before first use.
14542         (byte-decompile-bytecode-1): Handle new byte-codes, don't change
14543         `return' even if make-spliceable.
14544         (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
14545         obsolete interactive-p.
14546         (byte-optimize-lapcode): Optimize new lap-codes.
14547         Don't trip up on new form of `byte-constant' lap code.
14549         * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
14551         * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
14553         * custom.el (custom-initialize-default, custom-declare-variable):
14554         Use `defvar'.
14556         * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
14557         New variables.
14558         (compile-onefile, .el.elc, compile-calc, recompile): Use them.
14559         (COMPILE_FIRST): Add macroexp and cconv.
14560         * makefile.w32-in: Mirror changes in Makefile.in.
14562         * vc/cvs-status.el:
14563         * vc/diff-mode.el:
14564         * vc/log-edit.el:
14565         * vc/log-view.el:
14566         * vc/smerge-mode.el:
14567         * textmodes/bibtex-style.el:
14568         * textmodes/css.el:
14569         * startup.el:
14570         * uniquify.el:
14571         * minibuffer.el:
14572         * newcomment.el:
14573         * reveal.el:
14574         * server.el:
14575         * mpc.el:
14576         * emacs-lisp/smie.el:
14577         * doc-view.el:
14578         * dired.el:
14579         * abbrev.el: Use lexical binding.
14581 2011-04-01  Eli Zaretskii  <eliz@gnu.org>
14583         * info.el (info-display-manual): New function.
14585 2011-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
14587         * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
14589 2011-03-31  Tassilo Horn  <tassilo@member.fsf.org>
14591         * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
14592         an entry for that server in rcirc-authinfo.  (Bug#8385)
14594 2011-03-31  Glenn Morris  <rgm@gnu.org>
14596         * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
14598         * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
14600 2011-03-30  Christoph Scholtes  <cschol2112@googlemail.com>
14602         * progmodes/python.el (python-default-interpreter)
14603         (python-python-command-args, python-jython-command-args)
14604         (python-which-shell, python-which-args, python-which-bufname)
14605         (python-file-queue, python-comint-output-filter-function)
14606         (python-toggle-shells, python-shell): Remove obsolete defcustoms,
14607         variables and functions.
14609 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14611         * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
14612         (completion-in-region-mode): New minor mode.
14613         (completion-in-region): Use it.
14614         (completion-in-region--data, completion-in-region-mode-map): New vars.
14615         (completion-in-region--postch): New function.
14616         (completion--capf-misbehave-funs, completion--capf-safe-funs):
14617         New vars.
14618         (completion--capf-wrapper): New function.
14619         (completion-at-point): Use it to track well-behavedness of
14620         hook functions.
14621         (completion-help-at-point): New command.
14623 2011-03-30  Jason Merrill  <jason@redhat.com>  (tiny change)
14625         * vc/add-log.el (add-change-log-entry): Don't use whitespace
14626         syntax class to search for whitespace on a single line
14627         (Message-ID: <4D938140.4030905@redhat.com>).
14629 2011-03-30  Leo Liu  <sdl.web@gmail.com>
14631         * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
14632         New commands.
14633         (edit-abbrevs-map): Bind them here.
14634         (write-abbrev-file): New optinal arg VERBOSE.  (Bug#5937)
14636 2011-03-29  Ken Manheimer  <ken.manheimer@gmail.com>
14638         * allout.el (allout-hide-by-annotation, allout-flag-region):
14639         Reduce possibility of overlay leakage by making them volatile.
14641         * allout-widgets.el (allout-widgets-tally): Define as nil so the
14642         hash is not shared between buffers.  Mode initialization is
14643         responsible for giving it a useful starting value.
14644         (allout-item-span): Reduce possibility of overlay leakage by
14645         making them volatile.
14646         (allout-widgets-count-buttons-in-region): Add diagnostic function
14647         for tracking down button overlay leaks.
14649 2011-03-29  Leo Liu  <sdl.web@gmail.com>
14651         * ido.el (ido-read-internal): Use the default history var
14652         minibuffer-history if no HISTORY is specified.
14654 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
14656         * net/imap.el (imap-shell-open, imap-process-connection-type):
14657         Use imap-process-connection-type for 'shell' streams as well as
14658         Kerberos, SSL, other subprocesses.
14660 2011-03-28  Leo Liu  <sdl.web@gmail.com>
14662         * abbrev.el (abbrev-table-empty-p): New function.
14663         (prepare-abbrev-list-buffer): Place empty abbrev tables after
14664         nonempty ones.  (Bug#5937)
14666 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
14668         * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
14670 2011-03-27  Leo Liu  <sdl.web@gmail.com>
14672         * ansi-color.el (ansi-color-names-vector): Allow cons cell value
14673         for foreground and background colors.
14674         (ansi-color-make-color-map): Adapt.
14676 2011-03-25  Leo Liu  <sdl.web@gmail.com>
14678         * midnight.el (midnight-time-float): Remove.  Note it calculates
14679         the microsecond component incorrectly and seconds-to-time does the
14680         same job.
14681         Remove redundant (require 'timer).
14683         * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
14684         (ido-completions): Remove unused arguments.  (Bug#8329)
14686 2011-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14688         * minibuffer.el (completion--flush-all-sorted-completions):
14689         Remove itself from hook.
14690         (completion-at-point): Let the functions perform the completion
14691         immediately and return nil or t.
14692         * comint.el (comint-dynamic-complete-functions): Now identical to
14693         completion-at-point-functions.
14694         (comint-dynamic-list-input-ring): Remove unused var `index'.
14695         (comint--match-partial-filename, comint--unquote&expand-filename):
14696         New funs, split from comint-match-partial-filename.
14697         (comint-dynamic-complete): Use completion-at-point.
14698         (comint-dynamic-complete-filename): Use comint--match-partial-filename.
14700 2011-03-24  Drew Adams  <drew.adams@oracle.com>
14702         * thingatpt.el: Support `defun'.
14704 2011-03-23  Leo Liu  <sdl.web@gmail.com>
14706         * abbrevlist.el: Move to obsolete/abbrevlist.el.
14708         * help-mode.el (help-mode-finish): Tweak regexp.
14710 2011-03-23  Glenn Morris  <rgm@gnu.org>
14712         * eshell/esh-opt.el (eshell-eval-using-options):
14713         Do not bind unused local variable `eshell-option-stub'.
14715         * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
14717 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
14719         * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
14720         keymap variable in `with-no-warnings' to avoid a warning when the
14721         keymap has been already `defconst'ed.
14723 2011-03-22  Leo Liu  <sdl.web@gmail.com>
14725         * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
14726         encode all chars in abbrevs; otherwise use emacs-mule or
14727         utf-8-emacs.  (Bug#8308)
14729 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
14731         * simple.el (backward-delete-char-untabify):
14732         Avoid warning about using `delete-backward-char'.
14734         * image.el (image-type-file-name-regexps): Make it variable.
14735         `imagemagick-register-types' modifies it, and the user may want
14736         to add new extensions for known image types.
14737         (imagemagick-register-types): Throw error if not using ImageMagick.
14739 2011-03-22  Leo Liu  <sdl.web@gmail.com>
14741         * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
14742         located before rcirc-prompt-end-marker.
14743         (rcirc-complete): Error if point is not after rcirc prompt.
14744         Handle the case when table is nil.
14745         (rcirc-user-authenticated): Define to fix compiler warning.
14747 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
14749         * custom.el (custom--inhibit-theme-enable): Make it affect only
14750         custom-theme-set-variables and custom-theme-set-faces.
14751         (provide-theme): Ignore custom--inhibit-theme-enable.
14752         (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
14753         (custom-enabling-themes): Delete variable.
14754         (enable-theme): Accept only loaded themes as arguments.
14755         Ignore the special custom-enabled-themes variable.
14756         (custom-enabled-themes): Forbid themes from setting this.
14757         Eliminate use of custom-enabling-themes.
14758         (custom-push-theme): Quote "changed" custom var entry.
14760 2011-03-21  Leo Liu  <sdl.web@gmail.com>
14762         * ido.el (ido-read-internal): Add ido-selected to history instead
14763         of user input.
14765 2011-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14767         * subr.el (deferred-action-list, deferred-action-function):
14768         Mark obsolete.
14770 2011-03-21  Leo Liu  <sdl.web@gmail.com>
14772         * vc/log-view.el: Remove (require 'wid-edit), not needed after the
14773         change on 2011-02-13 (bug#8309).
14775         * minibuffer.el (read-file-name-function): Change default value.
14776         (read-file-name--defaults): Rename from read-file-name-defaults.
14777         (read-file-name-default): Rename from read-file-name.
14778         (read-file-name): Call read-file-name-function.
14780 2011-03-21  Glenn Morris  <rgm@gnu.org>
14782         * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
14783         Doc fixes.
14785 2011-03-21  Chong Yidong  <cyd@stupidchicken.com>
14787         * cus-theme.el: Add missing provide statement.
14788         (customize-create-theme): Extract theme value correctly.
14789         (custom-theme-visit-theme): Autoload.
14790         (customize-create-theme): Prompt before inserting default faces.
14792 2011-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
14794         * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
14795         units and musical notes.
14797 2011-03-20  Leo Liu  <sdl.web@gmail.com>
14799         * ido.el (ido-read-internal): Use completing-read-default.
14800         (ido-completing-read): Fix compatibility with completing-read.
14802 2011-03-20  Christian Ohler  <ohler@gnu.org>
14804         * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
14805         (ert-delete-all-tests): Use `called-interactively-p' rather than
14806         `interactive-p'.
14807         (ert--make-xrefs-region): Respect END.
14809 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
14811         * dired-aux.el (dired-create-directory): Signal an error if the
14812         directory already exists (Bug#8246).
14814         * facemenu.el (list-colors-display): Call list-faces-display
14815         inside with-help-window.
14816         (list-colors-print): Use display property to align the final
14817         column, instead of checking window-width.
14819 2011-03-19  Eli Zaretskii  <eliz@gnu.org>
14821         * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
14822         windows-nt systems.
14823         (emerge-protect-metachars): Quote correctly for ms-dos and
14824         windows-nt systems.
14826 2011-03-19  Ralph Schleicher  <rs@ralph-schleicher.de>
14828         * info.el (info-initialize): Replace all uses of `:' with
14829         path-separator for compatibility with non-Unix systems.
14830         Cache quoting of path-separator.  (Bug#8258)
14832 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
14834         * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
14835         (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
14836         (mouse-avoidance-mode): Fix typos in docstrings.
14838 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
14840         * startup.el (package-subdirectory-regexp): Move from package.el.
14841         Omit \\` and \\', and let callers add them.
14843         * emacs-lisp/package.el (package-strip-version)
14844         (package-load-all-descriptors): Add \\` and \\' to
14845         package-subdirectory-regexp before using it.
14846         (package-untar-buffer): New arg DIR; ensure that file untars only
14847         into this expected directory.  Remove superfluous delete-region.
14848         (package-unpack): Caller changed.
14849         (package-tar-file-info): Use package-subdirectory-regexp.
14851 2011-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14853         * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
14854         diff-mode-shared-map (bug#8284).
14855         (diff-mode-shared-map): Re-introduce some bindings that were problematic.
14857 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14859         * calendar/time-date.el (format-seconds): Use assoc instead of
14860         assoc-string, since assoc-string doesn't exist in XEmacs.
14862 2011-03-17  Juanma Barranquero  <lekktu@gmail.com>
14864         * custom.el (custom-known-themes): Reflow docstring.
14865         (custom-theme-load-path): Fix typo in docstring.
14866         (load-theme): Fix typo in error message.
14867         (custom-available-themes, custom-variable-theme-value):
14868         Use `let', not `let*'.
14870 2011-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
14872         * calc/README: Mention inclusion of musical notes.
14874         * calc/calc-units.el (calc-lu-quant): Rename from
14875         `calc-logunits-quantity'.
14876         (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
14877         (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
14878         (calc-db): Rename from `calc-dblevel'.
14879         (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
14880         (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
14881         (calc-np): Rename from `calc-nplevel'.
14882         (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
14883         (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
14884         (calc-lu-plus): Rename from `calc-logunits-add'.
14885         (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
14886         (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
14887         (calc-lu-minus): Rename from `calc-logunits-sub'.
14888         (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
14889         (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
14890         (calc-lu-times): Rename from `calc-logunits-mul'.
14891         (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
14892         (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
14893         (calc-lu-divide): Rename from `calc-logunits-div'.
14894         (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
14895         (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
14897         * calc/calc-ext.el (calc-init-extensions): Update the names of the
14898         functions being autoloaded.
14900         * calc/calc.el (calc-lu-power-reference): Rename from
14901         `calc-logunits-power-reference'.
14902         (calc-lu-field-reference): Rename from
14903         `calc-logunits-field-reference'.
14905         * calc/calc-help.el (calc-l-prefix-help):
14906         Mention musical note functions.
14908 2011-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14910         * minibuffer.el (completion-all-sorted-completions):
14911         Use :completion-cycle-penalty text property if present.
14913 2011-03-16  Ken Manheimer  <ken.manheimer@gmail.com>
14915         * allout.el (allout-yank-processing): Adjust for new rebulleting
14916         regime so bullet being yanked is used without prompting the user
14917         for a choice.
14919 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
14921         * startup.el (command-line): Warn the user that _emacs is deprecated.
14923 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
14925         * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
14926         (delphi-verbose, delphi-comment-face, delphi-string-face)
14927         (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
14928         (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
14929         (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
14930         (delphi-new-comment-line, delphi-font-lock-defaults)
14931         (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
14932         Fix typos in docstrings.
14934 2011-03-15  Ken Manheimer  <ken.manheimer@gmail.com>
14936         * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
14937         Invert the roles of character and string values for INSTEAD, so a
14938         string is used for the more common case of a defaulting prompt.
14940 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14942         * progmodes/ruby-mode.el (ruby-backward-sexp):
14943         * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
14944         * play/gamegrid.el (gamegrid-make-face):
14945         * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
14946         (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
14947         * notifications.el (notifications-notify):
14948         * net/xesam.el (xesam-search-engines):
14949         * net/quickurl.el (quickurl-list-insert):
14950         * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
14952 2011-03-15  Chong Yidong  <cyd@stupidchicken.com>
14954         * startup.el (command-line): Update package subdirectory regexp.
14956 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14958         * allout.el (allout-abbreviate-flattened-numbering)
14959         (allout-mode-deactivate-hook): Fix up obsolescence "date".
14961         * subr.el (read-char-choice): Only show the cursor after the prompt,
14962         not after the answer.
14964 2011-03-15  Kevin Ryde  <user42@zip.com.au>
14966         * help-fns.el (variable-at-point): Skip leading quotes, if any
14967         (bug#8253).
14969 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14971         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
14972         warning message.
14974 2011-03-14  Michael Albinus  <michael.albinus@gmx.de>
14976         * shell.el (shell): When called interactively, offer to change the
14977         shell file name on remote hosts.
14979 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
14981         * net/ldap.el (ldap-search-internal): Add `auth-source-search'
14982         integration for LDAP parameters.  The host, base, user or binddn,
14983         and secret tokens can be specified in a netrc file, for instance.
14984         This is optional because an `auth-source' parameter must be
14985         specified in the search attributes.
14987 2011-03-13  Juanma Barranquero  <lekktu@gmail.com>
14989         * help.el (describe-mode): Link to the mode's definition (bug#8185).
14991 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14993         * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
14994         into declaration.  Remove redundant and harmful binding.
14996 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
14998         * files.el (file-ownership-preserved-p): Pass `integer' as an
14999         explicit 2nd argument to `file-attributes'.  If the file's owner
15000         is the Administrators group on Windows, and the current user is
15001         Administrator, consider that a match.
15003         * server.el (server-ensure-safe-dir): Consider server directory
15004         safe on MS-Windows if its owner is the Administrators group while
15005         the current Emacs user is Administrator.  Use `=' to compare
15006         numerical UIDs, since they could be integers or floats.
15008 2011-03-12  Juanma Barranquero  <lekktu@gmail.com>
15010         * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
15012 2011-03-12  Michael Albinus  <michael.albinus@gmx.de>
15014         Sync with Tramp 2.2.1.
15016         * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
15018         * net/trampver.el: Update release number.
15020 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15022         * progmodes/compile.el (compilation--previous-directory): Fix up
15023         various nil/dead-marker mismatches (bug#8014).
15024         (compilation-directory-properties, compilation-error-properties):
15025         Don't call it at a position past the one we're about to change.
15027         * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
15028         Disable obsolescence warnings in the file that declares it.
15030 2011-03-11  Ken Manheimer  <ken.manheimer@gmail.com>
15032         * allout-widgets.el (allout-widgets-tally):
15033         Initialize allout-widgets-tally as a hash table rather than nil to
15034         prevent mode-line redisplay warnings.  Also, clarify the module
15035         description and fix a comment typo.
15037 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
15039         * help-fns.el (describe-variable): Don't complete keywords.
15040         Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
15042 2011-03-10  Chong Yidong  <cyd@stupidchicken.com>
15044         * emacs-lisp/package.el (package-version-join): Impose a standard
15045         string representation for pre/alpha/beta version lists.
15046         (package-unpack-single): Standardize the directory name by passing
15047         it through package-version-join.
15048         (package-strip-rcs-id): Accept any version string that does not
15049         signal an error in version-to-list.
15051 2011-03-10  Michael Albinus  <michael.albinus@gmx.de>
15053         * simple.el (delete-trailing-whitespace): Return nil for the
15054         benefit of `write-file-functions'.
15056 2011-03-10  Glenn Morris  <rgm@gnu.org>
15058         * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
15060         * vc/vc-git.el (vc-git-program): New option.
15061         (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
15062         (vc-git--call): Use it.
15064         * eshell/esh-util.el (eshell-condition-case): Doc fix.
15066         * cus-edit.el (Custom-newline): If no button at point, look
15067         for a subgroup button at start-of-line.  (Bug#2298)
15069         * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
15071 2011-03-10  Julien Danjou  <julien@danjou.info>
15073         * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
15074         `cursor-type' is nil.
15076 2011-03-09  Jay Belanger  <jay.p.belanger@gmail.com>
15078         * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
15080 2011-03-09  Ken Manheimer  <ken.manheimer@gmail.com>
15082         * allout.el: Change so yank of distinctive-bullet items
15083         preserves the existing header prefix, rebulleting it if necessary,
15084         rather than replacing it.  This is necessary for proper operation
15085         of cooperative addons like allout-widgets.
15086         (allout-make-topic-prefix, allout-rebullet-heading):
15087         Change SOLICIT arg to INSTEAD, and interpret additionally a string
15088         value as alternate bullet to be used, instead of prompting the user
15089         for a bullet character.
15091 2011-03-09  Michael Albinus  <michael.albinus@gmx.de>
15093         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15094         Do not use `tramp-file-name-port', because this returns also
15095         `tramp-default-port'.
15097 2011-03-09  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
15099         * net/rcirc.el (rcirc-handler-001): Remove useless
15100         with-rcirc-process-buffer.
15101         (rcirc-check-auth-status): Swap arguments to string-match.
15103 2011-03-09  Glenn Morris  <rgm@gnu.org>
15105         * shell.el (shell-mode):
15106         Set comint-input-ring-size from HISTSIZE.  (Bug#7889)
15108         * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
15109         Check for GDBHISTFILE, HISTSIZE, etc.  (Bug#7889)
15111 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
15113         * emacs-lisp/package.el (package-refresh-contents)
15114         (package-menu-execute): Use condition-case-no-debug.
15116 2011-03-08  Michael Albinus  <michael.albinus@gmx.de>
15118         * simple.el (shell-command-to-string): Use `process-file'.
15120         * emacs-lisp/package.el (package-tar-file-info): Handle also
15121         remote files.
15123         * emacs-lisp/package-x.el (package-upload-buffer-internal):
15124         Use `equal' for upload base check.
15126 2011-03-08  Arni Magnusson  <arnima@hafro.is>  (tiny change)
15128         * textmodes/texinfo.el (texinfo-environments):
15129         Add deftypecv, deftypeivar, deftypemethod, deftypeop, html.  (Bug#2783)
15131 2011-03-08  Glenn Morris  <rgm@gnu.org>
15133         * cus-start.el (cursor-in-non-selected-windows):
15134         Fix :set quoting oddness.  (Bug#8192)
15136         * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
15137         in some setf expressions.  (Bug#2159)
15139 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
15141         * custom.el (custom-available-themes): Return themes in
15142         alphabetical order.
15144 See ChangeLog.15 for earlier changes.
15146 ;; Local Variables:
15147 ;; coding: utf-8
15148 ;; End:
15150   Copyright (C) 2011-2012  Free Software Foundation, Inc.
15152   This file is part of GNU Emacs.
15154   GNU Emacs is free software: you can redistribute it and/or modify
15155   it under the terms of the GNU General Public License as published by
15156   the Free Software Foundation, either version 3 of the License, or
15157   (at your option) any later version.
15159   GNU Emacs is distributed in the hope that it will be useful,
15160   but WITHOUT ANY WARRANTY; without even the implied warranty of
15161   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15162   GNU General Public License for more details.
15164   You should have received a copy of the GNU General Public License
15165   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.