New syntax-propertize functionality.
[emacs.git] / lisp / ChangeLog
blob9728bea741489df5986a03e7fe05d28c37152592
1 2010-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
4         to replace texinfo-font-lock-syntactic-keywords.
5         (texinfo-mode): Use it.
7         * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
8         Use syntax-propertize-function.
10         * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
11         replace sgml-font-lock-syntactic-keywords.
12         (sgml-mode): Use it.
14         * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
15         since we don't use it.
17         * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
19         * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
20         if available.
21         (vhdl-fontify-buffer): Adjust.
23         * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
24         replace tcl-font-lock-syntactic-keywords.
25         (tcl-mode): Use it.
27         * progmodes/simula.el (simula-syntax-propertize-function): New var to
28         replace simula-font-lock-syntactic-keywords.
29         (simula-mode): Use it.
31         * progmodes/sh-script.el (sh-st-symbol): Remove.
32         (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
33         (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
34         (sh-font-lock-quoted-subshell): Assume we've already matched $(.
35         (sh-font-lock-paren): Set syntax-multiline.
36         (sh-font-lock-syntactic-keywords): Remove.
37         (sh-syntax-propertize-function): New function to replace it.
38         (sh-mode): Use it.
40         * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
41         Define while compiling.
42         (ruby-here-doc-end-re, ruby-here-doc-beg-match)
43         (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
44         (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
45         (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
46         (ruby-here-doc-end-syntax): Only define when
47         syntax-propertize is not available.
48         (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
49         New functions.
50         (ruby-in-ppss-context-p): Update to new syntax of heredocs.
51         (electric-indent-chars): Silence bytecompiler.
52         (ruby-mode): Use prog-mode, syntax-propertize-function, and
53         electric-indent-chars.
55         * progmodes/python.el (python-syntax-propertize-function): New var to
56         replace python-font-lock-syntactic-keywords.
57         (python-mode): Use it.
58         (python-quote-syntax): Simplify and adjust to new use.
60         * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
61         replace perl-font-lock-syntactic-keywords.
62         (perl-syntax-propertize-special-constructs): New fun to replace
63         perl-font-lock-special-syntactic-constructs.
64         (perl-font-lock-syntactic-face-function): New fun.
65         (perl-mode): Use it.
67         * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
68         to replace octave-font-lock-close-quotes.
69         (octave-syntax-propertize-function): New function to replace
70         octave-font-lock-syntactic-keywords.
71         (octave-mode): Use it.
73         * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
74         replaces mixal-font-lock-syntactic-keywords.
75         (mixal-mode): Use it.
77         * progmodes/make-mode.el (makefile-syntax-propertize-function):
78         New var; replaces makefile-font-lock-syntactic-keywords.
79         (makefile-mode): Use it.
80         (makefile-imake-mode): Adjust.
82         * progmodes/js.el (js--regexp-literal): Define while compiling.
83         (js-syntax-propertize-function): New var; replaces
84         js-font-lock-syntactic-keywords.
85         (js-mode): Use it.
87         * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
88         replaces gdb-script-font-lock-syntactic-keywords.
89         (gdb-script-mode): Use it.
91         * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
92         (fortran--font-lock-syntactic-keywords): New var.
93         (fortran-line-length): Update syntax-propertize-function and
94         fortran--font-lock-syntactic-keywords.
96         * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
98         * progmodes/cfengine.el (cfengine-mode):
99         Use syntax-propertize-function.
100         (cfengine-font-lock-syntactic-keywords): Remove.
102         * progmodes/autoconf.el (autoconf-mode):
103         Use syntax-propertize-function.
104         (autoconf-font-lock-syntactic-keywords): Remove.
106         * progmodes/ada-mode.el (ada-set-syntax-table-properties)
107         (ada-after-change-function, ada-initialize-syntax-table-properties)
108         (ada-handle-syntax-table-properties): Only define when
109         syntax-propertize is not available.
110         (ada-mode): Use syntax-propertize-function.
112         * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
113         (font-lock-fontify-syntactic-keywords-region): Move handling of
114         font-lock-syntactically-fontified to...
115         (font-lock-default-fontify-region): ...here.
116         Let syntax-propertize-function take precedence.
117         (font-lock-fontify-syntactically-region): Cal syntax-propertize.
119         * emacs-lisp/syntax.el (syntax-propertize-function)
120         (syntax-propertize-chunk-size, syntax-propertize--done)
121         (syntax-propertize-extend-region-functions): New vars.
122         (syntax-propertize-wholelines, syntax-propertize-multiline)
123         (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
124         (syntax-propertize): New functions.
125         (syntax-propertize-rules): New macro.
126         (syntax-ppss-flush-cache): Set syntax-propertize--done.
127         (syntax-ppss): Call syntax-propertize.
129         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
131 2010-09-10  Agustín Martín  <agustin.martin@hispalinux.es>
133         * textmodes/ispell.el (ispell-init-process): Improve comments.
134         XEmacs compatibility changes regarding (add-hook) 'local option
135         and (set-process-query-on-exit-flag).
137 2010-09-09  Michael Albinus  <michael.albinus@gmx.de>
139         * net/tramp-cache.el (tramp-parse-connection-properties):
140         Set tramp-autoload cookie.
142 2010-09-09  Glenn Morris  <rgm@gnu.org>
144         * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
145         (imagemagick-register-types): Doc fix.
147 2010-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
149         * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
151         * progmodes/js.el (require): Require is already "eval-and-compile".
152         (js--re-search-forward): Avoid `eval'.  Preserve the error data.
153         (js--re-search-backward): Use js--re-search-forward.
155         * progmodes/fortran.el (fortran-line-length): Don't recompute
156         syntactic keywords redundantly a second time.
158         * progmodes/ada-mode.el: Replace "(set '" with setq.
159         (ada-mode): Simplify.
160         (ada-create-case-exception, ada-adjust-case-interactive)
161         (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
162         (ada-search-ignore-string-comment, ada-move-to-start)
163         (ada-move-to-end): Use with-syntax-table.
165         * font-lock.el (save-buffer-state): Remove `varlist' arg.
166         (font-lock-unfontify-region, font-lock-default-fontify-region):
167         Update usage correspondingly.
168         (font-lock-fontify-syntactic-keywords-region):
169         Set parse-sexp-lookup-properties buffer-locally here.
170         (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
172         * simple.el (blink-matching-open): Don't burp if we can't find a match.
174 2010-09-08  Glenn Morris  <rgm@gnu.org>
176         * emacs-lisp/bytecomp.el (byte-compile-report-ops):
177         Error if not compiled with -DBYTE_CODE_METER.
179         * emacs-lisp/bytecomp.el (byte-recompile-directory):
180         Ignore dir-locals-file.
182 2010-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
184         * progmodes/compile.el (compilation-error-regexp-alist-alist):
185         Not a const.
186         (compilation-error-regexp-alist-alist): Rule out ": " in file names
187         for the `gnu' messages.
188         (compilation-set-skip-threshold): New command.
189         (compilation-start): Use \' rather than $.
190         (compilation-forget-errors): Use clrhash.
192 2010-09-08  Agustín Martín  <agustin.martin@hispalinux.es>
194         * textmodes/ispell.el (ispell-valid-dictionary-list):
195         Simplify logic.
197 2010-09-08  Michael Albinus  <michael.albinus@gmx.de>
199         Migrate to Tramp 2.2.  Rearrange load dependencies.
200         (Bug#1529, Bug#5448, Bug#5705)
202         * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
203         ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
204         (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
206         * net/tramp.el (top): Remove all other tramp-* loads except
207         tramp-compat.el.  Remove all changes to tramp-unload-hook for
208         other tramp-* packages.  Rearrange defun order.  Change calls of
209         `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
210         `tramp-compat-octal-to-decimal' to new function names.
211         (tramp-terminal-type, tramp-initial-end-of-output)
212         (tramp-methods, tramp-foreign-file-name-handler-alist)
213         (tramp-tramp-file-p, tramp-completion-mode-p)
214         (tramp-send-command-and-check, tramp-get-remote-path)
215         (tramp-get-remote-tmpdir, tramp-get-remote-ln)
216         (tramp-shell-quote-argument): Set tramp-autoload cookie.
217         (with-file-property, with-connection-property): Move to
218         tramp-cache.el.
219         (tramp-local-call-process, tramp-decimal-to-octal)
220         (tramp-octal-to-decimal): Move to tramp-compat.el.
221         (tramp-handle-shell-command): Do not require 'shell.
222         (tramp-compute-multi-hops): No special handling for tramp-gw-*
223         symbols.
224         (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
226         * net/tramp-cache.el (top): Require 'tramp.  Add to
227         `tramp-unload-hook'.
228         (tramp-cache-data, tramp-get-file-property)
229         (tramp-set-file-property, tramp-flush-file-property)
230         (tramp-flush-directory-property, tramp-get-connection-property)
231         (tramp-set-connection-property, tramp-flush-connection-property)
232         (tramp-cache-print, tramp-list-connections): Set tramp-autoload
233         cookie.
234         (with-file-property, with-connection-property): New defuns, moved
235         from tramp.el.
236         (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
237         macro.
239         * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
240         (tramp-version): Set tramp-autoload cookie.
242         * net/tramp-compat.el (top): Require 'tramp-loaddefs.  Remove all
243         changes to tramp-unload-hook for other tramp-* packages.  Add to
244         `tramp-unload-hook'.
245         (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
246         (tramp-compat-call-process): New defuns, moved from tramp.el.
248         * net/tramp-fish.el (top) Require just 'tramp.  Add objects to
249         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
250         to `tramp-unload-hook'.  Change call of
251         `tramp-compat-decimal-to-octal' to new function name.
252         (tramp-fish-method): Make it a defconst.
253         (tramp-fish-file-name-p): Make it a defsubst.
254         (tramp-fish-method, tramp-fish-file-name-handler)
255         (tramp-fish-file-name-p): Set tramp-autoload cookie.
257         * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
258         `tramp-foreign-file-name-handler-alist'.  Add to
259         `tramp-unload-hook'.
260         (tramp-ftp-method): Make it a defconst.
261         (tramp-ftp-file-name-p): Make it a defsubst.
262         (tramp-ftp-method, tramp-ftp-file-name-handler)
263         (tramp-ftp-file-name-p): Set tramp-autoload cookie.
265         * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
266         `tramp-foreign-file-name-handler-alist'.  Add to
267         `tramp-unload-hook'.  Change checks, whether package can be
268         loaded.
269         (tramp-gvfs-file-name-p): Make it a defsubst.
270         (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
271         (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
272         (tramp-gvfs-handle-file-directory-p): New defun.
273         (tramp-gvfs-file-name-handler-alist): Use it.
275         * net/tramp-gw.el (top) Add objects to `tramp-methods' and
276         `tramp-foreign-file-name-handler-alist'.  Add to
277         `tramp-unload-hook'.
278         (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
279         (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
280         defconst.
281         (tramp-gw-tunnel-method, tramp-gw-socks-method)
282         (tramp-gw-open-connection): Set tramp-autoload cookie.
284         * net/tramp-imap.el (top) Require just 'tramp.  Add objects to
285         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
286         to `tramp-unload-hook'.  Change checks, whether package can be
287         loaded.
288         (tramp-imap-file-name-p): Make it a defsubst.
289         (tramp-imap-method, tramp-imaps-method)
290         (tramp-imap-file-name-handler)
291         (tramp-imap-file-name-p): Set tramp-autoload cookie.
293         * net/tramp-smb.el (top) Require just 'tramp.  Add objects to
294         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
295         to `tramp-unload-hook'.  Change checks, whether package can be
296         loaded.  Change call of `tramp-compat-decimal-to-octal' to new
297         function name.
298         (tramp-smb-tunnel-method): Make it a defconst.
299         (tramp-smb-file-name-p): Make it a defsubst.
300         (tramp-smb-method, tramp-smb-file-name-handler)
301         (tramp-smb-file-name-p): Set tramp-autoload cookie.
303         * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
304         (tramp-uuencode-region): Set tramp-autoload cookie.
306         * net/trampver.el (top) Add to `tramp-unload-hook'.
307         (tramp-version, tramp-bug-report-address): Set tramp-autoload
308         cookie.  Update release number.
310 2010-09-07  Agustín Martín  <agustin.martin@hispalinux.es>
312         * textmodes/ispell.el (ispell-start-process): Make sure original
313         arg list is properly initialized (Bug#6993, Bug#6994).
315 2010-09-06  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
317         * files.el (directory-abbrev-alist): Use \` as default regexp.
319         * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
320         chars like - or ] (bug#6984).
321         (rx-any-condense-range): Explode 2-char ranges.
323 2010-09-06  Glenn Morris  <rgm@gnu.org>
325         * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
327 2010-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
329         * textmodes/bibtex.el:
330         * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
332 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
334         * net/imap.el (imap-message-map): Remove optional buffer parameter,
335         since no callers use it.
336         (imap-message-get): Ditto.
337         (imap-message-put): Ditto.
338         (imap-mailbox-map): Ditto.
339         (imap-mailbox-put): Ditto.
340         (imap-mailbox-get): Ditto.
341         (imap-mailbox-get): Revert last change for this function.
343 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
345         * net/imap.el (imap-fetch-safe): Remove function, and alter all
346         callers to use `imap-fetch' instead.  According to the comments, this
347         should be safe, since all other IMAP clients use the 1:* syntax.
348         (imap-enable-exchange-bug-workaround): Remove.
349         (imap-debug): Remove -- doesn't seem very useful.
351 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
353         * net/imap.el (imap-log): New convenience function used throughout
354         instead of repeating the same code all over the place.
356 2010-09-05  David De La Harpe Golden  <david@harpegolden.net>
358         * mouse.el (mouse-save-then-kill): Save region to kill-ring
359         when mouse-drag-copy-region is non-nil (Bug#6956).
361 2010-09-05  Chong Yidong  <cyd@stupidchicken.com>
363         * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
364         Improve regexps (Bug#6987).
365         (dired-sort-toggle): Search more robustly for -t flag.
367         * files.el (get-free-disk-space): Search more robustly for
368         "available" column.  Suggested by Ehud Karni
369         <ehud@unix.mvs.co.il>.
371 2010-09-05  Juanma Barranquero  <lekktu@gmail.com>
373         * international/uni-bidi.el:
374         * international/uni-category.el:
375         * international/uni-combining.el:
376         * international/uni-decimal.el:
377         * international/uni-mirrored.el:
378         * international/uni-name.el: Regenerate.
380 2010-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
382         * electric.el (electric-indent-post-self-insert-function):
383         Don't reindent with a sloppy indentation function.
385         * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
386         border case in change-log-mode.
388 2010-09-04  Chong Yidong  <cyd@stupidchicken.com>
390         * progmodes/compile.el (compilation-error-regexp-alist-alist):
391         Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
392         Recognize leading tab in gcc-include regexp.  Ignore names with
393         leading "from" or "in" in gnu regexp (Bug#6937).
395 2010-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
397         Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
398         * textmodes/ispell.el (ispell-process-buffer-name): Remove.
399         (ispell-start-process): Avoid setq and simplify logic.
400         (ispell-init-process): Setup kill-buffer-hook locally when needed.
401         (kill-buffer-hook): Don't use it globally with code that uses
402         expand-file-name since that may call kill-buffer via
403         code_conversion_restore.
405 2010-09-04  Noorul Islam K M  <noorul@noorul.com>  (tiny change)
407         * emacs-lisp/package.el (package-directory-list): Only call
408         file-name-nondirectory on a string.
410 2010-09-02  Chong Yidong  <cyd@stupidchicken.com>
412         * emacs-lisp/package.el (package--download-one-archive):
413         Ensure that archive-contents is valid before saving it.
414         (package-activate-1, package-mark-obsolete, define-package)
415         (package-compute-transaction, package-list-maybe-add): Use push.
417 2010-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
419         Use SMIE's blink-paren for octave-mode.
420         * progmodes/octave-mod.el (octave-font-lock-close-quotes):
421         Backslashes do not escape single-quotes, single-quotes do.
422         (octave-block-else-regexp, octave-block-end-regexp)
423         (octave-block-match-alist): Remove.
424         (octave-smie-bnf-table): New var, with old content.
425         (octave-smie-op-levels): Use it.
426         (octave-smie-closer-alist): New var.
427         (octave-mode): Use it.  Setup smie-blink-matching and electric-indent.
428         (octave-blink-matching-block-open): Remove.
429         (octave-reindent-then-newline-and-indent, octave-electric-semi)
430         (octave-electric-space): Let self-insert-command run expand-abbrev and
431         blink parens.
433         * electric.el (electricity): New group.
434         (electric-indent-chars): New var.
435         (electric-indent-post-self-insert-function): New fun.
436         (electric-indent-mode): New minor mode.
437         (electric-pair-skip-self): New custom.
438         (electric-pair-post-self-insert-function): New function.
439         (electric-pair-mode): New minor mode.
441         * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
442         calcAlg-blink-matching-open.
443         (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
444         (calc-do-alg-entry): Only touch the part of the keymap that varies.
445         Use the new blink-matching-check-function.
447         Provide blink-matching support to SMIE.
448         * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
449         (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
450         (smie-blink-matching-check, smie-blink-matching-open): New functions.
452         * simple.el (newline): Fix last change to properly remove itself from
453         the hook.
455 2010-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
457         * simple.el (newline): Eliminate optimization.
458         Use post-self-insert-hook to set hard-newline and things before
459         running post-self-insert-hook.
460         (blink-matching-check-mismatch): New function.
461         (blink-matching-check-function): New variable.
462         (blink-matching-open): Use them.
463         Skip back forward over prefix chars skipped by forward-sexp.
464         Don't check if the parens are backslash escaped.
465         (blink-paren-post-self-insert-function): Check backslash escaping here.
467 2010-09-02  Chong Yidong  <cyd@stupidchicken.com>
469         * emacs-lisp/package.el (package-menu-mode-map):
470         Change package-menu-revert bindings to revert-buffer.
471         (package-menu-mode): Set revert-buffer-function.
472         (package-menu-revert): Doc fix.
474 2010-09-02  Agustín Martín  <agustin.martin@hispalinux.es>
476         * textmodes/ispell.el (ispell-init-process): Use "~/" as
477         `default-directory' unless using Ispell per-directory personal
478         dictionaries and not in a mini-buffer under XEmacs.
479         (kill-buffer-hook): Do not kill ispell process on exit when
480         `ispell-process-directory' is "~/". (Bug#6143)
482 2010-09-02  Jan Djärv  <jan.h.d@swipnet.se>
484         * simple.el (kill-new): Call interprogram-cut-function with only
485         one argument.
487         * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
488         Remove cut buffer from error message.
490         * term/x-win.el (x-select-text):
491         * term/pc-win.el (x-selection-value):
492         * term/ns-win.el (x-selection-value):
493         * eshell/em-term.el:
494         * w32-fns.el (x-get-selection-value):
495         * mouse-sel.el (mouse-sel-set-selection-function):
496         * frame.el (display-selections-p): Remove cut-buffer in documentation.
498         * term/x-win.el: Update documentation for x-last-selected-text-*.
499         (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
500         (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
501         (x-select-text): Remove argument PUSH, update documentation.  Remove
502         cut-buffer code.
503         (x-selection-value-internal): Was previously x-selection-value.
504         (x-selection-value): Rename from x-cut-buffer-or-selection-value.
505         Update documentation, remove cut-buffer code.  Call
506         x-selection-value-internal.
507         (x-clipboard-yank): Call x-selection-value-internal.
508         (x-initialize-window-system): Remove setting of x-cut-buffer-max.
510         * term/pc-win.el (x-last-selected-text):
511         x-cut-buffer-or-selection-value renamed to x-selection-value
512         (x-select-text): Remove argument PUSH, update documentation.
514         * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
515         x-cut-buffer-or-selection-value renamed to x-selection-value
516         (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
517         (x-select-text): Remove argument PUSH, update documentation.
519         * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
521         * w32-fns.el (x-last-selected-text):
522         x-cut-buffer-or-selection-value renamed to x-selection-value.
523         (x-cut-buffer-max): Remove.
524         (x-select-text): Remove argument PUSH, update documentation.
526         * simple.el (interprogram-cut-function): Remove mention of PUSH.
528         * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
530         * mouse-sel.el (mouse-sel-get-selection-function):
531         x-cut-buffer-or-selection-value renamed to x-selection-value.
532         (x-select-text): Remove optional push.
534 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
536         * simple.el (blink-paren-function): Move from C to here.
537         (blink-paren-post-self-insert-function): New function.
538         (post-self-insert-hook): Use it.
540         * emacs-lisp/pcase.el (pcase-split-memq):
541         Fix overenthusiastic optimisation.
542         (pcase-u1): Handle the case of a lambda pred.
544 2010-08-31  Kenichi Handa  <handa@m17n.org>
546         * international/mule-cmds.el (standard-display-european-internal):
547         Setup standard-display-table for 8-bit characters by storing 8-bit
548         characters in the element vector.
550         * disp-table.el (standard-display-8bit): Setup
551         standard-display-table for 8-bit characters by storing 8-bit
552         characters in the element vector.
553         (standard-display-european): Likewise.
555 2010-08-31  Masatake YAMATO  <yamato@redhat.com>
557         * textmodes/nroff-mode.el (nroff-view): New command.
558         (nroff-mode-map): Bind it to C-c C-c.
560 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
562         * emacs-lisp/smie.el (smie-down-list): New command.
564         Remove old indentation and navigation code on octave-mode.
565         * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
566         smie-down-list rather than add a binding for octave-down-block.
567         (octave-mark-block, octave-blink-matching-block-open):
568         Rely on forward-sexp-function.
569         (octave-fill-paragraph): Don't narrow, so you can use
570         indent-according-to-mode.
571         (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
572         (octave-in-block-p, octave-re-search-forward-kw)
573         (octave-re-search-backward-kw, octave-indent-calculate)
574         (octave-end-as-array-index-p, octave-block-end-offset)
575         (octave-scan-blocks, octave-forward-block, octave-backward-block)
576         (octave-down-block, octave-backward-up-block, octave-up-block)
577         (octave-before-magic-comment-p, octave-indent-line): Remove.
579 2010-08-31  Chong Yidong  <cyd@stupidchicken.com>
581         * emacs-lisp/package.el (package--read-archive-file): Just use
582         `read', to avoid copying an additional string.
583         (package-menu-mode): Set header-line-format here.
584         (package-menu-refresh, package-menu-revert): Signal an error if
585         not in the Package Menu.
586         (package-menu-package-list): New var.
587         (package--generate-package-list): Operate on the current buffer;
588         don't assume that it is *Packages*, since the user may rename it.
589         Allow persistent package listings and sort keys using
590         package-menu-package-list and package-menu-package-sort-key.
591         (package-menu--version-predicate): Fix version calculation.
592         (package-menu-sort-by-column): Don't select the window.
593         (package--list-packages): Create the *Packages* buffer.
594         Set package-menu-package-list-key.
595         (list-packages): Sorting by status is now the default.
596         (package-buffer-info): Use match-string-no-properties.
597         (define-package): Add a &rest argument for future proofing, but
598         don't use it yet.
599         (package-install-from-buffer, package-install-buffer-internal):
600         Merge into a single function, package-install-from-buffer.
601         (package-install-file): Change caller.
603         * finder.el: Load finder-inf using `require'.
604         (finder-list-matches): Sorting by status is now the default.
605         (finder-compile-keywords): Simpify printing.
607 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
609         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
610         (octave-mode-map): Remove special bindings for forward/backward-block
611         and octave-backward-up-block.  Use smie-close-block.
612         (octave-continuation-marker-regexp): New var.
613         (octave-continuation-regexp): Use it.
614         (octave-operator-table, octave-smie-op-levels)
615         (octave-operator-regexp, octave-smie-indent-rules): New vars.
616         (octave-smie-backward-token, octave-smie-forward-token): New funs.
617         (octave-mode): Use SMIE.
618         (octave-close-block): Delete.
620 2010-08-30  Eli Zaretskii  <eliz@gnu.org>
622         * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
623         CLIPBOARD, not in PRIMARY.  (Bug#6944)
625 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
627         * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
628         a list of parents.
629         (smie-indent-column): Allow indirection through variables.
631         * composite.el (save-buffer-state): Delete, unused.
632         * font-lock.el (save-buffer-state): Use with-silent-modifications.
633         (font-lock-default-fontify-region): Use with-syntax-table.
634         * jit-lock.el (with-buffer-unmodified): Remove.
635         (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
637         Use `declare' in defmacros.
638         * window.el (save-selected-window):
639         * subr.el (with-temp-file, with-temp-message, with-syntax-table):
640         * progmodes/python.el (def-python-skeleton):
641         * net/dbus.el (dbus-ignore-errors):
642         * jka-cmpr-hook.el (with-auto-compression-mode):
643         * international/mule.el (with-category-table):
644         * emacs-lisp/timer.el (with-timeout):
645         * emacs-lisp/lisp-mnt.el (lm-with-file):
646         * emacs-lisp/eieio.el (with-slots):
647         * emacs-lisp/easymenu.el (easy-menu-define):
648         * emacs-lisp/debug.el (debugger-env-macro):
649         * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
650         (Multiple-value-call, Multiple-value-prog1):
651         * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
652         (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
653         edebug rule to definition.
654         * emacs-lisp/lisp-mode.el (save-selected-window)
655         (with-current-buffer, combine-after-change-calls)
656         (with-output-to-string, with-temp-file, with-temp-buffer)
657         (with-temp-message, with-syntax-table, read-if, eval-after-load)
658         (dolist, dotimes, when, unless):
659         * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
661 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
663         * finder.el: Require `package'.
664         (finder-known-keywords): Tweak descriptions.  Retire `oop' keyword.
665         (finder-package-info): Var deleted.
666         (finder-keywords-hash, finder--builtins-alist): New vars.
667         (finder-compile-keywords): Compute package--builtins and
668         finder-keywords-hash instead of finder-keywords-hash, respecting
669         the "Package" header.
670         (finder-unknown-keywords, finder-list-matches):
671         Use finder-keywords-hash and package--list-packages.
672         (finder-mode): Don't set font-lock-defaults.
673         (finder-exit): We don't use "*Finder-package*" and "*Finder
674         Category*" buffers anymore.
676         * emacs-lisp/package.el (package--builtins-base): Var deleted.
677         (package--builtins): Set default value to nil.
678         (package-initialize): Load precomputed value of package--builtins
679         from finder-inf.el.
680         (package-alist, package-compute-transaction)
681         (package-download-transaction): Improve docstring.
682         (package-read-all-archive-contents): Do not change
683         package--builtins here.
684         (list-packages): Make package-list-packages an alias for this.
685         Sort by status by default.
686         (package--list-packages): Add optional PACKAGES arg.
687         (describe-package-1): Use font-lock-face property.  For built-in
688         packages, insert file commentary.
689         (package--generate-package-list): Rename from
690         package-list-packages-internal; all callers changed.  Add optional
691         PACKAGES arg.  Add alphabetical sort fallbacks.
692         (package-menu--version-predicate, package-menu--status-predicate)
693         (package-menu--description-predicate)
694         (package-menu--name-predicate): New functions.
696         * info.el (Info-finder-find-node): Search package-alist instead of
697         finder-package-info.
699 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
701         * subr.el (version-regexp-alist): Don't use "a" and "b" for
702         "alpha" and "beta".
703         (version-to-list): Handle versions like "10.3d".
705 2010-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
707         * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
708         (macroexp-accumulate): Use `declare'.
710 2010-08-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
712         * whitespace.el (whitespace-style): Adjust type declaration.
714 2010-08-26  Magnus Henoch  <magnus.henoch@gmail.com>
716         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
717         empty argument to gvfs-copy.
719 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
721         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
722         handle new TRASH arg of `delete-file'.
724 2010-08-26  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
726         * net/tramp.el (tramp-handle-insert-directory): Don't use
727         `forward-word', its default syntax could be changed.
729 2010-08-26  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
730             Michael Albinus  <michael.albinus@gmx.de>
732         Implement compression for inline methods.
734         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
735         (tramp-copy-size-limit): Allow also nil.
736         (tramp-inline-compress-commands): New defconst.
737         (tramp-find-inline-compress, tramp-get-inline-compress)
738         (tramp-get-inline-coding): New defuns.
739         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
740         replaced by `tramp-get-inline-coding'.
741         (tramp-handle-file-local-copy, tramp-handle-write-region)
742         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
744 2010-08-26  Noah Lavine  <noah549@gmail.com>  (tiny change)
746         Detect ssh 'ControlMaster' argument automatically in some cases.
748         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
749         (tramp-default-method): Use it.
751 2010-08-26  Karel Klíč  <kklic@redhat.com>
753         * net/tramp.el (tramp-file-name-for-operation):
754         Add file-selinux-context.
756 2010-08-26  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
758         * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
760 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
762         * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
763         (Bug#6907).
765 2010-08-26  Nathan Weizenbaum  <nweiz@cressida.sea.corp.google.com>  (tiny change)
767         * progmodes/js.el: Make indentation more customizable (Bug#6914).
768         (js-paren-indent-offset, js-square-indent-offset)
769         (js-curly-indent-offset): New options.
770         (js--proper-indentation): Use them.
772 2010-08-26  Daniel Colascione  <dan.colascione@gmail.com>
774         * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
775         instead of inspecting font-lock properties (Bug#6916).
777 2010-08-26  David Reitter  <david.reitter@gmail.com>
779         * server.el (server-visit-files): Run pre-command-hook and
780         post-command-hook for each buffer while it is current
781         (Bug#6910).
782         (server-execute): Do not run hooks here.
784 2010-08-26  Michael Albinus  <michael.albinus@gmx.de>
786         Sync with Tramp 2.1.19.
788         * net/tramp-cmds.el (tramp-cleanup-all-connections)
789         (tramp-reporter-dump-variable, tramp-load-report-modules)
790         (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
791         (tramp-bug): Recommend setting of `tramp-verbose' to 9.
793         * net/tramp-compat.el (top): Do not autoload
794         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
795         only when `start-file-process' is not bound.
796         (byte-compile-not-obsolete-vars): Define if not bound.
797         (tramp-compat-funcall): New defmacro.
798         (tramp-compat-line-beginning-position)
799         (tramp-compat-line-end-position)
800         (tramp-compat-temporary-file-directory)
801         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
802         (tramp-compat-copy-file, tramp-compat-copy-directory)
803         (tramp-compat-delete-file, tramp-compat-delete-directory)
804         (tramp-compat-number-sequence, tramp-compat-process-running-p):
805         Use it.
806         (tramp-advice-file-expand-wildcards): Do not use
807         `tramp-handle-file-remote-p'.
808         (tramp-compat-make-temp-file): Simplify fallback implementation.
809         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
810         (tramp-compat-copy-tree): Remove function.
811         (tramp-compat-delete-file): New defun.
812         (tramp-compat-delete-directory): Provide implementation for older
813         Emacsen.
814         (tramp-compat-file-attributes): Handle only
815         `wrong-number-of-arguments' error.
817         * net/tramp-fish.el (tramp-fish-handle-copy-file): Add
818         PRESERVE_SELINUX_CONTEXT.
819         (tramp-fish-handle-delete-file): Add TRASH arg.
820         (tramp-fish-handle-directory-files-and-attributes):
821         Do not use `tramp-fish-handle-file-attributes.
822         (tramp-fish-handle-file-local-copy)
823         (tramp-fish-handle-insert-file-contents)
824         (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
826         * net/tramp-gvfs.el (top): Require url-util.
827         (tramp-gvfs-mount-point): Remove.
828         (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
829         and `set-file-selinux-context'.
830         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
831         (tramp-gvfs-handle-file-selinux-context)
832         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
833         (with-tramp-dbus-call-method): Format trace message.
834         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
835         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
836         Implement backup call, when operation on local files fails.  Use
837         progress reporter.  Flush properties of changed files.
838         (tramp-gvfs-handle-delete-file): Add TRASH arg.  Use
839         `tramp-compat-delete-file'.
840         (tramp-gvfs-handle-expand-file-name): Expand "~/".
841         (tramp-gvfs-handle-make-directory): Make more traces.
842         (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
843         (tramp-gvfs-url-file-name): Hexify file name in url.
844         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
845         into account for the resulting file name.
846         (tramp-gvfs-handler-askquestion): Preserve current message, in
847         order to let progress reporter continue afterwards.  (Bug#6257)
848         Return dummy mountpoint, when the answer is "no".  See
849         `tramp-gvfs-maybe-open-connection'.
850         (tramp-gvfs-handler-mounted-unmounted)
851         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
852         attribute "default_location".  Set "prefix" property.  Handle
853         default-location.
854         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
855         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
856         exists.  Raise an error, if not (due to a corresponding answer
857         "no" in interactive questions, for example). Use
858         `tramp-compat-funcall'.
860         * net/tramp-imap.el (top): Autoload `epg-make-context'.
861         (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
862         (tramp-imap-do-copy-or-rename-file)
863         (tramp-imap-handle-insert-file-contents)
864         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
865         (tramp-imap-handle-delete-file): Add TRASH arg.
867         * net/tramp-smb.el (tramp-smb-handle-copy-file): Add
868         PRESERVE-SELINUX-CONTEXT.
869         (tramp-smb-handle-copy-file)
870         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
871         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
872         Use `with-progress-reporter'.
873         (tramp-smb-handle-delete-file): Add TRASH arg.
875         * net/tramp.el (tramp-methods): Move hostname to the end in all
876         ssh `tramp-login-args'.  Add `tramp-async-args' attribute where
877         appropriate.
878         (tramp-verbose): Describe verbose level 9.
879         (tramp-completion-function-alist)
880         (tramp-file-name-regexp, tramp-chunksize)
881         (tramp-local-coding-commands, tramp-remote-coding-commands)
882         (with-connection-property, tramp-completion-mode-p)
883         (tramp-action-process-alive, tramp-action-out-of-band)
884         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
885         (tramp-exists-file-name-handler): Fix docstring.
886         (tramp-remote-process-environment): Use `format' instead of
887         `concat'.  Protect version string by apostroph.
888         (tramp-shell-prompt-pattern): Do not use a shy group in case of
889         XEmacs.
890         (tramp-file-name-regexp-unified)
891         (tramp-completion-file-name-regexp-unified): On W32 systems, do
892         not regard the volume letter as remote filename.  (Bug#5447)
893         (tramp-perl-file-attributes)
894         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
895         (tramp-vc-registered-read-file-names): Read input as
896         here-document, otherwise the command could exceed maximum length
897         of command line.
898         (tramp-file-name-handler-alist): Add `file-selinux-context' and
899         `set-file-selinux-context'.
900         (tramp-debug-message): Add `tramp-compat-funcall' to ignored
901         backtrace functions.
902         (tramp-error-with-buffer): Don't show the connection buffer when
903         we are in completion mode.
904         (tramp-progress-reporter-update, tramp-remote-selinux-p)
905         (tramp-handle-file-selinux-context)
906         (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
907         (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
908         New defuns.
909         (with-progress-reporter): New defmacro.
910         (tramp-debug-outline-regexp): New defconst.
911         (top, tramp-rfn-eshadow-setup-minibuffer)
912         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
913         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
914         (tramp-completion-mode-p, tramp-check-for-regexp)
915         (tramp-open-connection-setup-interactive-shell)
916         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
917         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
918         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
919         Use `tramp-compat-funcall'.
920         (tramp-handle-make-symbolic-link): Flush file properties.
921         (tramp-handle-load, tramp-handle-file-local-copy)
922         (tramp-handle-insert-file-contents, tramp-handle-write-region)
923         (tramp-handle-vc-registered, tramp-maybe-send-script)
924         (tramp-find-shell): Use `with-progress-reporter'.
925         (tramp-do-file-attributes-with-stat): Add space in format string,
926         in order to work around a bug in pdksh.  Reported by Gilles Pion
927         <gpion@lfdj.com>.
928         (tramp-handle-verify-visited-file-modtime): Do not send a command
929         when the connection is not established.
930         (tramp-handle-set-file-times): Simplify the check for utc.
931         (tramp-handle-directory-files-and-attributes)
932         (tramp-get-remote-path): Use `copy-tree'.
933         (tramp-completion-handle-file-name-all-completions): Ensure, that
934         non remote files are still checked.  Oops.
935         (tramp-handle-copy-file, tramp-do-copy-or-rename-file): Handle
936         PRESERVE-SELINUX-CONTEXT.
937         (tramp-do-copy-or-rename-file): Add progress reporter.
938         (tramp-do-copy-or-rename-file-directly): Do not use
939         `tramp-handle-file-remote-p'.
940         (tramp-do-copy-or-rename-file-out-of-band):
941         Use `tramp-compat-delete-directory'.
942         (tramp-do-copy-or-rename-file-out-of-band)
943         (tramp-compute-multi-hops, tramp-maybe-open-connection):
944         Use `format-spec-make'.
945         (tramp-handle-delete-file): Add TRASH arg.
946         (tramp-handle-dired-uncache): Flush directory cache, not only file
947         cache.
948         (tramp-handle-expand-file-name)
949         (tramp-completion-handle-file-name-all-completions)
950         (tramp-completion-handle-file-name-completion): Use
951         `tramp-connectable-p'.
952         (tramp-handle-start-file-process): Set connection property "vec".
953         Use it, in order to invalidate file caches.  Check only for
954         `remote-tty' process property.
955         Implement tty setting.  (Bug#4604, Bug#6360)
956         (tramp-file-name-for-operation): Add `call-process-region' and
957         `set-file-selinux-context'.
958         (tramp-find-foreign-file-name-handler)
959         (tramp-advice-make-auto-save-file-name)
960         (tramp-set-auto-save-file-modes): Remove superfluous check for
961         `stringp'.  This is done inside `tramp-tramp-file-p'.
962         (tramp-file-name-handler): Trace 'quit.  Catch the error for some
963         operations when we are in completion mode.  This gives the user
964         the chance to correct the file name in the minibuffer.
965         (tramp-completion-mode-p): Use `non-essential'.
966         (tramp-handle-file-name-all-completions): Backward/ XEmacs
967         compatibility: Use `completion-ignore-case' if
968         `read-file-name-completion-ignore-case' does not exist.
969         (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
970         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
971         `tramp-open-shell'.
972         (tramp-action-password): Hide password prompt before next run.
973         (tramp-process-actions): Widen connection buffer for the trace.
974         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
975         process property.  Trace stty settings if `tramp-verbose' >= 9.
976         Apply workaround for IRIX64 bug.  Move argument of last
977         `tramp-send-command' where it belongs to.
978         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
979         front of `login-args'.
980         (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
981         on "/dev/null" instead of "/".
982         (tramp-get-ls-command-with-dired): Make test for "--dired"
983         stronger.
984         (tramp-set-auto-save-file-modes): Adapt version check.
985         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
986         (tramp-handle-process-file): Call the program in a subshell, in
987         order to preserve working directory.
988         (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
989         `tramp-remote-sh' from `tramp-methods'.
990         (tramp-get-ls-command): Make test for "--color=never" stronger.
991         (tramp-check-for-regexp): Use (forward-line 1).
993         * net/trampver.el: Update release number.
995 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
997         * help.el (help-map): Bind `C-h P' to describe-package.
999         * menu-bar.el (menu-bar-describe-menu): Add describe-package.
1001         * emacs-lisp/package.el (package-refresh-contents): Catch errors
1002         when downloading archives.
1003         (describe-package-1): Add package commentary.
1004         (package-install-button-action): New function.
1005         (package-menu-mode-map): Bind ? to package-menu-describe-package.
1006         (package-menu-view-commentary): Function removed.
1007         (package-list-packages-internal): Hide the `package' package too.
1009 2010-08-25  Kenichi Handa  <handa@m17n.org>
1011         * language/misc-lang.el ("Arabic"): New language environment.
1012         Setup composition-function-table for Arabic characters.
1014         * international/fontset.el (setup-default-fontset): Fix typo for
1015         arabic OTF spec (fini->fina).
1017 2010-08-25  Jan Djärv  <jan.h.d@swipnet.se>
1019         * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
1020         on all frames.
1022 2010-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1024         * whitespace.el: Allow cleaning up blanks without blank
1025         visualization (Bug#6651).  Adjust help window for
1026         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
1027         instead of whitespace-line-column (from EmacsWiki).  New version
1028         13.1.
1029         (whitespace-style): Added new value 'face.  Adjust docstring.
1030         (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
1031         foreground property face.
1032         (whitespace-line-column): Adjust docstring and type declaration.
1033         (whitespace-style-value-list, whitespace-toggle-option-alist)
1034         (whitespace-help-text): Adjust const initialization.
1035         (whitespace-toggle-options, global-whitespace-toggle-options):
1036         Adjust docstring.
1037         (whitespace-display-window, whitespace-interactive-char)
1038         (whitespace-style-face-p, whitespace-color-on): Adjust code.
1039         (whitespace-help-scroll): New fun.
1041 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
1043         * emacs-lisp/package.el (list-packages): Alias for
1044         package-list-packages.
1046 2010-08-24  Kevin Ryde  <user42@zip.com.au>
1048         * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
1049         (Bug#5651).
1051         * progmodes/ruby-mode.el (ruby): Add defgroup.
1053 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
1055         * progmodes/python.el: Add Ipython support (Bug#5390).
1056         (python-shell-prompt-alist)
1057         (python-shell-continuation-prompt-alist): New options.
1058         (python--set-prompt-regexp): New function.
1059         (inferior-python-mode, run-python, python-shell): Require
1060         ansi-color.  Use python--set-prompt-regexp to set the comint
1061         prompt based on the Python interpreter.
1062         (python--prompt-regexp): New var.
1063         (python-check-comint-prompt)
1064         (python-comint-output-filter-function): Use it.
1065         (run-python): Use a pipe (Bug#5694).
1067 2010-08-24  Fabian Ezequiel Gallina  <galli.87@gmail.com>  (tiny change)
1069         * progmodes/python.el (python-send-region): Send a different
1070         Python command if Ipython is in use.
1071         (python-check-version): Use a Python command to find the version.
1073 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
1075         * mouse.el (mouse-yank-primary): Avoid setting primary when
1076         deactivating the mark (Bug#6872).
1078 2010-08-23  Chris Foote  <chris@foote.com.au>  (tiny change)
1080         * progmodes/python.el (python-block-pairs): Allow use of "finally"
1081         with "else" (Bug#3991).
1083 2010-08-23  Michael Albinus  <michael.albinus@gmx.de>
1085         * net/dbus.el: Accept UNIX domain sockets as bus address.
1086         (top): Don't initialize `dbus-registered-objects-table' anymore,
1087         this is done in dbusbind,c.
1088         (dbus-check-event): Adapt test for bus.
1089         (dbus-return-values-table, dbus-unregister-service)
1090         (dbus-event-bus-name, dbus-introspect, dbus-register-property):
1091         Adapt doc string.
1093 2010-08-23  Juanma Barranquero  <lekktu@gmail.com>
1095         * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
1097 2010-08-22  Juri Linkov  <juri@jurta.org>
1099         * simple.el (read-extended-command): New function with the logic
1100         for `completing-read' moved to Elisp from `execute-extended-command'.
1101         Use `function-called-at-point' in `minibuffer-default-add-function'
1102         to get a command name for M-n (bug#5364, bug#5214).
1104 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
1106         * startup.el (command-line-1): Issue warning for ignored arguments
1107         --unibyte, etc (Bug#6886).
1109 2010-08-22  Leo  <sdl.web@gmail.com>
1111         * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
1112         (ignore, bright, dim, keyword): Split list of nicknames before
1113         passing to rcirc-add-or-remove (Bug#6894).
1115 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
1117         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
1119 2010-08-22  Leo  <sdl.web@gmail.com>
1121         Fix buffer-list rename&refresh after killing a buffer in ido.
1122         * lisp/ido.el: Revert Óscar's.
1123         (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
1124         Remember the buffers at head, rather than their name.
1125         * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
1127 2010-08-22  Kirk Kelsey  <kirk.kelsey@0x4b.net>  (tiny change)
1128             Stefan Monnier  <monnier@iro.umontreal.ca>
1130         * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
1131         extra backslash added to each line (bug#6890).
1133 2010-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1135         * subr.el (read-key): Don't echo keystrokes (bug#6883).
1137 2010-08-22  Glenn Morris  <rgm@gnu.org>
1139         * menu-bar.el (menu-bar-games-menu): Add landmark.
1141 2010-08-22  Glenn Morris  <rgm@gnu.org>
1143         * align.el (align-regexp): Make group and spacing arguments
1144         use the interactive defaults when non-interactive.  (Bug#6698)
1146         * mail/rmail.el (rmail-forward): Replace mail-text-start with its
1147         expansion, so as not to need sendmail.
1148         (mail-text-start): Remove declaration.
1149         (rmail-retry-failure): Require sendmail.
1151 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
1153         * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
1155 2010-08-22  Michael Albinus  <michael.albinus@gmx.de>
1157         * progmodes/flymake.el (flymake-start-syntax-check-process):
1158         Use `start-file-process' in order to let it run also on remote hosts.
1160 2010-08-22  Kenichi Handa  <handa@m17n.org>
1162         * files.el: Add `word-wrap' as safe local variable.
1164 2010-08-22  Glenn Morris  <rgm@gnu.org>
1166         * woman.el (woman-translate): Case matters.  (Bug#6849)
1168 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
1170         * simple.el (kill-region): Doc fix (Bug#6787).
1172 2010-08-22  Glenn Morris  <rgm@gnu.org>
1174         * calendar/diary-lib.el (diary-header-line-format):
1175         Fit it to the window, not the frame.
1177 2010-08-22  Andreas Schwab  <schwab@linux-m68k.org>
1179         * subr.el (ignore-errors): Add debug declaration.
1181 2010-08-22  Geoff Gole  <geoffgole@gmail.com>  (tiny change)
1183         * whitespace.el (whitespace-color-off): Remove post-command-hook
1184         locally.
1186 2010-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1188         * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
1190 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
1192         * cus-edit.el (custom-group-value-create): Add extra newline
1193         before end line (Bug#6876).
1195 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
1197         * mouse.el (mouse-save-then-kill): Don't save region to kill ring
1198         when extending it.  Before killing on the second click, check if
1199         the buffer is the correct one.  Doc fix.
1200         (mouse-secondary-save-then-kill): Allow usage without first
1201         calling mouse-start-secondary, by defaulting to point.  Don't save
1202         an empty secondary selection.  Doc fix.
1204 2010-08-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1206         * whitespace.el: Fix slow cursor movement (Bug#6172).  Reported by
1207         Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
1208         New version 13.0.
1209         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
1210         Adjust initialization.
1211         (whitespace-bob-marker, whitespace-eob-marker)
1212         (whitespace-buffer-changed): New vars.
1213         (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
1214         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
1215         (whitespace-post-command-hook, whitespace-display-char-on):
1216         Adjust code.
1217         (whitespace-looking-back, whitespace-buffer-changed): New funs.
1218         (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
1220 2010-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1222         * files.el (locate-file-completion-table): Only list the .el and .elc
1223         extensions if there's no other choice (bug#5955).
1225         * facemenu.el (facemenu-self-insert-data): New var.
1226         (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
1227         New functions.
1228         (facemenu-add-face): Use them.
1230         * simple.el (blink-matching-open): Obey forward-sexp-function.
1232 2010-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1234         * simple.el (prog-mode-map): New var.
1235         (prog-indent-sexp): New command.
1237         * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
1239         * progmodes/prolog.el (smie): Require.
1241         * emacs-lisp/smie.el (smie-default-backward-token)
1242         (smie-default-forward-token): Strip properties.
1243         (smie-next-sexp): Be more careful with associative operators.
1244         (smie-forward-sexp-command): Generalize.
1245         (smie-backward-sexp-command): Simplify.
1246         (smie-closer-alist): New var.
1247         (smie-close-block): New command.
1248         (smie-indent-debug-log): New var.
1249         (smie-indent-offset-rule): Add a few more cases.
1250         (smie-indent-column): New function.
1251         (smie-indent-after-keyword): Use it.
1252         (smie-indent-keyword): Use it.
1253         Fix up the opener code's point position.
1254         (smie-indent-comment): Only applies at BOL.
1255         (smie-indent-debug): New command.
1257         * emacs-lisp/autoload.el (make-autoload): Preload the macros's
1258         declarations that are useful before running the macro.
1260 2010-08-18  Joakim Verona  <joakim@verona.se>
1262         * image.el (imagemagick-types-inhibit): New variable.
1263         (imagemagick-register-types): New function.
1264         * image-mode.el (image-transform-properties): New function.
1265         (image-transform-set-scale, image-transform-fit-to-height)
1266         (image-transform-set-rotation, image-transform-set-resize)
1267         (image-transform-fit-to-width, image-transform-fit-to-height):
1268         New functions.
1269         (image-toggle-display-image): Support image transforms.
1271 2010-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1273         * image.el (create-animated-image): Don't add heuristic mask to image
1274         (Bug#6839).
1276 2010-08-18  Jan Djärv  <jan.h.d@swipnet.se>
1278         * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
1279         Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
1281 2010-08-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1283         * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
1285         Font-lock '...' strings, plus various simplifications and fixes.
1286         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
1287         (octave-font-lock-close-quotes): New function.
1288         (octave-font-lock-syntactic-keywords): New var.
1289         (octave-mode): Use it.  Set beginning-of-defun-function.
1290         (octave-mode-map): Don't override the <foo>-defun commands.
1291         (octave-mode-menu): Pass it directly to easy-menu-define;
1292         remove (now generic) <foo>-defun commands; use info-lookup-symbol.
1293         (octave-block-match-alist): Fix up last change so that
1294         octave-close-block uses the more specific keyword.
1295         (info-lookup-mode): Silence byte-compiler.
1296         (octave-beginning-of-defun): Not interactive any more.
1297         Optimize slightly.
1298         (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
1299         (octave-indent-defun, octave-send-defun): Use mark-defun instead.
1300         (octave-completion-at-point-function): Make sure point is within
1301         beg..end.
1302         (octave-reindent-then-newline-and-indent):
1303         Use reindent-then-newline-and-indent.
1304         (octave-add-octave-menu): Remove.
1306 2010-08-17  Jan Djärv  <jan.h.d@swipnet.se>
1308         * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
1309         (report-emacs-bug-can-use-xdg-email): New functions.
1310         (report-emacs-bug): Set can-xdg-email to result of
1311         report-emacs-bug-can-use-xdg-email.  If can-xdg-email bind
1312         \C-cm to report-emacs-bug-insert-to-mailer and add help text
1313         about it.
1315         * net/browse-url.el (browse-url-default-browser): Add cond
1316         for browse-url-xdg-open.
1317         (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
1319 2010-08-17  Glenn Morris  <rgm@gnu.org>
1321         * progmodes/cc-engine.el (c-new-BEG, c-new-END)
1322         (c-fontify-recorded-types-and-refs): Define for compiler.
1323         * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
1324         before use.
1326         * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
1327         Fix format call.
1329 2010-08-17  Michael Albinus  <michael.albinus@gmx.de>
1331         * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
1332         properties.
1333         (tramp-handle-process-file): Call the program in a subshell, in
1334         order to preserve working directory.
1335         (tramp-action-password): Hide password prompt before next run.
1336         (tramp-process-actions): Widen connection buffer for the trace.
1338 2010-08-16  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
1340         * net/rcirc.el (rcirc-log-process-buffers): New option.
1341         (rcirc-print): Use it.
1342         (rcirc-generate-log-filename): New function.
1343         (rcirc-log-filename-function): Change default to
1344         rcirc-generate-log-filename (Bug#6828).
1346 2010-08-16  Chong Yidong  <cyd@stupidchicken.com>
1348         * simple.el (deactivate-mark): If select-active-regions is `only',
1349         only set selection for temporarily active regions.
1351         * cus-start.el: Change defcustom for select-active-regions.
1353 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
1355         * mouse.el (mouse--drag-set-mark-and-point): New function.
1356         (mouse-drag-track): Use LOCATION arg to push-mark.
1357         Use mouse--drag-set-mark-and-point to take click-count into
1358         consideration when updating point and mark (Bug#6840).
1360 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
1362         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1363         Give the Ruby rule a lower priority than Gnu (Bug#6778).
1365 2010-08-14  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1367         * font-lock.el (lisp-font-lock-keywords-2):
1368         Add combine-after-change-calls, condition-case-no-debug,
1369         with-demoted-errors, and with-silent-modifications (Bug#6025).
1371 2010-08-14  Kevin Ryde  <user42@zip.com.au>
1373         * emacs-lisp/copyright.el (copyright-update-year)
1374         (copyright-update): Temporary switch-to-buffer to ensure the
1375         buffer change being queried is visible (Bug#5394).
1377 2010-08-14  Tom Tromey  <tromey@redhat.com>
1379         * progmodes/etags.el (tags-file-name): Mark safe if stringp
1380         (Bug#6733).
1382 2010-08-14  Eli Zaretskii  <eliz@gnu.org>
1384         * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
1385         MS-DOS.  (Bug#6689)
1387 2010-08-13  Jan Djärv  <jan.h.d@swipnet.se>
1389         * menu-bar.el (menu-bar-set-tool-bar-position): New function.
1390         (menu-bar-showhide-tool-bar-menu-customize-enable-left)
1391         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
1392         (menu-bar-showhide-tool-bar-menu-customize-enable-top)
1393         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
1394         Call menu-bar-set-tool-bar-position.
1396 2010-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1398         * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
1399         comment style (bug#6834).
1400         * progmodes/scheme.el (scheme-mode-syntax-table):
1401         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
1402         "b" flag in "' 14b" syntax.
1404         * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
1405         for (un)commenting the region and performing completion.
1406         (octave-mode-menu): Use standard commands for help and completion.
1407         (octave-mode-syntax-table): Support %{..%} comments (sort of).
1408         (octave-mode): Use define-derived-mode.
1409         Set completion-at-point-functions and don't set columns.
1410         Don't disable adaptive-fill-regexp.
1411         (octave-describe-major-mode, octave-comment-region)
1412         (octave-uncomment-region, octave-comment-indent)
1413         (octave-indent-for-comment): Remove.
1414         (octave-indent-calculate): Rename from calculate-octave-indent.
1415         (octave-indent-line, octave-fill-paragraph): Update caller.
1416         (octave-initialize-completions): No need to make an alist.
1417         (octave-completion-at-point-function): New function.
1418         (octave-complete-symbol): Use it.
1419         (octave-insert-defun): Use define-skeleton.
1421         * progmodes/octave-mod.el (octave-mode): Set comment-add.
1422         (octave-mode-map): Use comment-dwim (bug#6829).
1424 2010-08-12  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
1426         * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
1427         indentation of inserted comment.
1429 2010-08-11  Jan Djärv  <jan.h.d@swipnet.se>
1431         * faces.el (region): Add type gtk that uses gtk colors.
1433         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
1434         Handle theme-name change.
1436 2010-08-10  Michael R. Mauger  <mmaug@yahoo.com>
1438         * progmodes/sql.el: Version 2.5
1439         (sql-product-alist): Add :prompt-cont-regexp property for several
1440         database products.
1441         (sql-prompt-cont-regexp): New variable.
1442         (sql-output-newline-count, sql-output-by-send):
1443         New variables.  Record number of newlines in input text.
1444         (sql-send-string): Handle multiple filters and count newlines.
1445         (sql-send-magic-terminator): Count terminator newline.
1446         (sql-interactive-remove-continuation-prompt): Filters output to
1447         remove continuation prompts; one for each newline.
1448         (sql-interactive-mode): Set up new variables, prompt regexp and
1449         output filter.
1450         (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
1451         (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
1453 2010-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1455         * emacs-lisp/pcase.el: New file.
1457 2010-08-10  Michael Albinus  <michael.albinus@gmx.de>
1459         * net/tramp.el (tramp-vc-registered-read-file-names): Read input
1460         as here-document, otherwise the command could exceed maximum
1461         length of command line.
1462         (tramp-handle-vc-registered): Call script accordingly.
1463         Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
1465 2010-08-10  Kenichi Handa  <handa@m17n.org>
1467         * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
1468         composable pattern.
1470 2010-08-09  Chong Yidong  <cyd@stupidchicken.com>
1472         * emacs-lisp/package.el (package-version-split)
1473         (package--version-first-nonzero, package-version-compare):
1474         Functions removed.
1475         (package-directory-list, package-load-all-descriptors)
1476         (package--built-in, package-activate, define-package)
1477         (package-installed-p, package-compute-transaction)
1478         (package-read-all-archive-contents)
1479         (package--add-to-archive-contents, package-buffer-info)
1480         (package-tar-file-info, package-list-packages-internal):
1481         Use version-to-list and version-list-*.
1483         * emacs-lisp/package-x.el (package-upload-buffer-internal):
1484         Use version-to-list.
1485         (package-upload-buffer-internal): Use version-list-<=.
1487 2010-08-09  Kenichi Handa  <handa@m17n.org>
1489         * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
1490         composable pattern.
1492 2010-08-08  Chong Yidong  <cyd@stupidchicken.com>
1494         * tutorial.el (tutorial--default-keys): C-d is now bound to
1495         delete-forward-char (Bug#6826).
1497         * mouse.el (mouse-drag-track): Remove accidentally-removed check
1498         for `double' value of mouse-1-click-follows-link (Bug#6807).
1500 2010-08-08  Johan Bockgård  <bojohan@gnu.org>
1502         * replace.el (replace-highlight): Bind isearch-forward and
1503         isearch-error, ensuring that highlighting is updated if the user
1504         switches the search direction (Bug#6808).
1506         * isearch.el (isearch-lazy-highlight-forward): New var.
1507         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
1508         (isearch-lazy-highlight-update): Use it.
1510 2010-08-08  Kenichi Handa  <handa@m17n.org>
1512         * international/mule.el (define-charset): Store NAME as :base property.
1513         (ctext-non-standard-encodings-table): Pay attention to charset aliases.
1514         (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
1515         current priority.  Force using the designation of the specific
1516         charset by adding `charset' text property.  Improve the whole algorithm.
1518 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
1520         * emulation/pc-select.el (pc-selection-mode-hook)
1521         (copy-region-as-kill-nomark, beginning-of-buffer-mark)
1522         (pc-selection-mode): Fix typos in docstrings.
1524 2010-08-08  Kenichi Handa  <handa@m17n.org>
1526         * language/cyrillic.el: Don't add "microsoft-cp1251" to
1527         ctext-non-standard-encodings-alist here.
1529         * international/mule.el (ctext-non-standard-encodings-alist):
1530         Add "koi8-r" and "microsoft-cp1251".
1531         (ctext-standard-encodings): New variable.
1532         (ctext-non-standard-encodings-table): List only elements for
1533         non-standard encodings.
1534         (ctext-pre-write-conversion): Adjust for the above change.
1535         Check ctext-standard-encodings.
1537         * international/mule-conf.el (compound-text): Doc fix.
1538         (ctext-no-compositions): Doc fix.
1539         (compound-text-with-extensions): Doc fix.
1541 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1543         * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
1545 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
1547         * progmodes/which-func.el (which-func-format): Split help-echo text
1548         into lines, like other mode-line tooltips.
1550         * server.el (server-start): When using TCP sockets, force IPv4
1551         and use a literal 127.0.0.1 for localhost.  (Related to bug#6781.)
1553 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1555         * bindings.el (complete-symbol): Run completion-at-point as a fallback.
1557 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
1559         * term.el (term-delimiter-argument-list): Reflow docstring.
1560         (term-read-input-ring, term-write-input-ring, term-send-input)
1561         (term-bol, term-erase-in-display, serial-supported-or-barf):
1562         Fix typos in docstrings.
1564 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1566         * bindings.el (function-key-map): Add a S-tab => backtab fallback.
1568 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
1570         * dabbrev.el (dabbrev-completion): Fix typo in docstring.
1572 2010-08-08  MON KEY  <monkey@sandpframing.com>  (tiny change)
1574         * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
1575         Fix typo in docstring (bug#6747).
1577 2010-08-08  Leo  <sdl.web@gmail.com>
1579         * eshell/esh-io.el (eshell-get-target): Better detection of
1580         read-only file (Bug#6762).
1582 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
1584         * align.el (align-default-spacing): Doc fix.
1585         (align-region-heuristic, align-regexp): Fix typos in docstrings.
1587 2010-08-08  Stephen Peters  <speters@itasoftware.com>
1589         * calendar/icalendar.el
1590         (icalendar--split-value): Fixed splitting regexp. (Bug#6766)
1591         (icalendar--get-weekday-numbers): New
1592         (icalendar--convert-recurring-to-diary): Handle multiple byday
1593         values in weekly rules. (Bug#6766)
1595 2010-08-08  Ulf Jasper  <ulf.jasper@web.de>
1597         * calendar/icalendar.el (icalendar-uid-format): Doc fix.
1598         (icalendar--create-uid, icalendar-export-region)
1599         (icalendar--parse-summary-and-rest): Code formatting.
1601 2010-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
1603         * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
1604         to italicize headers.
1605         (calc-highlight-selections-with-faces): New variable.
1606         (calc-selected-face, calc-nonselected-face): New faces.
1608         * calc/calccomp.el (math-comp-highlight-string): Use
1609         `calc-highlight-selections-with-faces' to determine how to highlight
1610         sub-formulas.
1612         * calc/calc-sel.el (calc-show-selections): Change message to when
1613         using faces to highlight selections.
1615 2010-08-07  Michael R. Mauger  <mmaug@yahoo.com>
1617         * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
1618         Add SQLite 3 keywords, functions and datatypes.
1619         (sql-interactive-mode): Remove `comint-process-echoes' set to t
1620         (Bug#6686).
1622 2010-08-07  Chong Yidong  <cyd@stupidchicken.com>
1624         * simple.el (select-active-regions): Move to keyboard.c.
1625         (deactivate-mark): Used saved-region-selection.
1626         (select-active-region): Function removed.
1627         (activate-mark, set-mark, push-mark-command)
1628         (handle-shift-selection): Don't call it.
1629         (keyboard-quit): Avoid adding the region to the window selection.
1631         * mouse.el (mouse-drag-track): Remove hacks to deal with old
1632         select-active-regions implementation.
1633         (mouse-yank-at-click): Doc fix.
1635         * cus-start.el: Add custom declaration for select-active-regions.
1637 2010-08-07  Eli Zaretskii  <eliz@gnu.org>
1639         * simple.el (delete-forward-char): Doc fix.
1641         * tutorial.el (help-with-tutorial): Hack safe file-local variables
1642         after reading the tutorial.
1644 2010-08-06  Alan Mackenzie  <bug-cc-mode@gnu.org>
1646         * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
1647         for the case that a C style comment has its delimiters alone on
1648         their respective lines.
1650 2010-08-06  Michael Albinus  <michael.albinus@gmx.de>
1652         * net/tramp.el (tramp-handle-start-file-process): Set connection
1653         property "vec".
1654         (tramp-process-sentinel): Use it for flushing the cache.  We
1655         cannot do it via the process buffer, the buffer could be deleted
1656         already when running the sentinel.
1658 2010-08-06  Jürgen Hötzel  <juergen@archlinux.org>  (tiny change)
1660         * comint.el (comint-mode): Make directory tracking functions
1661         functional on remote files.  (Bug#6764)
1663 2010-08-06  Dan Nicolaescu  <dann@ics.uci.edu>
1665         * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
1667 2010-08-05  Eli Zaretskii  <eliz@gnu.org>
1669         * emacs-lisp/find-gc.el (find-gc-source-files): Rename
1670         unexec.c => unexcoff.c.
1672         * emacs-lisp/authors.el (authors-fixed-entries): Rename
1673         unexec.c => unexcoff.c.
1675 2010-08-05  Michael Albinus  <michael.albinus@gmx.de>
1677         * net/tramp.el (tramp-handle-dired-uncache): Flush directory
1678         cache, not only file cache.
1679         (tramp-process-sentinel): New defun.
1680         (tramp-handle-start-file-process): Use it, in order to invalidate
1681         file caches.
1683 2010-08-03  Leo  <sdl.web@gmail.com>
1685         * server.el (server-start): Simplify loop.
1687 2010-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1689         * frame.el (screen-height, screen-width, set-screen-width)
1690         (set-screen-height): Remove ancient compatibility aliases.
1692         * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
1693         when justifying.  It seems useless and harmful for ncols=1 (bug#6738).
1695         * emacs-lisp/timer.el (timer-event-handler): Protect against timers
1696         that change current buffer.
1698 2010-08-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1700         * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
1701         beginning of the string.  Use `string-match-p'.  (Bug#6765)
1703 2010-08-01  Jan Djärv  <jan.h.d@swipnet.se>
1705         * cus-start.el (x-gtk-use-system-tooltips): New variable.
1707 2010-08-01  Chong Yidong  <cyd@stupidchicken.com>
1709         * emacs-lisp/package.el (package--list-packages): Fix column alignment.
1710         (package--builtins): Tweak descriptions.
1711         (package-print-package): Upcase descriptions if necessary.
1712         Show all built-in packages in font-lock-builtin-face.
1713         (package-list-packages-internal): Omit "emacs" package.
1714         Show status of built-in packages as "built-in".
1716 2010-07-31  Chong Yidong  <cyd@stupidchicken.com>
1718         * mouse.el (mouse-save-then-kill): Doc fix.  Deactivate mark
1719         before killing to preserve the primary selection (Bug#6701).
1721         * term/x-win.el (x-select-text): Doc fix.
1723 2010-07-31  Nathaniel Flath  <flat0103@gmail.com>
1725         Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
1726         The following functions were modified or created:
1728         * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
1729         (objc-font-lock-extra-types):
1730         * progmodes/cc-mode.el (c-basic-common-init):
1731         * progmodes/cc-langs.el (c-make-mode-syntax-table)
1732         (c++-make-template-syntax-table)
1733         (c-identifier-syntax-modifications, c-symbol-start, c-operators)
1734         (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
1735         (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
1736         (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
1737         * progmodes/cc-fonts.el (c-make-inverse-face)
1738         (c-basic-matchers-after):
1739         * progmodes/cc-engine.el (c-forward-keyword-clause)
1740         (c-forward-<>-arglist, c-forward-<>-arglist-recur)
1741         (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
1742         (c-guess-continued-construct, c-guess-basic-syntax):
1744 2010-07-31  Jan Djärv  <jan.h.d@swipnet.se>
1746         * faces.el (face-all-attributes): Improve documentation (Bug#6767).
1748 2010-07-31  Eli Zaretskii  <eliz@gnu.org>
1750         * files.el (bidi-paragraph-direction): Define safe local values.
1752         * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
1753         language-info-alist.  Remove outdated FIXME in a comment.
1755 2010-07-31  Alan Mackenzie  <acm@muc.de>
1757         * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
1758         Auto-fill broken in C/C++ modes.
1760 2010-07-29  Jan Djärv  <jan.h.d@swipnet.se>
1762         * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
1763         (menu-bar-showhide-tool-bar-menu-customize-disable)
1764         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
1765         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
1766         (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
1767         (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
1768         make a menu for Options => toolbar that can move it.
1770 2010-07-29  Chong Yidong  <cyd@stupidchicken.com>
1772         * emacs-lisp/package-x.el (package--make-rss-entry):
1773         (package-maint-add-news-item, package--update-news)
1774         (package-upload-buffer-internal): New arg ARCHIVE-URL.
1776         * emacs-lisp/package.el (package-archive-url): Rename from
1777         package-archive-id.
1778         (package-install): Doc fix.
1779         (package-download-single, package-download-tar, package-install)
1780         (package-menu-view-commentary): Callers changed.
1782 2010-07-29  Michael Albinus  <michael.albinus@gmx.de>
1784         * net/tramp.el (tramp-handle-start-file-process): Check only for
1785         `remote-tty' process property.
1786         (tramp-open-shell): Don't check for tty.
1787         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
1788         process property.
1790         * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
1791         host.
1793 2010-07-28  Chong Yidong  <cyd@stupidchicken.com>
1795         * emacs-lisp/package.el (package-load-list, package-archives)
1796         (package-archive-contents, package-user-dir)
1797         (package-directory-list, package--builtins, package-alist)
1798         (package-activated-list, package-obsolete-alist): Mark as risky.
1800 2010-07-28  Phil Hagelberg  <phil@evri.com>
1802         Add support for non-default package repositories.
1803         * emacs-lisp/package.el (package-archive-base): Var deleted.
1804         (package-archives): New variable.
1805         (package-archive-contents): Doc fix.
1806         (package-load-descriptor): Do nothing if descriptor file is missing.
1807         (package--write-file-no-coding): New function.
1808         (package-unpack-single): Use it.
1809         (package-archive-id): New function.
1810         (package-download-single, package-download-tar)
1811         (package-menu-view-commentary): Use it.
1812         (package-installed-p): Make second argument optional.
1813         (package-read-all-archive-contents): New function.
1814         (package-initialize): Use it.
1815         (package-read-archive-contents): Add ARCHIVE argument.
1816         (package--add-to-archive-contents): New function.
1817         (package-install): Don't call package-read-archive-contents.
1818         (package--download-one-archive): Store archive file in a
1819         subdirectory of package-user-dir.
1820         (package-menu-execute): Remove spurious line movement.
1822 2010-07-28  Jan Djärv  <jan.h.d@swipnet.se>
1824         * cus-start.el (tool-bar-style): Add text-image-horiz.
1826 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
1828         * progmodes/gud.el (gud-common-init): Check for remoteness of
1829         `file', and not of `default-directory'.
1831 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
1833         * net/tramp.el (tramp-methods): Move hostname to the end in all
1834         ssh `tramp-login-args'.
1835         (tramp-verbose): Describe verbose level 9.
1836         (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
1837         (tramp-open-connection-setup-interactive-shell): Trace stty
1838         settings if `tramp-verbose' >= 9.
1839         (tramp-handle-start-file-process): Implement tty setting.
1840         (Bug#4604, Bug#6360)
1842         * net/tramp-cmds.el (tramp-bug): Recommend setting of
1843         `tramp-verbose' to 9.
1845 2010-07-27  Aaron S. Hawley  <ashawley@burlingtontelecom.net>
1847         * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
1848         (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
1849         Remove references to package `lisp-re' (bug#4369).
1851 2010-07-27  Tom Tromey  <tromey@redhat.com>
1853         * progmodes/js.el (js-mode):
1854         * progmodes/make-mode.el (makefile-mode):
1855         * progmodes/simula.el (simula-mode):
1856         * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
1858 2010-07-27  Juanma Barranquero  <lekktu@gmail.com>
1860         * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
1862         * cedet/semantic/db-file.el (object-write): Fix typo in docstring.
1864         * time.el (display-time-day-and-date): Remove spurious * in docstring.
1865         (display-time-world-buffer-name, display-time-world-mode-map):
1866         Fix typos in docstrings.
1868 2010-07-27  Shyam Karanatt  <shyam@swathanthran.in>  (tiny change)
1870         * image-mode.el (image-display-size): New function.
1871         (image-forward-hscroll, image-next-line, image-eol, image-eob)
1872         (image-mode-fit-frame): Use it (Bug#6639).
1874 2010-07-27  Chong Yidong  <cyd@stupidchicken.com>
1876         * dired.el (dired-buffers-for-dir): Handle list values of
1877         dired-directory (Bug#6636).
1879 2010-07-26  Sam Steingold  <sds@gnu.org>
1881         * mouse.el (mouse-yank-primary, mouse-yank-secondary):
1882         Do not call `x-get-selection' the second time, reuse the value.
1884 2010-07-26  Daiki Ueno  <ueno@unixuser.org>
1886         * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
1887         which consist of control chars only.  Suggested by Richard Stallman.
1889 2010-07-25  Daiki Ueno  <ueno@unixuser.org>
1891         * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
1892         exists before passing an error to find-file-not-found-functions
1893         (bug#6723).
1895 2010-07-23  Lukas Huonker  <l.huonker@gmail.com>
1897         * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
1898         Remove leading nil element, adjust values.
1899         (tetris-shapes, tetris-shape-scores):
1900         Change representation of shapes and remove some redundancy.
1901         (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
1902         (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
1903         Adjust for working with new representation of shapes.
1904         (tetris-shape-rotations): New function.
1905         (tetris-move-bottom, tetris-move-left, tetris-move-right)
1906         (tetris-rotate-prev, tetris-rotate-next):
1907         Adjust for working with the new version of tetris-test-shape.
1909 2010-07-23  Markus Triska  <markus.triska@gmx.at>
1911         * progmodes/ps-mode.el: Use comint (bug#5954).
1912         (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
1913         (ps-mode-other-newline): Simplify.
1914         (ps-run-mode): Derive from comint-mode instead of
1915         fundamental-mode, yielding input history etc.
1916         (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
1917         (ps-run-send-string): Adapt for comint-mode.
1918         (ps-run-newline): Remove now unneeded function.
1920 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
1922         * net/tramp.el (tramp-methods): Move hostname to the end in all
1923         plink `tramp-login-args'.
1925 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
1927         * net/tramp.el (tramp-open-shell): New defun.
1928         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1929         Use it.
1931 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
1933         * net/tramp.el (tramp-file-name-regexp-unified)
1934         (tramp-completion-file-name-regexp-unified): On W32 systems, do
1935         not regard the volume letter as remote filename.  (Bug#5447)
1937 2010-07-23  Juanma Barranquero  <lekktu@gmail.com>
1939         * custom.el (custom-declare-variable): Give a clearer error message
1940         when the docstring is missing (bug#6476).
1942 2010-07-22  Michael R. Mauger  <mmaug@yahoo.com>
1944         * progmodes/sql.el: Version 2.4.  Improved Login prompting.
1945         (sql-login-params): New widget definition.
1946         (sql-oracle-login-params, sql-mysql-login-params)
1947         (sql-solid-login-params, sql-sybase-login-params)
1948         (sql-informix-login-params, sql-ingres-login-params)
1949         (sql-ms-login-params, sql-postgres-login-params)
1950         (sql-interbase-login-params, sql-db2-login-params)
1951         (sql-linter-login-params): Use it.
1952         (sql-sqlite-login-params): Use it; Define "database" parameter as
1953         a file name.
1954         (sql-sqlite-program): Change to "sqlite3".
1955         (sql-comint-sqlite): Make sure database name is complete.
1956         (sql-for-each-login): New function.
1957         (sql-connect, sql-save-connection): Use it.
1958         (sql-get-login-ext): New function.
1959         (sql-get-login): Use it.
1960         (sql-make-alternate-buffer-name): Handle :file parameters.
1962 2010-07-22  Juanma Barranquero  <lekktu@gmail.com>
1964         * dired.el (dired-no-confirm): Document value t and fix defcustom to
1965         accept it (bug#6597).  Suggested by Drew Adams <drew.adams@oracle.com>.
1967 2010-07-22  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1969         * dired.el (dired-mode-map): Use command remapping (bug#6632).
1971 2010-07-22  Lawrence Mitchell  <wence@gmx.li>
1973         * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
1975 2010-07-21  Michael Albinus  <michael.albinus@gmx.de>
1977         * net/tramp.el (tramp-get-ls-command)
1978         (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
1979         instead of "/".
1981 2010-07-20  Michael R. Mauger  <mmaug@yahoo.com>
1983         * progmodes/sql.el: Version 2.3.
1984         (sql-connection-alist): Changed keys from symbols to strings;
1985         enhanced the widget definition.
1986         (sql-mode-menu): Added submenu to select connections.
1987         (sql-interactive-mode-menu): Added "Save Connection" item.
1988         (sql-add-product): Fixed menu item.
1989         (sql-get-product-feature): Improved error handling.
1990         (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
1991         (sql-make-alternate-buffer-name): Simplified.
1992         (sql-product-interactive): Handle missing product.
1993         (sql-connect): Support string keys, minor improvements.
1994         (sql-save-connection): New function.
1995         (sql-connection-menu-filter): New function.
1997 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
1999         * net/tramp.el (tramp-file-name-handler): Trace 'quit.
2000         (tramp-open-connection-setup-interactive-shell): Apply
2001         workaround for IRIX64 bug.  Move argument of last
2002         `tramp-send-command' where it belongs to.
2004 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
2006         * net/tramp.el (tramp-perl-file-attributes)
2007         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
2008         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
2009         front of `login-args'.
2011 2010-07-19  Juanma Barranquero  <lekktu@gmail.com>
2013         * time.el (display-time-world-mode): Define with `define-derived-mode'.
2014         Set `show-trailing-whitespace' to nil.
2015         (display-time-world-display): Simplify.
2017 2010-07-18  Alan Mackenzie  <acm@muc.de>
2019         Enhance `c-file-style' in file/directory local variables.
2020         * progmodes/cc-mode.el (c-count-cfss): New function.
2021         (c-before-hack-hook): Call `c-set-style' differently according to
2022         whether c-file-style was set in file or directory local
2023         variables.
2025 2010-07-18  Michael R. Mauger  <mmaug@yahoo.com>
2027         * progmodes/sql.el: Version 2.2.
2028         (sql-product, sql-user, sql-database, sql-server, sql-port): Use
2029         defcustom :safe keyword rather than putting safe-local-variable
2030         property.
2031         (sql-password): Use defcustom :risky keyword rather than putting
2032         risky-local-variable property.
2033         (sql-oracle-login-params, sql-sqlite-login-params)
2034         (sql-solid-login-params, sql-sybase-login-params)
2035         (sql-informix-login-params, sql-ingres-login-params)
2036         (sql-ms-login-params, sql-postgres-login-params)
2037         (sql-interbase-login-params, sql-db2-login-params)
2038         (sql-linter-login-params): Add `port' option.
2039         (sql-get-product-feature): Added NO-INDIRECT parameter.
2040         (sql-comint-oracle, sql-comint-sybase)
2041         (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
2042         (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
2043         (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
2044         (sql-comint-linter): Renamed sql-connect-* functions to
2045         sql-comint-*.
2046         (sql-product-alist, sql-mode-menu): Renamed as above and
2047         :sqli-connect-func to :sqli-comint-func.
2048         (sql-connection): New variable.
2049         (sql-interactive-mode): Set it.
2050         (sql-connection-alist): New variable.
2051         (sql-connect): New function.
2052         (sql--alt-buffer-part, sql--alt-if-not-empty)
2053         (sql-make-alternate-buffer-name): Improved alternative buffer name.
2055 2010-07-17  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2057         * image-mode.el (image-bookmark-make-record): Do not set context
2058         in an image (Bug#6650).
2060 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
2062         * simple.el (select-active-region): New function.
2063         (push-mark-command, set-mark, activate-mark)
2064         (handle-shift-selection): Use it.
2065         (deactivate-mark): Don't check for size of region.
2067         * mouse.el (mouse-drag-track): Use select-active-region.
2069 2010-07-17  Michael Albinus  <michael.albinus@gmx.de>
2071         * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
2072         "--dired" stronger.
2074 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
2076         * term/x-win.el (x-select-enable-primary): Change default to nil.
2077         (x-select-enable-clipboard): Add :version keyword.
2079         * mouse.el (mouse-drag-copy-region):
2080         * simple.el (select-active-regions): Likewise.
2082 2010-07-16  Reiner Steib  <Reiner.Steib@gmx.de>
2084         * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
2085         (vc-coding-system-for-diff): Use it to decide whether to inherit
2086         from the file the EOL format for reading the diffs of that file.
2087         (Bug#4451)
2089 2010-07-16  Eli Zaretskii  <eliz@gnu.org>
2091         * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
2092         unibyte, so compressed attachments are not compressed again.
2094 2010-07-16  Michael Albinus  <michael.albinus@gmx.de>
2096         * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
2097         "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
2098         (tramp-find-shell): Simplify setting connection property.
2099         (tramp-get-ls-command): Make test for "--color=never" stronger.
2101 2010-07-15  Simon South  <ssouth@member.fsf.org>
2103         * progmodes/delphi.el (delphi-previous-indent-of): Indent case
2104         blocks within record declarations (i.e. variant parts) correctly.
2106 2010-07-15  Simon South  <ssouth@member.fsf.org>
2108         * progmodes/delphi.el (delphi-token-at): Give newlines precedence
2109         over literal tokens when parsing so newlines aren't "absorbed" by
2110         single-line comments.  Corrects the indentation of case blocks
2111         that have a comment on the first line.
2113 2010-07-14  Karl Fogel  <kfogel@red-bean.com>
2115         * bookmark.el (bookmark-load-hook): Fix doc string as suggested
2116         by Drew Adams (Bug#5504).
2118 2010-07-14  Jan Djärv  <jan.h.d@swipnet.se>
2120         * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
2121         now that Unicode is used (Bug#6594).
2123 2010-07-14  Chong Yidong  <cyd@stupidchicken.com>
2125         * term/x-win.el (x-select-enable-clipboard): Default to t.
2126         (x-initialize-window-system): Don't overwrite Paste menu item.
2128         * simple.el (select-active-regions): Default to t.
2129         (push-mark-command): Don't overwrite primary with empty string.
2131         * mouse.el: Bind mouse-2 to mouse-yank-primary.
2132         (mouse-drag-copy-region): Default to nil.
2134         * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
2135         Cut/Copy/Paste menu bar items.
2137 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2139         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
2140         Patch applied by Karl Fogel.
2142         * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
2143         and `bookmark-current-buffer' if they have been already set in
2144         another buffer (e.g gnus-art).
2146 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
2147             Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2149         Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
2151         * bookmark.el (bookmark-make-record-default): Allow unneeded
2152         information to be omitted from the record.
2154         Adjust declarations and calls:
2156         * info.el (bookmark-make-record-default): Adjust declaration.
2157         (Info-bookmark-make-record): Adjust call.
2159         * woman.el (bookmark-make-record-default): Adjust declaration.
2160         (woman-bookmark-make-record): Adjust call.
2162         * man.el (bookmark-make-record-default): Adjust declaration.
2163         (Man-bookmark-make-record): Adjust call.
2165         * image-mode.el (bookmark-make-record-default): Adjust declaration.
2167         * doc-view.el (bookmark-make-record-default): Adjust declaration.
2169 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
2171         * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
2172         This is also from Thierry Volpiatto's patch in bug #6444.  However,
2173         because it was extraneous to the functional change in that patch,
2174         and causes a re-indendation, I am committing it separately.
2176 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2178         * bookmark.el (bookmark-show-annotation): Ensure annotations show,
2179         e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
2180         Patch applied by Karl Fogel (Bug#6444).
2182 2010-07-13  Chong Yidong  <cyd@stupidchicken.com>
2184         * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
2186 2010-07-13  Adrian Robert  <Adrian.B.Robert@gmail.com>
2188         * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
2189         Dempsky; bug#5084).  Remove incorrect binding for S-tab.
2190         (ns-alternatives-map): Change S-tab binding to backtab
2191         (bug#6616).
2193         * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
2194         under ns.
2196 2010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
2198         * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
2199         (Bug#5806)
2201         * language/tv-util.el (tai-viet-re): Remove format.
2203 2010-07-12  Kenichi Handa  <handa@m17n.org>
2205         * language/hebrew.el: Remove no-byte-compile declaration.
2206         Change coding: tag to utf-8.  Register hebrew-shape-gstring in
2207         composition-function-table for 3-character looking back.
2208         (hebrew-font-get-precomposed): New function.
2209         (hebrew-shape-gstring): Utilize precomposed glyphs if available.
2211 2010-07-11  Chong Yidong  <cyd@stupidchicken.com>
2213         * mouse.el (mouse-drag-track): Handle select-active-regions
2214         (Bug#6612).
2216 2010-07-11  Magnus Henoch  <magnus.henoch@gmail.com>
2218         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
2219         empty argument to gvfs-copy.
2221 2010-07-10  Glenn Morris  <rgm@gnu.org>
2223         * calendar/calendar.el (calendar-week-end-day): New function.
2224         * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
2225         Respect calendar-week-start-day.  (Bug#6606)
2226         (cal-tex-insert-day-names, cal-tex-insert-blank-days)
2227         (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
2228         (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
2229         respect calendar-week-start-day.
2231 2010-07-10  Chong Yidong  <cyd@stupidchicken.com>
2233         * simple.el (use-region-p): Doc fix (Bug#6607).
2235 2010-07-10  Aleksei Gusev  <aleksei.gusev@gmail.com>  (tiny change)
2237         * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
2238         regexps for cucumber and ruby.
2240 2010-07-08  Daiki Ueno  <ueno@unixuser.org>
2242         * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
2243         (epa-file-insert-file-contents): Hack to prevent
2244         find-file from opening empty buffer when decryption failed
2245         (bug#6568).
2247 2010-07-07  Agustín Martín  <agustin.martin@hispalinux.es>
2249         * textmodes/ispell.el (ispell-alternate-dictionary):
2250         Use file-readable-p.
2251         Return nil if no word-list is found at default locations.
2252         (ispell-complete-word-dict): Default to nil.
2253         (ispell-command-loop): Use 'word-list' when using lookup-words.
2254         (lookup-words): Use ispell-complete-word-dict or
2255         ispell-alternate-dictionary.  Check for word-list availability
2256         and handle errors if needed with better messages (Bug#6539).
2257         (ispell-complete-word): Use ispell-complete-word-dict or
2258         ispell-alternate-dictionary.
2260 2010-07-07  Christoph Scholtes  <cschol2112@gmail.com>
2262         * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
2263         builtins (BufferError, BytesWarning, WindowsError; callables
2264         bin, bytearray, bytes, format, memoryview, next, print; __package__).
2266 2010-07-07  Glenn Morris  <rgm@gnu.org>
2268         * play/zone.el (top-level): Do not require timer, tabify, or cl.
2269         (zone-shift-left): Ignore intangibility, and any errors from
2270         forward-char.
2271         (zone-shift-right): Remove no-op end-of-line.  Ignore intangibility.
2272         (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
2273         deleting, and copying text properties.
2274         (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
2275         (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
2276         to point-max is hard.
2277         (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
2278         (zone-fill-out-screen): Ignore intangibility.
2280 2010-07-05  Chong Yidong  <cyd@stupidchicken.com>
2282         * menu-bar.el (menu-bar-mode):
2283         * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
2284         if it has been set.
2286         * mouse.el (mouse-drag-track): Call mouse-start-end to handle
2287         word/line selection (Bug#6565).
2289 2010-07-04  Juanma Barranquero  <lekktu@gmail.com>
2291         * net/dbus.el (dbus-send-signal): Declare function.
2293 2010-07-04  Michael Albinus  <michael.albinus@gmx.de>
2295         * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
2296         (dbus-register-property): New optional argument EMITS-SIGNAL.
2297         (dbus-property-handler): Send signal "PropertiesChanged" if requested.
2299 2010-07-03  Chong Yidong  <cyd@stupidchicken.com>
2301         * mouse.el (mouse-drag-overlay): Variable deleted.
2302         (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
2303         (mouse--remap-link-click-p): New function.
2304         (mouse-drag-track): Handle dragging by using temporary Transient
2305         Mark mode, instead of a special overlay.
2306         (mouse-kill-ring-save, mouse-save-then-kill): Don't call
2307         mouse-show-mark.
2309         * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
2310         deleted.
2312 2010-07-02  Juri Linkov  <juri@jurta.org>
2314         * autoinsert.el (auto-insert-alist): Fix readability
2315         by using dotted pair notation for lambda.
2317 2010-07-02  Juri Linkov  <juri@jurta.org>
2319         * faces.el (read-face-name): Rename arg `string-describing-default'
2320         to `default'.  Doc fix.  Display the default value in quotes
2321         in the prompt.  With empty input, return the `default' arg,
2322         unless the default value is a string (in which case return nil).
2323         (describe-face): Replace the string `default' arg of `read-face-name'
2324         with the symbol `default'.
2326 2010-07-02  Chong Yidong  <cyd@stupidchicken.com>
2328         * emulation/viper-cmd.el (viper-delete-backward-char)
2329         (viper-del-backward-char-in-insert)
2330         (viper-del-backward-char-in-replace, viper-change)
2331         (viper-backward-indent): Replace delete-backward-char with
2332         delete-char (Bug#6552).
2334 2010-07-01  Chong Yidong  <cyd@stupidchicken.com>
2336         * ruler-mode.el (ruler--save-header-line-format): Fix typos.
2338 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
2340         * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
2341         argument passed to frame-creation-function (Bug#5378).
2343         * faces.el (x-handle-named-frame-geometry)
2344         (x-handle-reverse-video, x-create-frame-with-faces)
2345         (face-set-after-frame-default, tty-create-frame-with-faces): Don't
2346         separately consult default-frame-alist.  It is now passed as the
2347         PARAMETER argument.
2349 2010-06-30  Andreas Schwab  <schwab@linux-m68k.org>
2351         * startup.el (command-line): Don't call tool-bar-setup in a
2352         tty-only build.
2354 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
2356         * ruler-mode.el (ruler--save-header-line-format): New fun.
2357         (ruler-mode): Use it as a setter function, so as not to overwrite
2358         ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
2360 2010-06-29  Chong Yidong  <cyd@stupidchicken.com>
2362         * vc/vc.el (vc-deduce-backend): New fun.  Handle diff buffers.
2363         (vc-root-diff, vc-print-root-log, vc-log-incoming)
2364         (vc-log-outgoing): Use it.
2365         (vc-diff-internal): Set diff-vc-backend.
2367         * vc/diff-mode.el (diff-vc-backend): New var.
2369 2010-06-28  Jan Djärv  <jan.h.d@swipnet.se>
2371         * dynamic-setting.el (font-setting-change-default-font): Remove
2372         call to message.
2374 2010-06-28  Kenichi Handa  <handa@m17n.org>
2376         * international/quail.el (quail-insert-kbd-layout): Fix the
2377         showing of untranslated characters.
2379 2010-06-28  Chong Yidong  <cyd@stupidchicken.com>
2381         * simple.el (delete-active-region): New option.
2382         (delete-backward-char): Implement in Lisp.
2383         (delete-forward-char): New command.
2385         * mouse.el (mouse-region-delete-keys): Deleted.
2386         (mouse-show-mark): Simplify.
2388         * bindings.el (global-map): Bind delete and DEL, the former to
2389         delete-forward-char.
2391 2010-06-27  Lennart Borgman  <lennart.borgman@gmail.com>
2393         * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
2394         (ruby-mode): Bind indent-line-function (Bug#5119).
2396 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
2398         * startup.el (command-line): Recognize "0" X resource value.
2400 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
2402         * startup.el (command-line): Use X resources to set the value of
2403         menu-bar-mode and tool-bar-mode, before calling frame-initialize.
2405         * menu-bar.el (menu-bar-mode):
2406         * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
2407         Set init-value to t.
2409         * frame.el (frame-notice-user-settings): Don't change
2410         default-frame-alist based on menu-bar-mode and tool-bar-mode, or
2411         vice versa (Bug#2249).
2413 2010-06-26  Eli Zaretskii  <eliz@gnu.org>
2415         * w32-fns.el (w32-convert-standard-filename): Doc fix.
2417 2010-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
2419         * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
2420         Make sure `flyspell-word' re-checks word after function run (Bug#6504).
2422         * textmodes/ispell.el (ispell-init-process): Make sure ispell and
2423         default directories are expanded (Bug#6143).
2425 2010-06-24  Juri Linkov  <juri@jurta.org>
2427         * minibuffer.el (completions-format): Change default from nil to
2428         `horizontal'.  Remove `nil' value from :type.  Doc fix.  (Bug#6459)
2430 2010-06-24  Juri Linkov  <juri@jurta.org>
2432         * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
2433         buffer-locally to lambda that re-runs the vc diff command.
2434         (Bug#6447)
2436 2010-06-24  Chong Yidong  <cyd@stupidchicken.com>
2438         * kmacro.el (kmacro-call-macro): Don't issue hint message if the
2439         echo area is in use (Bug#3412).
2441 2010-06-22  Glenn Morris  <rgm@gnu.org>
2443         * textmodes/texinfmt.el (texinfo-format-region)
2444         (texinfo-raise-lower-sections, texinfo-format-separate-node)
2445         (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
2446         (texinfo-format-option, texinfo-noindent):
2447         Use line-beginning-position and line-end-position.
2449         * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
2450         * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
2451         * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
2452         utf-8 characters.
2454 2010-06-21  Karl Fogel  <kfogel@red-bean.com>
2456         * play/zone.el (zone-fall-through-ws): Fix next-line ->
2457         forward-line fallout.
2459 2010-07-06  Chong Yidong  <cyd@stupidchicken.com>
2461         * mouse.el (mouse-appearance-menu): Add docstring.
2463         * help.el (describe-key): Print up-event using key-description.
2465 2010-07-03  Michael Albinus  <michael.albinus@gmx.de>
2467         * net/zeroconf.el (zeroconf-resolve-service)
2468         (zeroconf-service-resolver-handler): Use
2469         `dbus-byte-array-to-string'.
2470         (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
2472 2010-07-03  Jan Moringen  <jan.moringen@uni-bielefeld.de>
2474         * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
2476 2010-06-30  Dan Nicolaescu  <dann@ics.uci.edu>
2478         Avoid displaying files with a nil state in vc-dir.
2479         * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
2480         cases that cause insertion.
2481         (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
2482         with a nil state.
2484 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
2486         * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
2488 2010-06-29  Leo  <sdl.web@gmail.com>
2490         * emacs-lisp/rx.el (rx): Doc fix.  (Bug#6537)
2492 2010-06-27  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
2494         * generic-x.el (bat-generic-mode): Fix regexp for command line
2495         switches (Bug#5719).
2497 2010-06-27  Masatake YAMATO  <yamato@redhat.com>
2499         * htmlfontify.el (hfy-face-attr-for-class): Use append instead
2500         of nconc to avoid pure storage error (Bug#6239).
2502 2010-06-27  Christoph  <cschol2112@googlemail.com>  (tiny change)
2504         * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
2505         (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
2506         bindings of bookmark-automatically-show-annotations (Bug#6515).
2508 2010-06-25  Eli Zaretskii  <eliz@gnu.org>
2510         * arc-mode.el (archive-zip-extract): Don't quote the file name on
2511         MS-Windows and MS-DOS.  (Bug#6467, Bug#6144)
2513 2010-06-24  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
2515         * comint.el (make-comint, make-comint-in-buffer): Mention return
2516         value in the docstrings.  (Bug#6498)
2518 2010-06-24  Yoni Rabkin  <yoni@rabkins.net>
2520         * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
2521         since it is not present when using some non-default switches.
2523 2010-06-23  Karl Fogel  <kfogel@red-bean.com>
2525         * simple.el (compose-mail): Fix doc string to refer to
2526         `compose-mail-user-agent-warnings', instead of to the
2527         nonexistent `compose-mail-check-user-agent'.
2529 2010-06-21  Alan Mackenzie  <bug-cc-mode@gnu.org>
2531         Fix an indentation bug:
2533         * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
2534         (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
2535         of existing values.
2537         * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
2538         (c-clear->-pair-props-if-match-before): now return t when they've
2539         cleared properties, nil otherwise.
2540         (c-before-change-check-<>-operators): Set c-new-beg/end correctly
2541         by taking account of the existing value.
2543         * progmodes/cc-defs.el
2544         (c-clear-char-property-with-value-function): Fix this to clear the
2545         property rather than overwriting it with nil.
2547 2010-06-20  Chong Yidong  <cyd@stupidchicken.com>
2549         * emacs-lisp/package.el (package-print-package): Add link to
2550         package description via describe-package.
2551         (describe-package-1): List package requirements.  Add button to
2552         perform installation.
2553         (package-menu-describe-package): New command.
2555         * help-mode.el (help-package): New button type.
2557 2010-06-19  Chong Yidong  <cyd@stupidchicken.com>
2559         * emacs-lisp/package.el: Move package-list-packages binding to
2560         menu-bar.el.
2561         (describe-package, describe-package-1, package--dir): New funs.
2562         (package-activate-1): Use package--dir.
2564         * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
2566         * help-mode.el (help-package-def): New button type.
2568         * menu-bar.el: Move package-list-packages binding here from
2569         package.el.
2571 2010-06-19  Gustav Hållberg  <gustav@gmail.com>  (tiny change)
2573         * descr-text.el (describe-char): Avoid trailing whitespace.  (Bug#6423)
2575 2010-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2577         * emacs-lisp/edebug.el (edebug-read-list):
2578         Phase out old-style backquotes.
2580 2010-06-17  Juri Linkov  <juri@jurta.org>
2582         * help-mode.el (help-mode): Set buffer-local variable
2583         revert-buffer-function to help-mode-revert-buffer.
2584         (help-mode-revert-buffer): New function.
2586         * info.el (Info-revert-find-node): Check for major-mode Info-mode
2587         before popping to "*info*" (like in other Info functions).
2588         Keep buffer-name in old-buffer-name.  Keep Info-history-forward in
2589         old-history-forward.  Pop to old-buffer-name or "*info*" to
2590         recreate the killed buffer.  Set Info-history-forward from
2591         old-history-forward.
2592         (Info-breadcrumbs-depth): Add :group and :version.
2594 2010-06-17  Dan Nicolaescu  <dann@ics.uci.edu>
2596         * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
2598 2010-06-17  Agustín Martín  <agustin.martin@hispalinux.es>
2600         * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
2601         for languages like Portuguese with pt_{BR,PT} and no plain pt.
2603 2010-06-17  Juanma Barranquero  <lekktu@gmail.com>
2605         * emacs-lisp/package.el (package-menu-mode-map):
2606         Move initialization into declaration.
2608         * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
2610 2010-06-17  Chong Yidong  <cyd@stupidchicken.com>
2612         * emacs-lisp/package.el (package-archive-base): Point to
2613         elpa.gnu.org.
2614         (package-enable, package-load-list): New defcustoms.
2615         (package-user-dir, package-directory-list): Turn into defcustoms.
2616         Don't include package-user-dir in package-directory-list.
2617         (package--builtins-base): Don't include Emacs as a "package".
2618         (package-subdirectory-regexp): New var.
2619         (package-load-all-descriptors, package-compute-transaction)
2620         (package-download-transaction): Obey package-load-list.
2621         (package-activate-1): Rename from package-do-activate.
2622         (package-list-packages-internal): Check package-load-list.
2623         (package-load-descriptor, package-generate-autoloads)
2624         (package-unpack, package-unpack-single)
2625         (package--read-archive-file, package-delete): Use
2626         expand-file-name.
2628         * emacs-lisp/package-x.el: New file.  Package uploading
2629         functionality split out from package.el.
2631         * startup.el (command-line): Load packages after reading init
2632         file.
2634 2010-06-17  Tom Tromey  <tromey@redhat.com>
2636         * emacs-lisp/package.el: New file.
2638 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
2640         Fix vc-annotate for renamed files when using Git.
2641         * vc-git.el (vc-git-find-revision): Deal with empty results from
2642         ls-files.  Doe not pass the object as a file name to cat-file, it
2643         is not a file name.
2644         (vc-git-annotate-command): Pass the file name using -- to avoid
2645         ambiguity with the revision.
2646         (vc-git-previous-revision): Pass a relative file name.
2648 2010-06-22  Glenn Morris  <rgm@gnu.org>
2650         * progmodes/js.el (js-mode-map): Use standard capitalization and
2651         ellipses for menu entries.
2653         * wid-edit.el (widget-complete): Doc fix.
2655 2010-06-22  Jürgen Hötzel  <juergen@hoetzel.info>  (tiny change)
2657         * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
2659 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
2661         Fix annotating other revisions for renamed files in vc-annotate.
2662         * vc-annotate.el (vc-annotate): Add an optional argument for the
2663         VC backend.  Use it when non-nil.
2664         (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
2665         (Bug#6487)
2667         Fix vc-annotate-show-changeset-diff-revision-at-line for git.
2668         * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
2669         Do not pass the file name to the 'previous-revision call when we
2670         don't want a file diff.  (Bug#6489)
2672 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
2674         Fix finding revisions for renamed files in vc-annotate.
2675         * vc.el (vc-find-revision): Add an optional argument for
2676         the VC backend.  Use it when non-nil.
2677         * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
2678         backend to vc-find-revision.  (Bug#6487)
2680 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
2682         Fix reading file names in Git annotate buffers.
2683         * vc-git.el (vc-git-annotate-extract-revision-at-line): Remove
2684         trailing whitespace.  Suggested by Eric Hanchrow.  (Bug#6481)
2686 2010-06-20  Alan Mackenzie  <acm@muc.de>
2688         * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
2689         in file local variables, set it first.
2691 2010-06-19  Glenn Morris  <rgm@gnu.org>
2693         * descr-text.el (describe-char-unicode-data): Insert separating
2694         space when needed.  (Bug#6422)
2696         * progmodes/idlwave.el (idlwave-action-and-binding):
2697         Fix typo in 2009-12-03 change.  (Bug#6450)
2699 2010-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2701         * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
2702         handling for `lambda' (misunderstanding).
2704 2010-06-16  Jay Belanger  <jay.p.belanger@gmail.com>
2706         * calc/calc-poly.el (math-accum-factors): Make sure that
2707         constants aren't distributed after they are factored out.
2709 2010-06-16  Juri Linkov  <juri@jurta.org>
2711         * facemenu.el (list-colors-display): Call `pop-to-buffer' before
2712         `list-colors-print'.  (Bug#6332)
2714         * subr.el (read-quoted-char): Fix up last change (bug#6290).
2716 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2718         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
2719         specially, since it's a macro.  Fix up wrong hint passed to maybe-cons.
2721         * font-lock.el (font-lock-major-mode): Rename from
2722         font-lock-mode-major-mode to distinguish it from
2723         global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
2724         (font-lock-set-defaults):
2725         * font-core.el (font-lock-default-function): Adjust users.
2726         (font-lock-mode): Don't set it at all.
2728 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2730         * vc-annotate.el (vc-annotate): Use vc-read-revision.
2732 2010-06-16  Glenn Morris  <rgm@gnu.org>
2734         * calendar/appt.el (appt-time-msg-list): Doc fix.
2735         (appt-check): Let-bind appt-warn-time.
2736         (appt-add): Make the 3rd argument optional.
2737         Simplify argument names.  Doc fix.  Check for integer WARNTIME.
2738         Only add WARNTIME to the output list if non-nil.
2740 2010-06-16  Ivan Kanis  <apple@kanis.eu>
2742         * calendar/appt.el (appt-check): Let the 3rd element of
2743         appt-time-msg-list specify the warning time.
2744         (appt-add): Add new argument with the warning time.  (Bug#5176)
2746 2010-06-16  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
2748         * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
2749         older than version 1.6.  (Bug#6361)
2751 2010-06-16  Helmut Eller  <eller.helmut@gmail.com>
2753         * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
2754         used by cl-do-arglist.  (Bug#6408)
2756 2010-06-16  Agustín Martín  <agustin.martin@hispalinux.es>
2758         * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
2759         portuguese casechars/not-casechars for missing 'çÇ'.
2760         Suggested by Rolando Pereira (bug#6434).
2762 2010-06-15  Juanma Barranquero  <lekktu@gmail.com>
2764         * facemenu.el (list-colors-sort): Doc fix.
2766 2010-06-15  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
2768         * progmodes/sql.el (sql-connect-mysql): Fix typo.
2770 2010-06-14  Juri Linkov  <juri@jurta.org>
2772         Add sort option `list-colors-sort'.  (Bug#6332)
2773         * facemenu.el (color-rgb-to-hsv): New function.
2774         (list-colors-sort): New defcustom.
2775         (list-colors-sort-key): New function.
2776         (list-colors-display): Doc fix.  Sort list according to the option
2777         `list-colors-sort'.
2778         (list-colors-print): Add HSV values to `help-echo' property of
2779         RGB strings.
2781 2010-06-14  Juri Linkov  <juri@jurta.org>
2783         * compare-w.el: Move to the "vc" subdirectory.
2785 2010-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2787         * image-mode.el (image-mode-map): Remap left-char and right-char.
2789         * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
2791 2010-06-12  Chong Yidong  <cyd@stupidchicken.com>
2793         * term/common-win.el (x-colors): Add all the color names defined
2794         in rgb.txt (Bug#6332).
2796         * facemenu.el (list-colors-print): Don't print extra names if it
2797         will overflow the window width.
2799         * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
2800         change (Bug#6343).
2802 2010-06-12  Eli Zaretskii  <eliz@gnu.org>
2804         * files.el (make-directory): Doc fix (bug#6396).
2806 2010-06-12  Michael Albinus  <michael.albinus@gmx.de>
2808         * net/tramp.el (tramp-remote-process-environment): Protect version
2809         string by apostroph.
2810         (tramp-shell-prompt-pattern): Do not use a shy group in case of
2811         XEmacs.
2812         (tramp-file-name-for-operation): Add `call-process-region'.
2813         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
2815         * net/tramp-compat.el (top): Do not autoload
2816         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
2817         only when `start-file-process' is not bound.
2818         (tramp-advice-file-expand-wildcards): Do not use
2819         `tramp-handle-file-remote-p'.
2820         (tramp-compat-make-temp-file): Handle the case, that
2821         `make-temp-file' has no third argument EXTENSION.
2823 2010-06-11  Juanma Barranquero  <lekktu@gmail.com>
2825         * makefile.w32-in (WINS_BASIC): Include new directory vc.
2827         * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
2829 2010-06-11  Juri Linkov  <juri@jurta.org>
2831         * finder.el (finder-known-keywords): Add keyword "vc"
2832         for version control.
2834         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
2835         * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
2836         * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
2837         * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
2839 2010-06-11  Juri Linkov  <juri@jurta.org>
2841         Move version control related files to the "vc" subdirectory.
2842         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
2843         * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
2844         * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
2845         * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
2846         * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
2847         * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
2848         * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
2849         * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
2850         Move files to the "vc" subdirectory.
2852 2010-06-11  Chong Yidong  <cyd@stupidchicken.com>
2854         * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
2855         (Bug#6367).
2857 2010-06-11  Stephen Eglen  <stephen@gnu.org>
2859         * shell.el: Bind `shell-resync-dirs' to M-RET.
2861 2010-06-10  Michael Albinus  <michael.albinus@gmx.de>
2863         * notifications.el: Move file from lisp/net, because it is
2864         supposed to talk locally to the user.
2866 2010-06-10  Julien Danjou  <julien@danjou.info>
2868         * net/notifications.el (notifications-on-action-signal)
2869         (notifications-on-closed-signal): Pass notification id as first
2870         argument to the callback functions.  Add docstrings.
2871         (notifications-notify): Fix docstring.
2873 2010-06-10  Glenn Morris  <rgm@gnu.org>
2875         * emacs-lisp/authors.el (authors-ignored-files)
2876         (authors-valid-file-names): Add some files.
2878 2010-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2880         * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
2881         merge conflict, giving preference to the emacs-23 version of the code.
2883 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2885         * emacs-lisp/advice.el (ad-compile-function):
2886         Define warning-suppress-types before we let-bind it (bug#6275).
2888         * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
2889         declare it, make it buffer-local and permanent-local (bug#6324).
2890         (vc-resynch-window): Adjust name.
2891         * vc-hooks.el (vc-find-file-hook): Adjust name.
2893 2010-06-09  Michael Albinus  <michael.albinus@gmx.de>
2895         * net/notifications.el (notifications-notify): Fix docstring.
2897 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
2899         Update to Unicode 6.0.0 beta.
2900         * international/charprop.el: Update copyright.
2901         * international/mule-cmds.el (ucs-names): Update character ranges.
2902         * international/uni-bidi.el:
2903         * international/uni-category.el:
2904         * international/uni-combining.el:
2905         * international/uni-comment.el:
2906         * international/uni-decimal.el:
2907         * international/uni-decomposition.el:
2908         * international/uni-digit.el:
2909         * international/uni-lowercase.el:
2910         * international/uni-mirrored.el:
2911         * international/uni-name.el:
2912         * international/uni-numeric.el:
2913         * international/uni-old-name.el:
2914         * international/uni-titlecase.el:
2915         * international/uni-uppercase.el: Regenerate.
2917 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
2919         * emacs-lisp/smie.el (comment-string-strip): Declare function.
2920         (smie-precs-precedence-table): Fix typo in docstring.
2922         * vc-mtn.el (log-edit-extract-headers): Declare function.
2924         * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
2926         * net/notifications.el (dbus-register-signal): Declare function.
2927         (notifications-notify): Fix typos and reflow docstring.
2929 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
2931         Improve VC create/retrieve tag/branch.
2932         * vc.el (vc-create-tag): Do not read the directory name for VCs
2933         with repository revision granularity.  Adjust the tag/branch
2934         prompt.  Reset VC properties.
2935         (vc-retrieve-tag): Do not read the directory name for VCs
2936         with repository revision granularity.  Reset VC properties.
2938 2010-06-09  Julien Danjou  <julien@danjou.info>
2940         * net/notifications.el: New file.
2942 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
2944         Add optional support for resetting VC properties.
2945         * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
2946         call vc-file-clearprops when true.
2947         (vc-resynch-buffer): Add new optional argument, pass it down.
2948         (vc-resynch-buffers-in-directory): Likewise.
2950         Improve support for special markup in the VC commit message.
2951         * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
2952         * vc-hg.el (vc-hg-checkin): Add support for Date:.
2953         * vc-git.el (vc-git-checkin):
2954         * vc-bzr.el (vc-bzr-checkin): Likewise.
2956 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2958         * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
2959         can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
2961 2010-06-07  Martin Pohlack  <mp26@os.inf.tu-dresden.de>
2963         * iimage.el: Remove images as soon as the underlying text is modified.
2964         (iimage-modification-hook): New function.
2965         (iimage-mode-buffer): Use it.
2967 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2969         * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
2970         smie-indent-offset-after.  Add :prev case.  Make a bit more generic.
2971         (smie-indent-virtual): Remove `virtual' arg.  Update callers.
2972         (smie-indent-keyword): Add handling of open-paren keywords.
2973         (smie-indent-comment-continue): Don't assume comment-continue.
2975 2010-06-07  Martin Rudalics  <rudalics@gmx.at>
2977         * window.el (pop-to-buffer): Remove the conditional that
2978         compares new-window and old-window, so it will reselect
2979         the selected window unconditionally.
2980         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
2982 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2984         * emacs-lisp/smie.el (smie-indent-offset-after)
2985         (smie-indent-forward-token, smie-indent-backward-token): New functions.
2986         (smie-indent-after-keyword): Use them.
2987         (smie-indent-fixindent): Only applies to the indentation of the BOL.
2988         (smie-indent-keyword): Tweak the black magic.
2989         (smie-indent-comment-continue): Strip comment-continue before use.
2990         (smie-indent-functions): Indent comments before keywords.
2992 2010-06-06  Juri Linkov  <juri@jurta.org>
2994         * isearch.el (isearch-lazy-highlight-search): Fix looping
2995         by checking for empty match.  This syncs this loop with the
2996         similar loop in `isearch-search'.  (Bug#6362)
2998 2010-06-05  Juanma Barranquero  <lekktu@gmail.com>
3000         * net/dbus.el (dbus-register-method): Declare function.
3001         (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
3002         (dbus-introspect): Doc fix.
3003         (dbus-event-bus-name, dbus-introspect-get-interface)
3004         (dbus-introspect-get-argument): Reflow docstrings.
3006 2010-06-05  Dan Nicolaescu  <dann@ics.uci.edu>
3008         vc-log-incoming/vc-log-outgoing fixes for Git.
3009         * vc-git.el (vc-git-log-view-mode): Fix font lock for
3010         incoming/outgoing logs.
3011         (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
3012         instead of vc-git-compute-remote.
3013         (vc-git-compute-remote): Remove.
3015 2010-06-04  Chong Yidong  <cyd@stupidchicken.com>
3017         * term/common-win.el (x-colors): Add "dark green" and "dark
3018         turquoise" (Bug#6332).
3020 2010-06-04  Juri Linkov  <juri@jurta.org>
3022         * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
3023         Instead of setting `replace' to t and replacing the same string
3024         with itself, don't do certain actions when
3025         kill-do-not-save-duplicates is non-nil and string is equal to car
3026         of kill-ring: don't call menu-bar-update-yank-menu, don't push
3027         interprogram-paste strings to kill-ring, and don't push the input
3028         argument `string' to kill-ring.
3029         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
3031 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
3033         * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
3035 2010-06-04  Michael Albinus  <michael.albinus@gmx.de>
3037         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
3038         (tramp-gvfs-handler-mounted-unmounted)
3039         (tramp-gvfs-connection-mounted-p): Handle default-location.
3041         * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
3042         move files to trash.
3044 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
3046         * international/mule-cmds.el (nonascii-insert-offset)
3047         (nonascii-translation-table): Add obsolescence information.
3049         * international/mule.el (make-translation-table-from-vector): Doc fix.
3051 2010-06-03  Eric Ludlam  <zappo@gnu.org>
3053         * cedet/semantic/lex-spp.el
3054         (semantic-lex-spp-table-write-slot-value): Instead of erroring on
3055         invalid values during save, just save a nil (Bug#6324).
3057 2010-06-03  Glenn Morris  <rgm@gnu.org>
3059         * desktop.el (desktop-clear-preserve-buffers):
3060         Add "*Warnings*" buffer.  (Bug#6336)
3062 2010-06-03  Dan Nicolaescu  <dann@ics.uci.edu>
3064         vc-log-incoming/vc-log-outgoing improvements for Git.
3065         * vc-git.el (vc-git-log-outgoing): Use the same format as the
3066         short log.
3067         (vc-git-log-incoming): Likewise.  Run "git fetch" before the log command.
3069         Add bindings for vc-log-incoming and vc-log-outgoing.
3070         * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
3071         and vc-log-outgoing.
3072         * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
3073         and vc-log-outgoing.
3075 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
3077         * net/rcirc.el (rcirc-sort-nicknames): Remove.
3078         (rcirc-handler-366): Always sort nicknames.
3080 2010-06-03  Juanma Barranquero  <lekktu@gmail.com>
3082         * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
3084 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
3086         * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
3088 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3090         * net/rcirc.el (rcirc-sort-nicknames): Change default.
3091         (rcirc-sort-nicknames-join): Avoid setq.
3093 2010-06-03  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
3095         * net/rcirc.el (rcirc-sort-nicknames): New custom.
3096         (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
3097         (rcirc-handler-366): Use them.
3099 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3101         Split smie-indent-calculate into more manageable chunks.
3102         * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
3103         (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
3104         (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
3105         (smie-indent-exps): Extract from smie-indent-calculate.
3106         (smie-indent-functions): New var.
3107         (smie-indent-functions): Use them.
3109 2010-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3111         * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
3112         (smie-indent-calculate): Simplify and cleanup.
3114 2010-06-02  Michael Albinus  <michael.albinus@gmx.de>
3116         * net/tramp-gvfs.el (top): Require url-util.
3117         (tramp-gvfs-mount-point): Remove.
3118         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
3119         New defuns.
3120         (with-tramp-dbus-call-method): Format trace message.
3121         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
3122         Implement backup call, when operation on local files fails.
3123         Use progress reporter.  Flush properties of changed files.
3124         (tramp-gvfs-handle-make-directory): Make more traces.
3125         (tramp-gvfs-url-file-name): Hexify file name in url.
3126         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
3127         into account for the resulting file name.
3128         (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
3129         the answer is "no".  See `tramp-gvfs-maybe-open-connection'.
3130         (tramp-gvfs-handler-mounted-unmounted)
3131         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
3132         attribute "default_location".  Set "prefix" property.
3133         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
3134         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
3135         exists.  Raise an error, if not (due to a corresponding answer
3136         "no" in interactive questions, for example).
3138 2010-06-02  Dan Nicolaescu  <dann@ics.uci.edu>
3140         * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
3142 2010-06-01  Juanma Barranquero  <lekktu@gmail.com>
3144         * emacs-lisp/eldoc.el: Add completions for new commands left-* and
3145         right-*.  (Bug#6265)
3147 2010-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
3149         Add support for vc-log-incoming, improve vc-log-outgoing for Git.
3150         * vc-git.el (vc-git-compute-remote): New function.
3151         (vc-git-log-outgoing): Use it instead of hard coding a value.
3152         (vc-git-log-incoming): New function.
3154         Improve state updating for VC tag commands.
3155         * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
3156         to update the state of all buffers in the directory.
3158         * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
3160 2010-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3162         * vc-bzr.el (vc-bzr-revision-completion-table): Apply
3163         `file-directory-p' to the filename part rather than to the whole text.
3165 2010-05-31  Jonathan Marchand  <jonathlela@gmail.com>  (tiny change)
3167         * cedet/ede/cpp-root.el (ede-set-project-variables): Fix feature name
3168         (bug#6231).
3170 2010-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3172         * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
3174 2010-05-31  Drew Adams  <drew.adams@oracle.com>
3176         * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
3178 2010-05-31  Juanma Barranquero  <lekktu@gmail.com>
3180         * subr.el (momentary-string-display): Just use read-event to read
3181         the exit event (Bug#6238).
3183 2010-05-30  Eli Zaretskii  <eliz@gnu.org>
3185         * international/mule.el (define-coding-system): Doc fix (bug#6313).
3187 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
3189         * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
3190         Suggested by Eli Zaretskii <eliz@gnu.org>.
3192 2010-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3194         * minibuffer.el (completion-file-name-table): Don't return a boundary
3195         past the end of `string' (bug#6299).
3196         (completion--file-name-table): Delegate to completion-file-name-table
3197         for the `boundaries' case.
3199 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
3201         * emulation/cua-base.el: Recognize `right-char' and `left-char' as
3202         movement commands.
3204         * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
3205         `path-separator', but maintain compatibility with Emacs 20.2.
3207 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
3209         * server.el (server-process-filter): Receive parent-id argument
3210         from emacsclient.
3211         (server-create-window-system-frame): New arg.  Pass parent-id as
3212         frame parameter.
3214 2010-05-29  Eli Zaretskii  <eliz@gnu.org>
3216         Bidi-sensitive word movement with arrow keys.
3217         * subr.el (right-arrow-command, left-arrow-command): Move to
3218         bindings.el.
3220         * bindings.el (right-char, left-char): Move from subr.el and
3221         rename from right-arrow-command and left-arrow-command.
3222         (right-word, left-word): New functions.
3223         (global-map) <right>: Bind to right-char.
3224         (global-map) <left>: Bind to left-char.
3225         (global-map) <C-right>: Bind to right-word.
3226         (global-map) <C-left>: Bind to left-word.
3228         * ls-lisp.el (ls-lisp-classify-file): New function.
3229         (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
3230         (ls-lisp-classify): Call ls-lisp-classify-file.
3231         (insert-directory): Remove blanks from switches.
3233 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
3235         * ansi-color.el: Delete unused escape sequences (Bug#6085).
3236         (ansi-color-drop-regexp): New constant.
3237         (ansi-color-apply, ansi-color-filter-region)
3238         (ansi-color-apply-on-region): Delete unrecognized control sequences.
3239         (ansi-color-apply): Build string list before calling concat.
3241 2010-05-28  Juri Linkov  <juri@jurta.org>
3243         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
3244         Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
3245         (Bug#5270)
3247 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
3249         * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
3250         to ignored backtrace functions.
3251         (with-progress-reporter): Expand docstring.
3252         (tramp-handle-delete-file): Implement TRASH argument.
3253         (tramp-get-remote-trash): New defun.
3255 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
3257         * net/tramp-compat.el (tramp-compat-delete-file): Use
3258         `symbol-value' for backward compatibility.
3260         * net/tramp.el (tramp-handle-make-symbolic-link)
3261         (tramp-handle-load)
3262         (tramp-do-copy-or-rename-file-via-buffer)
3263         (tramp-do-copy-or-rename-file-directly)
3264         (tramp-do-copy-or-rename-file-out-of-band)
3265         (tramp-handle-process-file, tramp-handle-call-process-region)
3266         (tramp-handle-shell-command, tramp-handle-file-local-copy)
3267         (tramp-handle-insert-file-contents, tramp-handle-write-region)
3268         (tramp-delete-temp-file-function): Use `delete-file' instead
3269         of `tramp-compat-delete-file'.
3271         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
3272         (tramp-fish-handle-make-symbolic-link)
3273         (tramp-fish-handle-process-file): Use `delete-file' instead
3274         of `tramp-compat-delete-file'.
3276         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
3277         `delete-file' instead of `tramp-compat-delete-file'.
3279         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
3280         (tramp-gvfs-handle-write-region): Use `delete-file' instead of
3281         `tramp-compat-delete-file'.
3283         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
3284         `delete-file' instead of `tramp-compat-delete-file'.
3286         * net/tramp-smb.el (tramp-smb-handle-copy-file)
3287         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3288         (tramp-smb-handle-write-region): Use `delete-file' instead of
3289         `tramp-compat-delete-file'.
3290         (tramp-smb-handle-delete-directory): Use 'trash as arg.
3292 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
3294         * dired.el (dired-delete-file): New arg TRASH.
3295         (dired-internal-do-deletions): New arg TRASH.  Use progress reporter.
3296         (dired-do-flagged-delete, dired-do-delete): Use trash.
3298         * speedbar.el (speedbar-item-delete): Allow trashing.
3300         * files.el (delete-directory): New arg TRASH.
3302         * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
3303         (ange-ftp-rename-remote-to-remote)
3304         (ange-ftp-rename-local-to-remote)
3305         (ange-ftp-rename-remote-to-local, ange-ftp-load)
3306         (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
3307         `delete-file'.
3308         (ange-ftp-delete-directory): Add optional arg to `delete-file', to
3309         allow trashing.
3311         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
3312         handle new TRASH arg of `delete-file'.
3314         * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
3315         (tramp-handle-make-symbolic-link, tramp-handle-load)
3316         (tramp-do-copy-or-rename-file-via-buffer)
3317         (tramp-do-copy-or-rename-file-directly)
3318         (tramp-do-copy-or-rename-file-out-of-band)
3319         (tramp-handle-process-file, tramp-handle-call-process-region)
3320         (tramp-handle-shell-command, tramp-handle-file-local-copy)
3321         (tramp-handle-insert-file-contents, tramp-handle-write-region)
3322         (tramp-delete-temp-file-function): Use null TRASH arg in
3323         tramp-compat-delete-file call.
3325         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
3326         (tramp-fish-handle-delete-file)
3327         (tramp-fish-handle-make-symbolic-link)
3328         (tramp-fish-handle-process-file): Use null TRASH arg in
3329         `tramp-compat-delete-file' call.
3331         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
3332         arg in `tramp-compat-delete-file' call.
3334         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
3335         (tramp-gvfs-handle-write-region): Use null TRASH arg in
3336         `tramp-compat-delete-file' call.
3338         * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
3339         (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
3340         `tramp-compat-delete-file' call.
3342         * net/tramp-smb.el (tramp-smb-handle-copy-file)
3343         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3344         (tramp-smb-handle-write-region): Use null TRASH arg in
3345         tramp-compat-delete-file call.
3346         (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
3347         (tramp-smb-handle-delete-file): Rename arg.
3349         * diff.el (diff-sentinel):
3350         * epg.el (epg--make-temp-file, epg-decrypt-string)
3351         (epg-verify-string, epg-sign-string, epg-encrypt-string):
3352         * jka-compr.el (jka-compr-partial-uncompress)
3353         (jka-compr-call-process, jka-compr-write-region):
3354         * server.el (server-sentinel): Remove optional arg from
3355         delete-file, reverting 2010-05-03 change.
3357 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
3359         * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
3360         font-lock-constant-face, not obsolete font-lock-reference-face.
3362 2010-05-27  Kenichi Handa  <handa@m17n.org>
3364         * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
3365         element of GSTRING is nil.
3367 2010-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3369         * emacs-lisp/smie.el (smie-forward-token-function)
3370         (smie-backward-token-function): New vars.
3371         (smie-backward-sexp, smie-forward-sexp)
3372         (smie-indent-hanging-p, smie-indent-calculate): Use them.
3373         (smie-default-backward-token): Rename from smie-backward-token and
3374         skip comments.
3375         (smie-default-forward-token): Rename from smie-forward-token and
3376         skip comments.
3377         (smie-next-sexp): Handle nil results from next-token.
3378         (smie-indent-calculate): Add a new case for special `fixindent' comments.
3380 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
3382         * progmodes/verilog-mode.el (verilog-type-font-keywords):
3383         Use font-lock-constant-face, not obsolete font-lock-reference-face.
3385 2010-05-27  Masatake YAMATO  <yamato@redhat.com>
3387         * htmlfontify.el (hfy-face-resolve-face): New function.
3388         (hfy-face-to-style): Use it (Bug#6279).
3390 2010-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3392         * progmodes/ada-xref.el (ada-gnat-parse-gpr):
3393         * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
3395 2010-05-26  Glenn Morris  <rgm@gnu.org>
3397         * emulation/edt.el (edt-load-keys): Use locate-library.
3399 2010-05-25  Chong Yidong  <cyd@stupidchicken.com>
3401         * log-edit.el (log-edit-strip-single-file-name): Default to nil.
3402         (log-edit-changelog-entries): Doc fix.
3403         (log-edit-changelog-insert-entries): Args changed.
3404         Rename relative filenames in ChangeLog entries.  Delete tabs.
3405         (log-edit-insert-changelog-entries): Reorganize return value of
3406         `log-edit-changelog-entries' to pass filenames to
3407         log-edit-changelog-insert-entries.
3409 2010-05-25  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3411         * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
3412         `image-dired-dired-insert-marked-thumbs' to
3413         `image-dired-dired-toggle-marked-thumbs'.
3415         * image-dired.el: Require cl when compiling.
3416         (image-dired-dired-toggle-marked-thumbs): Rename from
3417         `image-dired-dired-insert-marked-thumbs'.  Add ARG.  Doc fix.
3418         Use interactive spec "P".  Set LOCALP arg of `dired-get-filename'
3419         to 'no-dir.  Skip files whose names don't match
3420         `image-file-name-regexp'.  When file has a thumbnail overlay,
3421         delete it.  (Bug#5270)
3423 2010-05-25  Juri Linkov  <juri@jurta.org>
3425         * image-mode.el (image-mode): Add image-after-revert-hook to
3426         after-revert-hook.
3427         (image-after-revert-hook): New function.  (Bug#5669)
3429 2010-05-25  Juri Linkov  <juri@jurta.org>
3431         * image.el (image-animated-p): When delay between animated images
3432         is 0, set it to 10 (0.1 sec).  (Bug#6258)
3434 2010-05-25  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
3436         * net/tramp.el (tramp-handle-insert-directory): Don't use
3437         `forward-word', its default syntax could be changed.
3439 2010-05-25  Michael Albinus  <michael.albinus@gmx.de>
3441         * net/tramp.el (tramp-progress-reporter-update): New defun.
3442         (with-progress-reporter): Use it.
3443         (tramp-process-actions):
3444         * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
3445         current message, in order to let progress reporter continue
3446         afterwards.  (Bug#6257)
3448 2010-05-25  Glenn Morris  <rgm@gnu.org>
3450         * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
3451         Add :version.
3453 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
3455         * net/rcirc.el (rcirc-default-user-name): Change to "user".
3456         (rcirc-default-full-name): Change to "unknown".
3457         (rcirc-user-name-history): Add variable.
3459 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
3460             Jonathan Rockway  <jon@jrock.us>
3462         * net/rcirc.el (rcirc-server-alist): Add :pass.
3463         (rcirc): When prompting for connection parameters, also prompt for
3464         username and password.
3465         (rcirc-connect): Take a PASS argument.  If PASS is non-nil, send
3466         value to server when connecting.
3468 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3470         * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
3471         (smie-merge-prec2s): Pass the tables as separate args.
3472         (smie-bnf-precedence-table): Adjust call accordingly.
3473         (smie-prec2-levels): Set levels at the end.
3475         Replace Lisp calls to delete-backward-char by delete-char.
3476         * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
3477         * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
3478         * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
3479         * calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
3480         * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
3481         * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
3482         * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
3483         * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
3484         * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
3485         * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
3486         * progmodes/ps-mode.el, progmodes/verilog-mode.el,
3487         * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
3488         * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
3489         * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
3490         delete-backward-char by calls to delete-char.
3492 2010-05-25  Kenichi Handa  <handa@m17n.org>
3494         * language/hebrew.el (hebrew-shape-gstring): New function.
3495         Register it in composition-function-table for all Hebrew combining
3496         characters.
3498 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3500         * epa.el (epa--select-keys): Don't explicitly delete the window since
3501         that can fail (e.g. sole window in frame).  Use dedication instead.
3503 2010-05-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
3505         * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
3507 2010-05-22  Chong Yidong  <cyd@stupidchicken.com>
3509         * image.el (image-refresh): Define as an alias for image-flush.
3511         * image-mode.el (image-toggle-display-image): Caller changed.
3513 2010-05-21  Juri Linkov  <juri@jurta.org>
3515         * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
3516         Remove "all" from grep-files-aliases.  Split grep-files-aliases by
3517         whitespace, call wildcard-to-regexp on substrings and concat them
3518         with "\\|".  (Bug#6114)
3520 2010-05-21  Alan Mackenzie  <acm@muc.de>
3522         * progmodes/cc-engine.el (c-parse-state-get-strategy):
3523         Replace parameter `here' with `here-' and `here-plus', which sandwich
3524         any pertinent CPP construct.
3525         (c-remove-stale-state-cache-backwards): Fix a bug which happens
3526         when doing (c-parse-state) in a CPP construct: Exclude any "new"
3527         CPP construct from taking part in the scanning.
3529 2010-05-21  Michael Albinus  <michael.albinus@gmx.de>
3531         * net/tramp.el (tramp-do-copy-or-rename-file)
3532         (tramp-handle-file-local-copy, tramp-maybe-open-connection):
3533         Tune `with-progress-reporter' messages.
3534         (tramp-handle-vc-registered):
3535         * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
3536         (tramp-fish-handle-insert-file-contents)
3537         (tramp-fish-maybe-open-connection):
3538         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
3539         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
3540         (tramp-imap-handle-insert-file-contents)
3541         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
3543 2010-05-21  Juanma Barranquero  <lekktu@gmail.com>
3545         * add-log.el (change-log-font-lock-keywords):
3546         Highlight all authors in multi-author entries.
3548         * smerge-mode.el (smerge-refine-ignore-whitespace)
3549         (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
3550         Fix typos in docstrings.
3551         (smerge-resolve, smerge-refine-subst): Reflow docstrings.
3553 2010-05-21  Glenn Morris  <rgm@gnu.org>
3555         * progmodes/fortran.el (fortran-mode):
3556         * progmodes/f90.el (f90-mode): Derive from prog-mode.
3558         * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
3559         having a relative path in src/Makefile.in.
3561 2010-05-20  Kevin Ryde  <user42@zip.com.au>
3563         * help-mode.el (help-make-xrefs): For Info node links turn
3564         newlines into spaces.  Link node names with newlines are matched
3565         by help-xref-info-regexp and buttonized, this change ensures they
3566         can be followed successfully with RET.  (Bug#6206)
3568 2010-05-20  Juri Linkov  <juri@jurta.org>
3570         * locate.el (locate): Use pop-to-buffer instead of
3571         switch-to-buffer-other-window.  (Bug#6204)
3573 2010-05-20  Juri Linkov  <juri@jurta.org>
3575         * replace.el (replace-highlight): Fix lazy-highlighting
3576         for `M-s w str M-% str RET'.
3578 2009-12-15  Masatake YAMATO  <yamato@redhat.com>
3580         * isearch.el (isearch-yank-word-or-char): Pull next subword
3581         when `subword-mode' is activated.  (Bug#6220)
3583 2010-05-20  Mark A. Hershberger  <mah@everybody.org>
3585         * isearch.el (isearch-update-post-hook): New hook.
3586         (isearch-update): Use the new hook.  (Bug#6225)
3588 2010-05-20  Juri Linkov  <juri@jurta.org>
3590         * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
3591         [f1], [help], and (char-to-string help-char) instead of "\C-h".
3592         (Bug#6222)
3594 2010-05-20  Juri Linkov  <juri@jurta.org>
3596         * isearch.el (isearch-yank-string): Use isearch-process-search-string.
3597         (Bug#6223)
3599 2010-05-20  Juri Linkov  <juri@jurta.org>
3601         * dired-x.el (dired-jump, dired-jump-other-window): Add arg
3602         FILE-NAME to read from the minibuffer when called interactively
3603         with prefix argument instead of using buffer-file-name.
3604         http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
3606         * dired.el: Update autoloads.
3608 2010-05-20  Chong Yidong  <cyd@stupidchicken.com>
3610         * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
3611         nxml-finish-element, for consistency with SGML mode.
3613         * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
3614         octave-close-block.
3616 2010-05-20  Juanma Barranquero  <lekktu@gmail.com>
3618         * composite.el: Require cl when compiling.
3619         (reference-point-alist, compose-gstring-for-graphic)
3620         (compose-gstring-for-terminal): Fix typos in docstrings.
3622 2010-05-19  Juri Linkov  <juri@jurta.org>
3624         * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
3625         set-window-parameter.
3627 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
3629         * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
3630         where appropriate.
3631         (tramp-maybe-open-connection): Use it.
3633 2010-05-19  Eli Zaretskii  <eliz@gnu.org>
3635         * simple.el (move-end-of-line): Make sure we are at line beginning
3636         before backing up to end of previous line.
3638 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
3640         * password-cache.el (password-cache-remove): Fix docstring.
3642         * net/secrets.el: Autoload the widget functions.
3643         (secrets-search-items, secrets-create-item)
3644         (secrets-get-attributes, secrets-expand-item): Attributes will be
3645         stored on the password database without leading ":", as all other
3646         clients do as well.
3647         (secrets-mode): Fix docstring.
3648         (secrets-show-secrets): Provide it as autoloaded command only when
3649         D-Bus support is available.  Check existence of Secret Service API.
3651 2010-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3653         * indent.el (indent-region): Deactivate region (bug#6200).
3655 2010-05-19  Glenn Morris  <rgm@gnu.org>
3657         * vc-dir.el (vc-dir): Don't pop-up-windows.  (Bug#6204)
3659 2010-05-19  Kenichi Handa  <handa@m17n.org>
3661         * composite.el: Register compose-gstring-for-graphic in
3662         composition-function-table only for combining characters (Mn, Mc, Me).
3664 2010-05-18  Jay Belanger  <jay.p.belanger@gmail.com>
3666         * calc/calc-trail.el (calc-trail-isearch-forward)
3667         (calc-trail-isearch-backward): Ensure that the new window
3668         point is set correctly.
3670 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
3672         * subr.el (read-quoted-char): Resolve modifiers after key
3673         remapping (bug#6212).
3675 2010-05-18  Michael Albinus  <michael.albinus@gmx.de>
3677         Add visualization code for secrets.
3678         * net/secrets.el (secrets-mode): New major mode.
3679         (secrets-show-secrets, secrets-show-collections)
3680         (secrets-expand-collection, secrets-expand-item)
3681         (secrets-tree-widget-after-toggle-function)
3682         (secrets-tree-widget-show-password): New defuns.
3684 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
3686         * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
3687         (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
3688         handled in smie-next-sexp.
3689         (smie-indent-calculate): Provide a starting indentation (so the
3690         recursion is well-founded ;-).
3692         Fix handling of non-associative equal levels.
3693         * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
3694         when it's not needed.
3695         (smie-op-left, smie-op-right): New functions.
3696         (smie-next-sexp): New function, extracted from smie-backward-sexp.
3697         Better handle equal levels to distinguish the associative case from
3698         the "multi-keyword construct" case.
3699         (smie-backward-sexp, smie-forward-sexp): Use it.
3701 2010-05-18  Juanma Barranquero  <lekktu@gmail.com>
3703         * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
3705         * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
3706         (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
3708 2010-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3710         Provide a simple generic indentation engine and use it for Prolog.
3711         * emacs-lisp/smie.el: New file.
3712         * progmodes/prolog.el (prolog-smie-op-levels)
3713         (prolog-smie-indent-rules): New var.
3714         (prolog-mode-variables): Use them to configure SMIE.
3715         (prolog-indent-line, prolog-indent-level): Remove.
3717 2010-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
3719         * calc/calc-vec.el (math-vector-avg): Put the vector elements in
3720         order before computing the averages.
3722 2010-05-16  Jay Belanger  <jay.p.belanger@gmail.com>
3724         * calc/calc-vec.el (calc-histogram):
3725         (calcFunc-histogram): Allow vectors as inputs.
3726         (math-vector-avg): New function.
3728         * calc/calc-ext.el (math-group-float): Have the number of digits
3729         being grouped depend on the radix (Bug#6189).
3731 2010-05-15  Ken Raeburn  <raeburn@raeburn.org>
3733         * version.el (emacs-copyright, emacs-version): Don't define here,
3734         now that emacs.c defines it.
3736 2010-05-15  Eli Zaretskii  <eliz@gnu.org>
3738         * international/mule-cmds.el (mule-menu-keymap): Fix definition of
3739         "Describe Language Environment" menu item.
3741         * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
3743         Bidi-sensitive movement with arrow keys.
3744         * subr.el (right-arrow-command, left-arrow-command): New functions.
3746         * bindings.el (global-map): Bind them to right and left arrow keys.
3748         Don't override standard definition of convert-standard-filename.
3749         * files.el (convert-standard-filename): Call
3750         w32-convert-standard-filename and dos-convert-standard-filename on
3751         the corresponding systems.
3753         * w32-fns.el (w32-convert-standard-filename): Rename from
3754         convert-standard-filename.  Doc fix.
3756         * dos-fns.el (dos-convert-standard-filename): Doc fix.
3757         (convert-standard-filename): Don't defalias.
3758         (register-name-alist, make-register, register-value)
3759         (set-register-value, intdos): Obsolete aliases for the
3760         corresponding dos-* functions and variables.
3761         (dos-intdos): Add a doc string.
3763 2010-05-15  Jay Belanger  <jay.p.belanger@gmail.com>
3765         * calc/calc-aent.el (math-read-token, math-find-user-tokens):
3766         * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
3767         (math-compose-tex-func):
3768         * calc/calccomp.el (math-compose-expr):
3769         * calc/calc-ext.el (math-format-flat-expr-fancy):
3770         * calc/calc-store.el (calc-read-var-name):
3771         * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
3773         * calc/calc.el (var-π, var-φ, var-γ): New variables.
3774         * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
3775         * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
3776         (math-standard-units): Add units.
3778 2010-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3780         * progmodes/asm-mode.el (asm-mode):
3781         * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
3783         * pcomplete.el (pcomplete-completions-at-point): New function,
3784         extracted from pcomplete-std-complete.
3785         (pcomplete-std-complete): Use it.
3787 2010-05-15  Glenn Morris  <rgm@gnu.org>
3789         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
3790         Remove references to CVS, RCS and Old directories.
3792 2010-05-14  Jay Belanger  <jay.p.belanger@gmail.com>
3794         * calc/calc-bin.el (math-format-twos-complement): Group digits when
3795         appropriate.
3797 2010-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3799         * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
3800         (sh-mode-syntax-table): Give it a default value instead.
3801         (sh-header-marker): Make buffer-local.
3802         (sh-mode): Move make-local-variable to the corresponding setq.
3803         (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
3804         Use complete-with-action.
3806         * simple.el (prog-mode): New (abstract) major mode.
3807         * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
3808         * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
3810 2010-05-14  Juanma Barranquero  <lekktu@gmail.com>
3812         * progmodes/sql.el (sql-oracle-program): Reflow docstring.
3813         (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
3814         (sql-add-product-keywords, sql-highlight-product, sql-set-product)
3815         (sql-make-alternate-buffer-name, sql-placeholders-filter)
3816         (sql-escape-newlines-filter, sql-input-sender)
3817         (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
3819 2010-05-13  Chong Yidong  <cyd@stupidchicken.com>
3821         Add TeX open-block and close-block keybindings to SGML, and vice versa.
3823         * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
3824         latex-open-block and C-c / to latex-close-block.
3826         * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
3827         and C-c C-e to sgml-close-tag.
3829 2010-05-13  Michael Albinus  <michael.albinus@gmx.de>
3831         * net/tramp.el (with-progress-reporter): Create reporter object
3832         only when the message would be displayed.  Handle nested calls.
3833         (tramp-handle-load, tramp-handle-file-local-copy)
3834         (tramp-handle-insert-file-contents, tramp-handle-write-region)
3835         (tramp-maybe-send-script, tramp-find-shell):
3836         Use `with-progress-reporter'.
3837         (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
3838         Fix message text.
3840         * net/tramp-smb.el (tramp-smb-handle-copy-file)
3841         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3842         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
3843         Use `with-progress-reporter'.
3845 2010-05-13  Agustín Martín  <agustin.martin@hispalinux.es>
3847         * textmodes/ispell.el (ispell-init-process): Do not kill ispell
3848         process everytime when spellchecking from the minibuffer (bug#6143).
3850 2010-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3852         * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
3854         * dos-fns.el: Add "dos-" prefix for namespace control.
3855         (convert-standard-filename): Define as alias for
3856         dos-convert-standard-filename but only if applicable.
3858 2010-05-12  Alan Mackenzie  <acm@muc.de>
3860         * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
3861         Push the mark at the start of these functions when appropriate.
3863 2010-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3865         * minibuffer.el (completion-cycle-threshold): New custom var.
3866         (completion--do-completion): Use it.
3867         (minibuffer-complete): Use cycling if appropriate.
3869 2010-05-11  Juanma Barranquero  <lekktu@gmail.com>
3871         * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
3872         buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
3874 2010-05-11  Juri Linkov  <juri@jurta.org>
3876         * scroll-all.el (scroll-all-check-to-scroll):
3877         Add `scroll-up-command' and `scroll-down-command' (bug#6164).
3879 2010-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3881         * iimage.el (iimage-mode-map): Move initialization into declaration.
3882         (iimage-mode-buffer): Use with-silent-modifications.
3883         Simplify calling convention.  Adjust callers.
3884         (iimage-mode): Don't run hook redundantly.
3886         * minibuffer.el (completion-pcm--pattern->regex):
3887         Fix last change (bug#6160).
3889 2010-05-10  Juri Linkov  <juri@jurta.org>
3891         Remove nodes visited during Isearch from the Info history.
3892         * info.el (Info-isearch-initial-history)
3893         (Info-isearch-initial-history-list): New variables.
3894         (Info-isearch-start): Record initial values of
3895         Info-isearch-initial-history and Info-isearch-initial-history-list.
3896         Add Info-isearch-end to isearch-mode-end-hook.
3897         (Info-isearch-end): New function.
3899 2010-05-10  Michael Albinus  <michael.albinus@gmx.de>
3901         * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
3902         format string, in order to work around a bug in pdksh.
3903         Reported by Gilles Pion <gpion@lfdj.com>.
3904         (tramp-handle-verify-visited-file-modtime): Do not send a command
3905         when the connection is not established.
3906         (tramp-handle-set-file-times): Simplify the check for utc.
3908 2010-05-10  Juanma Barranquero  <lekktu@gmail.com>
3910         Fix use of `filter-buffer-substring' (rework previous change).
3911         * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
3912         (cua-repeat-replace-region):
3913         * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
3914         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
3915         (cua-cut-region-to-global-mark): Use it.
3917 2010-05-09  Michael R. Mauger  <mmaug@yahoo.com>
3919         * progmodes/sql.el: Version 2.1.
3920         (sql-product-alist): Redesign structure of product info.
3921         (sql-product, sql-user, sql-server, sql-database): Safe variables.
3922         (sql-port, sql-port-history): New variables.
3923         (sql-interactive-product): New variable.
3924         (sql-send-terminator): New variable.
3925         (sql-imenu-generic-expression): Add "Types" imenu entry.
3926         (sql-oracle-login-params, sql-sqlite-login-params)
3927         (sql-mysql-login-params, sql-solid-login-params)
3928         (sql-sybase-login-params, sql-informix-login-params)
3929         (sql-ingres-login-params, sql-ms-login-params)
3930         (sql-postgres-login-params, sql-interbase-login-params)
3931         (sql-db2-login-params, sql-linter-login-params)
3932         (sql-oracle-scan-on): New variables.
3933         (sql-mode-map): Add C-c C-i to start interactive mode.
3934         (sql-mode-menu): Update existing menu entries.
3935         (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
3936         (sql-mode-oracle-font-lock-keywords)
3937         (sql-mode-postgres-font-lock-keywords)
3938         (sql-mode-ms-font-lock-keywords)
3939         (sql-mode-sybase-font-lock-keywords)
3940         (sql-mode-informix-font-lock-keywords)
3941         (sql-mode-interbase-font-lock-keywords)
3942         (sql-mode-ingres-font-lock-keywords)
3943         (sql-mode-solid-font-lock-keywords)
3944         (sql-mode-mysql-font-lock-keywords)
3945         (sql-mode-sqlite-font-lock-keywords)
3946         (sql-mode-db2-font-lock-keywords)
3947         (sql-mode-linter-font-lock-keywords): Update initialization to
3948         reduce run-time complexity.
3949         (sql-add-product, sql-del-product): New functions.
3950         (sql-set-product-feature, sql-get-product-feature): New functions.
3951         (sql-product-font-lock): Update product API.
3952         (sql-add-product-keywords): New function.
3953         (sql-highlight-product): Update product API.
3954         (sql-help-list-products): New function.
3955         (sql-help): Dynamically lists free and non-free products.
3956         (sql-get-login): Correct bug in handling history and added
3957         prompt for port.
3958         (sql-copy-column): Copy without properties.
3959         (sqli-input-sender): Apply filters to SQLi input.
3960         (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
3961         Implement as a filter.
3962         (sql-escape-newlines-filter): Implement as a filter.
3963         (sql-remove-tabs-filter): New function.
3964         (sql-send-magic-terminator): New function.
3965         (sql-send-string): Implement magic terminator.
3966         (sql-send-region): Use `sql-send-string'.
3967         (sql-interactive-mode): Use product API.
3968         (sql-product-interactive): Use product API.
3969         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
3970         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
3971         (sql-db2, sql-linter): Use `sql-product-interactive'.
3972         (sql-connect): New function.
3973         (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
3974         (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
3975         (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
3976         (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
3977         Use `sql-connect'.
3979 2010-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3981         * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
3982         New custom variable.
3983         (completion-pcm--string->pattern): Use it.
3984         (completion-pcm--pattern->regex, completion-pcm--pattern->string):
3985         Make it handle any symbol as `any'.
3986         (completion-pcm--merge-completions): Extract common suffix for the new
3987         `prefix' symbol as well.
3988         (completion-substring--all-completions): Use the new `prefix' symbol.
3990 2010-05-09  Michael Albinus  <michael.albinus@gmx.de>
3992         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
3993         not bound.
3994         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
3995         (tramp-compat-funcall): New defmacro.
3996         (tramp-compat-line-beginning-position)
3997         (tramp-compat-line-end-position)
3998         (tramp-compat-temporary-file-directory)
3999         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
4000         (tramp-compat-copy-file, tramp-compat-copy-directory)
4001         (tramp-compat-delete-file, tramp-compat-delete-directory)
4002         (tramp-compat-number-sequence, tramp-compat-process-running-p)
4003         * net/tramp.el (top, with-progress-reporter)
4004         (tramp-rfn-eshadow-setup-minibuffer)
4005         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
4006         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
4007         (tramp-completion-mode-p, tramp-check-for-regexp)
4008         (tramp-open-connection-setup-interactive-shell)
4009         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
4010         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
4011         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
4012         * net/tramp-cmds.el (tramp-cleanup-all-connections)
4013         (tramp-reporter-dump-variable, tramp-load-report-modules)
4014         (tramp-append-tramp-buffers)
4015         * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
4017         * net/tramp-imap.el (top): Autoload `epg-make-context'.
4019 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4021         * progmodes/compile.el (compilation-buffer-modtime): Rename from
4022         buffer-modtime.  Adjust users.
4024 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
4026         * international/mule.el (auto-coding-alist): Only purecopy
4027         car of each item, not the whole list (Bug#6083).
4029 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
4031         * progmodes/js.el (js-mode): Make paragraph variables local before
4032         calling c-setup-paragraph-variables (Bug#6071).
4034 2010-05-08  Eli Zaretskii  <eliz@gnu.org>
4036         * composite.el (compose-region, reference-point-alist): Fix typos
4037         in the doc strings.
4039 2010-05-08  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
4041         * calc/calc-graph.el (calc-graph-plot): Use the proper form for
4042         gnuplot's "set" command.
4044 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
4046         * abbrev.el (last-abbrev-text): Doc fix.
4047         (abbrev-prefix-mark): Don't escape parenthesis.
4049 2010-05-08  Andreas Schwab  <schwab@linux-m68k.org>
4051         * composite.el (find-composition): Doc fix.
4053 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
4055         * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
4056         (sql-oracle-program, sql-sqlite-options)
4057         (sql-query-placeholders-and-send): Doc fixes.
4058         (sql-set-product, sql-interactive-mode): Reflow docstrings.
4059         (sql-imenu-generic-expression, sql-buffer)
4060         (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
4061         (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
4062         (sql-mode-sybase-font-lock-keywords)
4063         (sql-mode-informix-font-lock-keywords)
4064         (sql-mode-interbase-font-lock-keywords)
4065         (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
4066         (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
4067         (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
4068         (sql-product-feature, sql-highlight-product)
4069         (comint-line-beginning-position, sql-rename-buffer)
4070         (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
4071         (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
4072         (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
4073         Fix typos in docstrings.
4075 2010-05-08  Juri Linkov  <juri@jurta.org>
4077         * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
4078         property instead of `invisible' and `after-string' (bug#5998).
4080 2010-05-08  Juri Linkov  <juri@jurta.org>
4082         * image-mode.el (image-mode-as-text): Fix typo in docstring.
4084 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
4086         * filecache.el (file-cache-add-directory-list)
4087         (file-cache-add-directory-recursively): Fix typos in docstrings.
4089 2010-05-08  Kenichi Handa  <handa@m17n.org>
4091         * language/indian.el (gurmukhi-composable-pattern): Fix typo.
4092         (gujarati-composable-pattern): Fix typo.
4094 2010-05-08  Kenichi Handa  <handa@m17n.org>
4096         * language/indian.el (oriya-composable-pattern)
4097         (tamil-composable-pattern, malayalam-composable-pattern):
4098         Add two-part vowels to "v" (vowel sign).
4100 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
4102         * files.el (copy-directory): Handle symlinks (Bug#5982).
4104 2010-05-08  Dan Nicolaescu  <dann@ics.uci.edu>
4106         * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
4107         (vc-hg-working-revision): Likewise.  Use hg parents, not hg parent
4108         (Bug#5846).
4110 2010-05-08  Glenn Morris  <rgm@gnu.org>
4112         * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
4114         * minibuffer.el (completion-at-point): Doc fix.
4116 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4118         * electric.el (Electric-command-loop): Minor tweak.
4120         * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
4121         better with dedicated windows.
4123 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
4125         * Version 23.2 released.
4127 2010-05-07  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
4128             Stefan Monnier  <monnier@iro.umontreal.ca>
4130         Highlight vendor specific properties.
4131         * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
4132         (css-proprietary-property): New face.
4133         (css-font-lock-keywords): Use them.
4135 2010-05-07  Eli Zaretskii  <eliz@gnu.org>
4137         * cus-start.el (all): Add native condition for tool-bar-* symbols.
4139 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4141         * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
4142         * files.el (auto-mode-alist): Remove redundant entries.
4144         * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
4145         * simple.el (auto-save-mode): Move from files.el.
4146         * minibuffer.el (completion--common-suffix): Fix copy&paste error.
4148 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
4150         * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
4152 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4154         * mail/binhex.el (binhex-decode-region-internal)
4155         * mail/uudecode.el (uudecode-decode-region-internal)
4156         * net/dns.el (dns-read-string-name, dns-write, dns-read)
4157         (dns-read-type, dns-query)
4158         * pgg-parse.el (pgg-parse-armor)
4159         * pgg.el (pgg-verify-region)
4160         * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
4161         XEmacs.
4163         * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
4165 2010-05-07  Juanma Barranquero  <lekktu@gmail.com>
4167         * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
4169         Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
4170         * emulation/cua-base.el (cua-repeat-replace-region):
4171         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4172         (cua-cut-region-to-global-mark):
4173         Remove text properties with `set-text-properties'.
4175 2010-05-06  Michael Albinus  <michael.albinus@gmx.de>
4177         * net/tramp.el (top, with-progress-reporter):
4178         Use `symbol-function' inside `funcall'.
4180         * net/tramp-compat.el (tramp-compat-file-attributes)
4181         (tramp-compat-delete-file, tramp-compat-delete-directory):
4182         Handle only `wrong-number-of-arguments' error.
4184         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
4185         (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
4186         inside `funcall'.
4188 2010-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4190         * minibuffer.el (completion--sreverse, completion--common-suffix):
4191         New functions.
4192         (completion-pcm--merge-completions): Extract common suffix when safe.
4194         * emacs-lisp/easy-mmode.el (define-minor-mode):
4195         Make :variable more flexible.
4196         * files.el (auto-save-mode): Use it to define using define-minor-mode.
4198 2010-05-05  Juri Linkov  <juri@jurta.org>
4200         Add `slow' and `history' tags to the desktop data.
4202         * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
4203         (Info-virtual-files) [*Apropos*]: Add `slow' tag.
4204         (Info-finder-find-node): Require `finder.el' to be able
4205         to restore node from the desktop.
4206         (Info-desktop-buffer-misc-data): Save all nodes.  Save additional
4207         data `Info-history' and `slow' tag in the assoc list.
4208         (Info-restore-desktop-buffer): Don't restore nodes with the
4209         `slow' tag.  Restore `Info-history'.
4211 2010-05-05  Michael Albinus  <michael.albinus@gmx.de>
4213         Add FORCE argument to `delete-file'.
4215         * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
4216         forcing to delete the temporary file.
4217         (ange-ftp-delete-file): Add FORCE arg.
4218         (ange-ftp-rename-remote-to-remote)
4219         (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
4220         (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
4221         Force file deletion.
4223         * net/tramp-compat.el (tramp-compat-delete-file): New defun.
4225         * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
4226         (tramp-handle-make-symbolic-link, tramp-handle-load)
4227         (tramp-do-copy-or-rename-file-via-buffer)
4228         (tramp-do-copy-or-rename-file-directly)
4229         (tramp-do-copy-or-rename-file-out-of-band)
4230         (tramp-handle-process-file, tramp-handle-call-process-region)
4231         (tramp-handle-shell-command, tramp-handle-file-local-copy)
4232         (tramp-handle-insert-file-contents, tramp-handle-write-region)
4233         (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
4235         * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
4236         (tramp-fish-handle-make-symbolic-link)
4237         (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
4239         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
4240         Use `tramp-compat-delete-file'.
4242         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
4243         (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
4245         * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
4246         (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
4248         * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
4249         (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
4250         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
4251         `tramp-compat-delete-file'.
4253 2010-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4255         Minor cleanups.
4256         * subr.el (add-minor-mode): Use push.
4257         * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
4258         * emulation/edt.el (edt-select-mode): Simplify.
4260         Use define-minor-mode in more cases.
4261         * term/tvi970.el (tvi970-set-keypad-mode):
4262         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
4263         (normal-erase-is-backspace-mode):
4264         * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
4265         (set-scroll-bar-mode-1): (Re)move to its sole caller.
4266         (get-scroll-bar-mode): New function.
4267         * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
4269         Use define-minor-mode for less obvious cases.
4270         * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
4271         * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
4272         * international/iso-ascii.el (iso-ascii-mode):
4273         * frame.el (auto-raise-mode, auto-lower-mode):
4274         * composite.el (global-auto-composition-mode): Use define-minor-mode.
4276 2010-05-04  Michael Albinus  <michael.albinus@gmx.de>
4278         * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
4279         in order to see error messages for failed logins.
4281 2010-05-03  Chong Yidong  <cyd@stupidchicken.com>
4283         * diff.el (diff-sentinel):
4285         * epg.el (epg--make-temp-file, epg-decrypt-string)
4286         (epg-verify-string, epg-sign-string, epg-encrypt-string):
4288         * jka-compr.el (jka-compr-partial-uncompress)
4289         (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
4291         * server.el (server-sentinel): Use delete-file's new FORCE arg
4292         (Bug#6070).
4294 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4296         Use define-minor-mode where applicable.
4297         * view.el (view-mode):
4298         * type-break.el (type-break-query-mode)
4299         (type-break-mode-line-message-mode):
4300         * textmodes/reftex.el (reftex-mode):
4301         * term/vt100.el (vt100-wide-mode):
4302         * tar-mode.el (tar-subfile-mode):
4303         * savehist.el (savehist-mode):
4304         * ibuf-ext.el (ibuffer-auto-mode):
4305         * composite.el (auto-composition-mode):
4306         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
4307         Use define-minor-mode.
4308         (vhdl-mode): Use static mode-line format.
4309         (vhdl-mode-line-update): Delete.
4310         (vhdl-create-mode-menu, vhdl-activate-customizations)
4311         (vhdl-hs-minor-mode): Don't bother calling it.
4313 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4315         * simple.el (with-wrapper-hook): Move.
4316         (buffer-substring-filters): Mark obsolete.
4317         (filter-buffer-substring-functions): New variable.
4318         (filter-buffer-substring): Use it.  Remove unused arg `noprops'.
4320         Use a mode-line spec rather than a static string in Semantic.
4321         * cedet/semantic/util-modes.el:
4322         (semantic-minor-modes-format): New var to replace...
4323         (semantic-minor-modes-status): Remove.
4324         (semantic-mode-line-update): Construct a mode-line spec rather than
4325         a static string so that mouse buttons can be used on individual minor
4326         modes and so that semantic-mode-line-update only needs to be called
4327         when global settings are changed.
4328         (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
4329         Call semantic-mode-line-update.
4330         (semantic-toggle-minor-mode-globally): Don't assume mode is on
4331         minor-mode-alist, check semantic-minor-mode-alist as well.
4332         (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
4333         (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
4334         (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
4335         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
4336         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
4337         (define-semantic-idle-service, semantic-idle-summary-mode):
4338         * cedet/semantic/decorate/mode.el (semantic-decoration-mode):
4339         Don't call semantic-mode-line-update any more.
4341 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4343         Use define-minor-mode in CEDET where applicable.
4345         * cedet/srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
4346         Use define-minor-mode.
4348         * cedet/semantic/util-modes.el (semantic-add-minor-mode):
4349         Remove unused arg `keymap' and code redundant with define-minor-mode.
4350         (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
4351         (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
4352         (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
4353         (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
4354         (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
4355         (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
4356         Use define-minor-mode.
4357         (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
4358         (semantic-show-unmatched-syntax-mode-setup)
4359         (semantic-show-parser-state-mode-setup)
4360         (semantic-highlight-func-mode-setup): Inline into sole caller.
4362         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
4363         (semantic-mru-bookmark-mode): Use define-minor-mode.
4364         (semantic-mru-bookmark-mode-setup): Inline into sole caller.
4366         * cedet/semantic/idle.el (define-semantic-idle-service):
4367         Use define-minor-mode and inline setup function into its sole caller.
4368         (semantic-idle-scheduler-mode-setup)
4369         (semantic-idle-summary-mode-setup): Inline into sole caller.
4370         (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
4371         Use define-minor-mode.
4373         * cedet/semantic/decorate/mode.el (global-semantic-decoration-mode)
4374         (semantic-decoration-mode): Use define-minor-mode.
4375         (semantic-decoration-mode-setup): Inline into sole caller.
4377         * cedet/ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
4378         (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
4379         (ede-dired-add-to-target): Use dolist.
4381 2010-05-01  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
4382             Michael Albinus  <michael.albinus@gmx.de>
4384         Implement compression for inline methods.
4386         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
4387         (tramp-copy-size-limit): Allow also nil.
4388         (tramp-inline-compress-commands): New defconst.
4389         (tramp-find-inline-compress, tramp-get-inline-compress)
4390         (tramp-get-inline-coding): New defuns.
4391         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
4392         replaced by `tramp-get-inline-coding'.
4393         (tramp-handle-file-local-copy, tramp-handle-write-region)
4394         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
4396 2010-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4398         * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
4399         Remove unused functions.
4401         * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
4402         Set find-tag-default-function as a variable rather than a property.
4404         * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
4405         * progmodes/etags.el (tags-completion-at-point-function):
4406         Remove left over interactive spec.  Add autoloading stub.
4407         (complete-tag): Use tags-completion-at-point-function.
4409 2010-04-30  Chong Yidong  <cyd@stupidchicken.com>
4411         * minibuffer.el (tags-completion-at-point-function): Fix return value.
4413 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
4415         * ido.el (ido-init-completion-maps): Remove C-v binding.
4416         (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
4418 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
4420         * minibuffer.el (tags-completion-at-point-function): New function.
4421         (completion-at-point-functions): Use it.
4423         * cedet/semantic.el (semantic-completion-at-point-function):
4424         New function.
4425         (semantic-mode): Use semantic-completion-at-point-function for
4426         completion-at-point-functions instead.
4428         * progmodes/etags.el (complete-tag): Revert last change.
4430 2010-04-29  Alan Mackenzie  <acm@muc.de>
4432         * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
4433         off-by-one error (in end of macro position).
4435 2010-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4437         * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
4438         firefox is absent.  Don't autoload.
4439         (browse-url-galeon-program): Don't autoload.
4441 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
4443         * bindings.el (complete-symbol): Move into minibuffer.el.
4445         * minibuffer.el (complete-tag): Move from etags.el.  If tags
4446         completion cannot be performed, return nil instead of signalling
4447         an error.
4448         (completion-at-point): Make it an alias for complete-symbol.
4449         (complete-symbol): Move from bindings.el, and replace with the
4450         body of completion-at-point.
4452         * progmodes/etags.el (complete-tag): Move to minibuffer.el.
4454         * cedet/semantic.el (semantic-mode): When enabled, add
4455         semantic-ia-complete-symbol to completion-at-point-functions.
4457         * cedet/semantic/ia.el (semantic-ia-complete-symbol): Return nil
4458         if Semantic is not active.
4460 2010-04-28  Michael Albinus  <michael.albinus@gmx.de>
4462         * net/tramp.el (tramp-remote-selinux-p): New defun.
4463         (tramp-handle-file-selinux-context)
4464         (tramp-handle-set-file-selinux-context): Use it.
4466 2010-04-28  Sam Steingold  <sds@gnu.org>
4468         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
4469         `safe-local-variable' if the value is a string or a symbol with
4470         the property `bug-reference-url-format'.
4472 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
4474         * progmodes/bug-reference.el (bug-reference-url-format):
4475         Revert 2010-04-27 change due to security risk.
4477 2010-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4479         Make it possible to locally disable a globally enabled mode.
4480         * simple.el (fundamental-mode): Run fundamental-mode-hook.
4481         * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
4482         rather than kill-all-local-variables so it runs fundamental-mode-hook.
4483         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
4484         Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
4485         that subsequent hooks get a chance to disable it.
4487 2010-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4489         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
4490         Avoid re-enabling a minor mode after the user turned the minor mode
4491         off if MODE-enable-in-buffers is run twice (typically once from
4492         fundamental-mode's after-change-major-mode-hook and a second time from
4493         run-mode-hook's own after-change-major-mode-hook).
4495         * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
4497 2010-04-27  Sam Steingold  <sds@gnu.org>
4499         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
4500         `safe-local-variable' if the value is a string or a function, as
4501         documented and implemented on 2010-04-02.
4503 2010-04-27  Juanma Barranquero  <lekktu@gmail.com>
4505         * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
4506         when method is 'kill.
4508 2010-04-27  Agustín Martín  <agustin.martin@hispalinux.es>
4510         * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
4511         condition in default directory check.
4512         (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
4513         Kill ispell process when killing its associated buffer.
4515 2010-04-27  Jan Djärv  <jan.h.d@swipnet.se>
4517         * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
4518         but we aren't using it.
4520 2010-04-25  Jan Djärv  <jan.h.d@swipnet.se>
4522         * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
4523         checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
4525 2010-04-24  Glenn Morris  <rgm@gnu.org>
4527         * emacs-lisp/authors.el (authors-obsolete-files-regexps):
4528         Ignore VCS-ignore files, and deleted nextstep preferences files.
4529         (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
4530         (authors-ambiguous-files): New list.
4531         (authors-valid-file-names): Add some deleted files.
4532         (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
4533         (authors-disambiguate-file-name): New function.  (Bug#5501)
4534         (authors-canonical-file-name): Doc fix.
4535         Don't warn about obsolete files.
4536         (authors-canonical-file-name, authors-scan-el):
4537         Use authors-disambiguate-file-name.
4539         * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
4540         Add autoload cookies.
4541         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
4542         (generated-autoload-file): Set file-local value to "htmlfontify.el".
4543         * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
4544         They have definitions / compiler macros in cl.el.
4545         (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
4546         Replace manual autoloads with generated ones.
4547         (htmlfontify-unload-rgb-file): Remove autoload.
4548         * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
4550 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4552         * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
4553         (byte-compile-setq-default): Optimize for the
4554         single-var case and don't call byte-compile-form in this case to avoid
4555         inf-loop with byte-compile-set-default.
4557         * progmodes/compile.el (compilation-start): Abbreviate default directory.
4559 2010-04-23  Michael Albinus  <michael.albinus@gmx.de>
4561         Implement SELINUX backends.
4563         * net/tramp.el (tramp-file-name-handler-alist):
4564         Add `file-selinux-context' and `set-file-selinux-context'.
4565         (tramp-handle-file-selinux-context)
4566         (tramp-handle-set-file-selinux-context): New defuns.
4567         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
4568         Handle PRESERVE-SELINUX-CONTEXT.
4570         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4571         Add `file-selinux-context' and `set-file-selinux-context'.
4572         (tramp-gvfs-handle-file-selinux-context)
4573         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
4574         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
4576         * net/ange-ftp.el (ange-ftp-copy-file):
4577         * net/tramp-fish.el (tramp-fish-handle-copy-file):
4578         * net/tramp-imap.el (tramp-imap-handle-copy-file):
4579         * net/tramp-smb.el (tramp-smb-handle-copy-file):
4580         Add PRESERVE-SELINUX-CONTEXT.
4582 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
4584         Synchronize with Tramp repository.
4586         * net/tramp.el (with-connection-property, tramp-completion-mode-p)
4587         (tramp-action-process-alive, tramp-action-out-of-band)
4588         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
4589         (tramp-exists-file-name-handler): Fix docstring.
4590         (with-progress-reporter): New defmacro.
4591         (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
4592         (tramp-maybe-open-connection): Use it.
4594 2010-04-22  Noah Lavine  <noah549@gmail.com>  (tiny change)
4596         Detect ssh 'ControlMaster' argument automatically in some cases.
4598         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
4599         (tramp-default-method): Use it.
4601 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
4603         * net/tramp.el (tramp-handle-copy-file): Add new optional
4604         parameter `preserve-selinux-context'.
4605         (tramp-file-name-for-operation): Add `set-file-selinux-context'.
4607 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
4609         * net/tramp.el (tramp-completion-handle-file-name-all-completions):
4610         Ensure, that non remote files are still checked.  Oops.
4612 2010-04-21  Michael Albinus  <michael.albinus@gmx.de>
4614         Fix Bug#5840.
4616         * icomplete.el (icomplete-completions): Use `non-essential'.
4618         * net/tramp.el (tramp-connectable-p): New defun.
4619         (tramp-handle-expand-file-name)
4620         (tramp-completion-handle-file-name-all-completions)
4621         (tramp-completion-handle-file-name-completion): Use it.
4623 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4625         * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
4627 2010-04-21  Jan Djärv  <jan.h.d@swipnet.se>
4629         * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
4631         * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
4633         * loadup.el: Load dynamic-setting.el if feature dynamic-setting
4634         is present.
4636         * info.el (info-tool-bar-map): Add labels.
4638         * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
4640         * cus-edit.el (custom-commands): Add labels for tool bar.
4641         (custom-buffer-create-internal, Custom-mode): Adjust for
4642         labels in custom-commands.
4644         * dynamic-setting.el: Renamed from font-setting.el.
4646 2010-04-21  John Wiegley  <jwiegley@gmail.com>
4648         * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
4649         toggles the use of virtual buffers.
4650         (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
4651         (ido-toggle-virtual-buffers): New function.
4653 2010-04-21  Juanma Barranquero  <lekktu@gmail.com>
4655         Use `define-derived-mode'; fix window selection; doc fixes.
4656         * play/tetris.el (tetris, tetris-update-speed-function)
4657         (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
4658         (tetris-move-left, tetris-move-right, tetris-rotate-prev)
4659         (tetris-rotate-next, tetris-end-game, tetris-start-game)
4660         (tetris-pause-game): Fix typos in docstrings.
4661         (tetris-mode-map, tetris-null-map):
4662         Move initialization into declaration.
4663         (tetris-mode): Define with `define-derived-mode';
4664         set show-trailing-whitespace to nil.
4665         (tetris): Prefer window already displaying the "*Tetris*" buffer.
4667 2010-04-21  Karel Klíč  <kklic@redhat.com>
4669         * files.el (backup-buffer): Handle SELinux context, and return it
4670         if a backup was made by renaming.
4671         (backup-buffer-copy): Set SELinux context to the target file.
4672         (basic-save-buffer): Set SELinux context of the newly written file.
4673         (basic-save-buffer-1): Now it also returns any SELinux context.
4674         (basic-save-buffer-2): Set SELinux context of the newly created file,
4675         and return it.
4676         * net/tramp.el (tramp-file-name-for-operation):
4677         Add file-selinux-context.
4679 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4681         Make the log-edit comments use RFC822 format throughout.
4683         * vc.el (vc-checkin, vc-modify-change-comment):
4684         Adjust to new vc-start/finish-logentry.
4685         (vc-find-conflicted-file): New command.
4686         (vc-transfer-file): Adjust to new vc-checkin.
4687         (vc-next-action): Improve scoping.
4689         * vc-hg.el (vc-hg-log-edit-mode): Remove.
4690         (vc-hg-checkin): Remove extra arg.  Use log-edit-extract-headers.
4692         * vc-git.el (vc-git-log-edit-mode): Remove.
4693         (vc-git-checkin): Remove extra arg.  Use log-edit-extract-headers.
4694         (vc-git-commits-coding-system): Rename from git-commits-coding-system.
4696         * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
4697         (vc-start-logentry): Remove argument `extra'.
4698         (vc-finish-logentry): Remove extra args.
4700         * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
4701         (vc-bzr-checkin): Remove extra arg.  Use log-edit-extract-headers.
4702         (vc-bzr-conflicted-files): New function.
4704         * log-edit.el (log-edit-extra-flags)
4705         (log-edit-before-checkin-process): Remove.
4706         (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
4707         (log-edit-headers-alist): New var.
4708         (log-edit-header-contents-regexp): New const.
4709         (log-edit-match-to-eoh): New function.
4710         (log-edit-font-lock-keywords): Use them.
4711         (log-edit): Insert a "Summary:" header as default.
4712         (log-edit-mode): Mark font-lock rules as case-insensitive.
4713         (log-edit-done): Cleanup headers.
4714         (log-view-process-buffer): Remove.
4715         (log-edit-extract-headers): New function to replace it.
4717 2010-04-20  Juanma Barranquero  <lekktu@gmail.com>
4719         * subr.el (default-direction-reversed): Remove obsolescence info.
4721 2010-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4723         * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
4724         windows/frames.
4726         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
4727         I.e. include text after point in the completion region.
4728         Also, return nil when we're not after/in a symbol.
4730         * international/mule-cmds.el (view-hello-file): Don't fiddle with the
4731         default enable-multibyte-characters.
4733 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4735         * international/mule.el: Help the user choose a valid coding-system.
4736         (read-buffer-file-coding-system): New function.
4737         (set-buffer-file-coding-system): Use it.  Prompt the user if the
4738         coding-system cannot encode all the chars.
4740         * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
4741         (vc-bzr-shelve-show, vc-bzr-shelve-apply)
4742         (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
4743         Don't use *vc-bzr-shelve*.
4745 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
4747         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables):
4748         Don't destroy list before using it.
4750 2010-04-19  Dan Nicolaescu  <dann@ics.uci.edu>
4752         Fix the version number for added files.
4753         * vc-hg.el (vc-hg-working-revision): Check if the file is
4754         registered after hg parent fails (Bug#5961).
4756 2010-04-19  Glenn Morris  <rgm@gnu.org>
4758         * htmlfontify.el (htmlfontify-buffer)
4759         (htmlfontify-copy-and-link-dir): Autoload entry points.
4761 2010-04-19  Magnus Henoch  <magnus.henoch@gmail.com>
4763         * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
4764         name relative to the project root (Bug#5960).
4766 2010-04-19  Glenn Morris  <rgm@gnu.org>
4768         * vc-git.el (vc-git-print-log): Doc fix.
4770 2010-04-19  Óscar Fuentes  <ofv@wanadoo.es>
4772         * ido.el (ido-file-internal): Fix 2009-12-02 change.
4774 2010-04-19  Christoph  <cschol2112@googlemail.com>  (tiny change)
4776         * progmodes/grep.el (grep-compute-defaults): Fix handling of host
4777         default settings (Bug#5928).
4779 2010-04-19  Glenn Morris  <rgm@gnu.org>
4781         * progmodes/fortran.el (fortran-match-and-skip-declaration):
4782         New function.
4783         (fortran-font-lock-keywords-3): Use it.  (Bug#1385)
4785 2010-04-19  Kenichi Handa  <handa@m17n.org>
4787         * language/indian.el (malayalam-composable-pattern): Fix previous
4788         change (add U+0D4D "SIGN VIRAMA").
4789         (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
4790         (tamil-composable-pattern): Fix typo in the regexp.
4791         (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
4792         (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
4793         (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
4795 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
4797         * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
4798         paragraph-separate (Bug#5821).
4800 2010-04-19  Juri Linkov  <juri@jurta.org>
4802         Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
4804         * info.el (Info-find-node-2): Comment out code that skips
4805         breadcrumbs line.
4806         (Info-mouse-follow-link): New command.
4807         (Info-link-keymap): New keymap.
4808         (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
4809         Return a string with links instead of inserting breadcrumbs
4810         to the Info buffer.
4811         (Info-fontify-node): Comment out code that inserts breadcrumbs.
4812         Instead of putting the `invisible' text property over the Info
4813         header, make an overlay over the Info header with the `invisible'
4814         property and `after-string' set to the string returned by
4815         `Info-breadcrumbs'.
4817 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
4819         * help.el (help-window-setup-finish): Doc fix (Bug#5830).
4820         Reported by monkey@sandpframing.com.
4822 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4824         * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
4825         (tmm-get-keymap): Add key-binding shortcuts now that they're not
4826         available in the "keyseq cache" any more.
4828         * custom.el (defcustom): Add edebug spec.
4830 2010-04-18  Juri Linkov  <juri@jurta.org>
4832         Test for special mode-class in view-buffer instead of view-file (bug#5513).
4834         * view.el (view-file, view-buffer): Move test for special mode-class
4835         from view-file to view-buffer.
4837         * tar-mode.el (tar-extract): Turn if's into one cond
4838         like in arc-mode.el.
4840 2010-04-18  Juri Linkov  <juri@jurta.org>
4842         Add 7z archive format support (bug#5475).
4844         * arc-mode.el (archive-zip-extract): Try to find 7z executable.
4845         (archive-7z-extract): New defcustom.
4846         (archive-find-type): Add magic string for 7z.
4847         (archive-extract-by-stdout): Add new optional arg `stderr-file'.
4848         If `stderr-file' is non-nil, use `(t stderr-file)' for the
4849         `buffer' arg of `call-process'.
4850         (archive-zip-extract): Check `archive-zip-extract' for "7z" and
4851         call the function `archive-7z-extract' with the variable
4852         `archive-7z-extract' let-bound to `archive-zip-extract'.
4853         (archive-7z-summarize, archive-7z-extract): New functions.
4855         * international/mule.el (auto-coding-alist):
4856         * files.el (auto-mode-alist): Add 7z file extension.
4858 2010-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4860         * loadup.el: Setup hash-cons for pure data.
4862         Fix duplicate entries in cedet's loaddefs.el files.
4863         * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
4864         Should make most file-local generated-autoload-file unnecessary.
4865         (print-readably): Silence warnings.
4866         (autoload-find-destination): Take load-name as an arg to make sure
4867         it's the same as the one that will be in the file.
4868         (autoload-generate-file-autoloads): Adjust to above changes.
4869         Try to make the dataflow a bit simpler.
4871         * cvs-status.el (cvs-refontify): Remove unused.
4873 2010-04-18  Jay Belanger  <jay.p.belanger@gmail.com>
4875         * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
4877         * calc-bin.el (calc-radix): Have the "O" option turn on
4878         twos-complement mode.
4880 2010-04-17  Jay Belanger  <jay.p.belanger@gmail.com>
4882         * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
4883         Add `calc-option-prefix-help' to calc-help autoloads.
4884         (calc-inverse): Add "Option" to message, as appropriate.
4885         (calc-hyperbolic): Add "Option" to message, as appropriate.
4886         (calc-option, calc-is-option): New functions.
4888         * calc-help.el (calc-full-help): Add `calc-option-help'.
4889         (calc-option-prefix-help): New function.
4891         * calc-misc.el (calc-help): Add "Option" entry.
4893         * calc.el (calc-local-var-list): Add `calc-option-flag'.
4894         (calc-option-flag): New variable.
4895         (calc-do): Set `calc-option-flag to nil.
4896         (calc-set-mode-line): Add "Opt " as appropriate.
4898 2010-04-16  Juri Linkov  <juri@jurta.org>
4900         Move scrolling commands from simple.el to window.el
4901         because their primitives are implemented in window.c.
4903         * simple.el (scroll-error-top-bottom)
4904         (scroll-up-command, scroll-down-command, scroll-up-line)
4905         (scroll-down-line, scroll-other-window-down)
4906         (beginning-of-buffer-other-window, end-of-buffer-other-window):
4907         * window.el (scroll-error-top-bottom)
4908         (scroll-up-command, scroll-down-command, scroll-up-line)
4909         (scroll-down-line, scroll-other-window-down)
4910         (beginning-of-buffer-other-window, end-of-buffer-other-window):
4911         Move from simple.el to window.el because their primitives are
4912         implemented in window.c.
4914 2010-04-16  Juri Linkov  <juri@jurta.org>
4916         * isearch.el (isearch-lookup-scroll-key): Check both
4917         `isearch-scroll' and `scroll-command' properties.
4918         (scroll-up, scroll-down): Remove `isearch-scroll' property.
4920         * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
4922         * simple.el (scroll-up-command, scroll-down-command)
4923         (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
4925 2010-04-15  Juri Linkov  <juri@jurta.org>
4927         * simple.el (scroll-up-command, scroll-down-command)
4928         (scroll-up-line, scroll-down-line): Put `scroll-command'
4929         property on the these symbols.  Remove them from
4930         `scroll-preserve-screen-position-commands'.
4932         * mwheel.el (mwheel-scroll): Put `scroll-command' and
4933         `isearch-scroll' properties on the `mwheel-scroll' symbol.
4934         Remove it from `scroll-preserve-screen-position-commands'.
4936         * isearch.el (isearch-allow-scroll): Doc fix.
4938 2010-04-15  Michael Albinus  <michael.albinus@gmx.de>
4940         * net/tramp.el (tramp-error-with-buffer): Don't show the
4941         connection buffer when we are in completion mode.
4942         (tramp-file-name-handler): Catch the error for some operations
4943         when we are in completion mode.  This gives the user the chance to
4944         correct the file name in the minibuffer.
4946 2010-04-15  Glenn Morris  <rgm@gnu.org>
4948         * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
4950 2010-04-15  Juanma Barranquero  <lekktu@gmail.com>
4952         Simplify by using `define-derived-mode'.
4953         * info.el (Info-mode):
4954         * calendar/todo-mode.el (todo-mode):
4955         * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
4956         (gomoku-mode-map): Move initialization into declaration.
4958 2010-04-14  Michael Albinus  <michael.albinus@gmx.de>
4960         Fix Bug#5840.
4961         * ido.el (ido-file-name-all-completions-1):
4962         * minibuffer.el (minibuffer-completion-help):
4963         * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
4965 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4967         * simple.el (non-essential): New var.
4969         Add a new field `location' to bookmarks for non-file bookmarks.
4970         * bookmark.el (bookmark-location): Use the new field, if present.
4971         (bookmark-insert-location): Undo last change, not needed any more.
4972         * man.el (Man-bookmark-make-record):
4973         * woman.el (woman-bookmark-make-record): Add `location' field.
4975 2010-04-14  Juri Linkov  <juri@jurta.org>
4977         * simple.el (scroll-error-top-bottom): New defcustom.
4978         (scroll-up-command, scroll-down-command): Use it.  Doc fix.
4980         * emulation/pc-select.el (pc-select-override-scroll-error):
4981         Obsolete in favor of `scroll-error-top-bottom'.
4983 2010-04-14  Juri Linkov  <juri@jurta.org>
4985         * tutorial.el (tutorial--default-keys): Rebind `C-v' to
4986         `scroll-up-command' and `M-v' to `scroll-down-command'.
4988         * emulation/cua-rect.el (cua--init-rectangles):
4989         * forms.el (forms--change-commands):
4990         * image-mode.el (image-mode-map):
4991         Remap scroll-down-command and scroll-up-command
4992         in addition to scroll-down and scroll-up.
4994 2010-04-14  Juri Linkov  <juri@jurta.org>
4996         * mwheel.el (scroll-preserve-screen-position-commands):
4997         Add mwheel-scroll to this list of commands.
4999         * simple.el (scroll-preserve-screen-position-commands):
5000         Add scroll-up-command, scroll-down-command, scroll-up-line,
5001         scroll-down-line to this list of commands.
5003 2010-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5005         * obsolete/complete.el: Move from lisp/complete.el.
5007         * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
5009         * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
5010         to the minor mode function now turns the mode ON unconditionally.
5012 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5014         * vc-dir.el (vc-dir-kill-line): New command.
5015         (vc-dir-mode-map): Bind it to C-k.
5017         * bookmark.el (bookmark-insert-location): Handle a nil filename.
5019         * woman.el: Add bookmark declarations to silence the compiler.
5020         (bookmark-prop-get): Use `man-args' rather than `filename' as a first
5021         step to compatibility between man and woman bookmarks.
5022         Adjust for Man-default-bookmark-title renaming.
5023         (woman-bookmark-jump): Adjust accordingly.  Don't forget to autoload.
5025         * man.el: Add bookmark declarations to silence the compiler.
5026         (Man-name-local-regexp): Make it match NAME as well.
5027         (Man-getpage-in-background): Return the buffer.
5028         (Man-notify-when-ready): Use `case'.
5029         (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
5030         Don't hardcode "NAME".  Simplify.
5031         (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
5032         Rename from Man-bookmark-make-record.
5033         (Man-bookmark-jump): Rename from man-bookmark-jump.  Simplify now that
5034         we have the actual man-args.  Use Man-getpage-in-background rather
5035         than `man' since the arg is already processed.  Let bookmark.el do the
5036         window handling.  Only wait for the relevant process.
5037         Don't forget to autoload.
5039         * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
5041 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5043         * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
5044         New functions.
5045         (woman-mode): Setup bookmark support.
5047         * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
5048         (man-bookmark-jump): New functions.
5049         (Man-mode): Setup bookmark support.
5051 2010-04-10  Jari Aalto  <jari.aalto@cante.net>
5053         * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
5054         recognize ssh-keygen prompt (Bug#2817).
5056 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
5058         * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
5060 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
5062         Synchronize with Tramp repository.
5064         * net/tramp.el (tramp-completion-function-alist)
5065         (tramp-file-name-regexp, tramp-chunksize)
5066         (tramp-local-coding-commands, tramp-remote-coding-commands):
5067         Fix docstring.
5068         (tramp-remote-process-environment): Use `format' instead of `concat'.
5069         (tramp-handle-directory-files-and-attributes)
5070         (tramp-get-remote-path): Use `copy-tree'.
5071         (tramp-handle-file-name-all-completions): Backward/ XEmacs
5072         compatibility: Use `completion-ignore-case' if
5073         `read-file-name-completion-ignore-case' does not exist.
5074         (tramp-do-copy-or-rename-file-directly): Do not use
5075         `tramp-handle-file-remote-p'.
5076         (tramp-do-copy-or-rename-file-out-of-band):
5077         Use `tramp-compat-delete-directory'.
5078         (tramp-do-copy-or-rename-file-out-of-band)
5079         (tramp-compute-multi-hops, tramp-maybe-open-connection):
5080         Use `format-spec-make'.
5081         (tramp-find-foreign-file-name-handler)
5082         (tramp-advice-make-auto-save-file-name)
5083         (tramp-set-auto-save-file-modes): Remove superfluous check for
5084         `stringp'.  This is done inside `tramp-tramp-file-p'.
5085         (tramp-debug-outline-regexp): New defconst.
5086         (tramp-get-debug-buffer): Use it.
5087         (tramp-check-for-regexp): Use (forward-line 1).
5088         (tramp-set-auto-save-file-modes): Adapt version check.
5090         * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
5091         Wrap call of `featurep' for 2nd argument.
5092         (tramp-compat-make-temp-file): Simplify fallback implementation.
5093         (tramp-compat-copy-tree): Remove function.
5094         (tramp-compat-delete-directory): Provide implementation for older
5095         Emacsen.
5097         * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
5098         Do not use `tramp-fish-handle-file-attributes.
5100         * net/trampver.el: Update release number.
5102 2010-04-10  Glenn Morris  <rgm@gnu.org>
5104         * progmodes/compile.el (compilation-save-buffers-predicate):
5105         Add missing :version tag.
5107 2010-04-09  Sam Steingold  <sds@gnu.org>
5109         * progmodes/compile.el (compilation-save-buffers-predicate):
5110         Remove the "autoload" cookie.
5112         * progmodes/bug-reference.el (turn-on-bug-reference-mode)
5113         (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
5114         and `bug-reference-prog-mode' can be used in hooks directly.
5116 2010-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
5118         Add --author support to git commit.
5119         * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
5120         (vc-git-log-edit-mode): New minor mode.
5121         (log-edit-mode, log-edit-extra-flags, log-edit-mode):
5122         New declarations.
5124 2010-04-09  Eric Raymond  <esr@snark.thyrsus.com>
5126         * vc-hooks.el, vc-git.el: Improve documentation comments.
5128 2010-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5130         Fix some of the problems in defsubst* (bug#5728).
5131         * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
5132         (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
5134 2010-04-07  Sam Steingold  <sds@gnu.org>
5136         * progmodes/compile.el (compilation-save-buffers-predicate):
5137         New custom variable.
5138         (compile, recompile): Pass it to `save-some-buffers'.
5140 2010-04-07  Jan Djärv  <jan.h.d@swipnet.se>
5142         * wid-edit.el (widget-choose): Move cursor to the second line of
5143         the buffer (Bug#5695).
5145 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
5147         Add new VC methods: vc-log-incoming and vc-log-outgoing.
5148         * vc.el (vc-print-log-setup-buttons): New function split out from
5149         vc-print-log-internal.
5150         (vc-log-internal-common): New function, a parametrized version of
5151         vc-print-log-internal.
5152         (vc-print-log-internal): Just call vc-log-internal-common with the
5153         right arguments.
5154         (vc-incoming-outgoing-internal):
5155         (vc-log-incoming, vc-log-outgoing): New functions.
5156         (vc-log-view-type): New permanent local variable.
5158         * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
5160         * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
5161         of the dynamic bound vc-short-log.
5162         (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
5164         * vc-git.el (vc-git-log-outgoing): New function.
5165         (vc-git-log-view-mode): Use vc-log-view-type instead
5166         of the dynamic bound vc-short-log.
5168         * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
5169         of the dynamic bound vc-short-log.  Highlight the tag.
5170         (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
5171         (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
5172         (vc-hg-incoming-mode): Remove.
5173         (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
5175 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
5177         Fix default-directory for vc-root-diff.
5178         * vc.el (vc-root-diff): Bind default-directory to the root
5179         directory for the diff command.
5181 2010-04-07  Michael McNamara  <mac@mail.brushroad.com>
5183         * progmodes/verilog-mode.el (verilog-forward-sexp):
5184         (verilog-calc-1): Support "disable fork" and "fork wait" multi
5185         word keywords, suggested by Steve Pearlmutter.
5186         (verilog-pretty-declarations): Support lineup of declarations in
5187         port lists.
5188         (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
5189         fix bug for /* / comments.
5190         (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
5191         Speed up and simplfy as this is never called with a bound.
5192         (verilog-pretty-declarations): Enhance to line up declarations
5193         inside a parameter list, suggested by Alan Morgan.
5194         (verilog-pretty-expr): Tune assignment regular expression match
5195         string for corner cases; also use markers instead of character
5196         number as indent changes the later.
5198 2010-04-07  Wilson Snyder  <wsnyder@wsnyder.org>
5200         * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
5201         as missing keyword.
5202         (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
5203         causing truncation of AUTOWIRE signals.  Reported by Bruce Tennant.
5204         (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
5205         AUTO_TEMPLATEs needing multiple array bits.  Suggested by Bruce
5206         Tennant.
5207         (verilog-keywords):
5208         (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
5209         1800-2009 keywords, including "global.".
5211 2010-04-06  John Wiegley  <jwiegley@gmail.com>
5213         * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
5214         appearing in buffer list (if a live buffer name matched a recentf
5215         file basename).  Should use uniquify to offer a real solution.
5217 2010-04-06  John Wiegley  <jwiegley@gmail.com>
5219         * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
5220         comment to code, and add a :version tag.
5221         (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
5223 2010-04-06  Juanma Barranquero  <lekktu@gmail.com>
5225         Enable recentf-mode if using virtual buffers.
5226         * ido.el (recentf-list): Declare for byte-compiler.
5227         (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
5228         (ido-make-buffer-list): Simplify.
5229         (ido-add-virtual-buffers-to-list): Simplify.  Enable recentf-mode.
5231 2010-04-05  Juri Linkov  <juri@jurta.org>
5233         Scrolling commands which scroll a line instead of full screen.
5234         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5236         * simple.el (scroll-up-line, scroll-down-line): New commands.
5237         Put property isearch-scroll=t on them.
5239         * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
5240         Remove commands.
5242 2010-04-05  Juri Linkov  <juri@jurta.org>
5244         Scrolling commands which do not signal errors at top/bottom.
5245         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5247         * simple.el (scroll-up-command, scroll-down-command): New commands.
5248         Put property isearch-scroll=t on them.
5250         * bindings.el (global-map): Rebind [prior] from `scroll-down' to
5251         `scroll-down-command' and [next] from `scroll-up' to
5252         `scroll-up-command'.
5254         * emulation/cua-base.el: Put property CUA=move on
5255         `scroll-up-command' and `scroll-down-command'.
5256         (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
5257         and `scroll-down-command' to `cua-scroll-down'.
5259 2010-04-05  Juanma Barranquero  <lekktu@gmail.com>
5261         * help.el (describe-mode): Return nil.
5263 2010-04-04  John Wiegley  <jwiegley@gmail.com>
5265         * ido.el (ido-use-virtual-buffers): New variable to indicate
5266         whether "virtual buffer" support is enabled for IDO.
5267         (ido-virtual): Face used to indicate virtual buffers in the list.
5268         (ido-buffer-internal): If a buffer is chosen, and no such buffer
5269         exists, but a virtual buffer of that name does (which would be why
5270         it was in the list), recreate the buffer by reopening the file.
5271         (ido-make-buffer-list): If virtual buffers are being used, call
5272         `ido-add-virtual-buffers-to-list' before the make list hook.
5273         (ido-virtual-buffers): New variable which contains a copy of the
5274         current contents of the `recentf-list', albeit pared down for the
5275         sake of speed, and with proper faces applied.
5276         (ido-add-virtual-buffers-to-list): Using the `recentf-list',
5277         create a list of "virtual buffers" to present to the user in
5278         addition to the currently open set.  Note that this logic could
5279         get rather slow if that list is too large.  With the default
5280         `recentf-max-saved-items' of 200, there is little speed penalty.
5282 2010-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5284         * font-lock.el: Require CL when compiling.
5285         (font-lock-turn-on-thing-lock): Use `case'.
5287 2010-04-03  Eli Zaretskii  <eliz@gnu.org>
5289         * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
5290         Zaretskii.
5292 2010-04-02  Juanma Barranquero  <lekktu@gmail.com>
5294         * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
5295         (semantic-create-imenu-directory-index): Fix typos in docstrings.
5296         (semantic-imenu-goto-function): Reflow docstring.
5298 2010-04-02  Juri Linkov  <juri@jurta.org>
5300         * ehelp.el (electric-help-orig-major-mode):
5301         New buffer-local variable.
5302         (electric-help-mode): Set it to original major-mode.  Doc fix.
5303         (with-electric-help): Use `electric-help-orig-major-mode' instead
5304         of (default-value 'major-mode).  Doc fix.
5305         http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
5307 2010-04-02  Sam Steingold  <sds@gnu.org>
5309         * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
5310         `vc-hg-command' with a list of flags.
5312         * progmodes/bug-reference.el (bug-reference-bug-regexp):
5313         Also accept "patch" and "RFE".
5314         (bug-reference-fontify): `bug-reference-url-format' can also be a
5315         function to be able to handle the bug kind.
5316         (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
5318 2010-04-02  Jan Djärv  <jan.h.d@swipnet.se>
5320         * tmm.el (tmm-get-keymap): Check with symbolp before passing
5321         value to fboundp, it may not be a symbol.
5323 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5325         * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
5327 2010-03-31  Juri Linkov  <juri@jurta.org>
5329         * simple.el (next-line, previous-line): Re-throw a signal
5330         with `signal' instead of using `ding'.
5331         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
5333 2010-03-31  Juri Linkov  <juri@jurta.org>
5335         * simple.el (keyboard-escape-quit): Raise deselecting the active
5336         region higher than exiting the minibuffer.
5337         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
5339 2010-03-31  Juri Linkov  <juri@jurta.org>
5341         * image.el (image-animated-p): Use `image-metadata' instead of
5342         `image-extension-data'.  Get GIF extenstion data from metadata
5343         property `extension-data'.
5345 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5347         * simple.el (append-to-buffer): Simplify.
5349 2010-03-31  Tomas Abrahamsson  <tab@lysator.liu.se>
5351         * textmodes/artist.el (artist-mode): Fix typo in docstring.
5352         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
5354 2010-03-31  Kenichi Handa  <handa@m17n.org>
5356         * language/sinhala.el (composition-function-table): Fix regexp for
5357         the new Unicode specification.
5359         * language/indian.el (devanagari-composable-pattern)
5360         (tamil-composable-pattern, kannada-composable-pattern)
5361         (malayalam-composable-pattern): Adjust for the new Unicode
5362         specification.
5363         (bengali-composable-pattern, gurmukhi-composable-pattern)
5364         (gujarati-composable-pattern, oriya-composable-pattern)
5365         (telugu-composable-pattern): New variables to cope with the new
5366         Unicode specification.  Use them in composition-function-table.
5368 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5370         Make tmm-menubar work for the Buffers menu again (bug#5726).
5371         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
5372         vectors rather than cons cells, as used in menu-bar-update-buffers.
5374 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5376         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
5377         (js-insert-and-indent): Revert 2009-08-15 change, restoring
5378         electric punctuation for "{}();,:" (Bug#5586).
5380         * mail/sendmail.el (mail-default-directory): Doc fix.
5382 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5384         * mail/sendmail.el (mail-default-directory): Doc fix.
5386 2010-03-31  Eli Zaretskii  <eliz@gnu.org>
5388         * subr.el (version-regexp-alist, version-to-list)
5389         (version-list-<, version-list-=, version-list-<=)
5390         (version-list-not-zero, version<, version<=, version=): Doc fix.
5391         (Bug#5744).
5393 2010-02-31  Dan Nicolaescu  <dann@ics.uci.edu>
5395         * vc.el (vc-root-diff): Doc fix.
5397 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5399         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
5401         * simple.el (append-to-buffer): Fix last change.
5403 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5405         * simple.el (append-to-buffer): Ensure that point is preserved if
5406         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
5407         (Bug#5749)
5409 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5411         * files.el (auto-mode-case-fold): Change default to t.
5413 2010-03-30  Juri Linkov  <juri@jurta.org>
5415         * dired-x.el (dired-omit-mode): Doc fix.
5417 2010-03-30  Juri Linkov  <juri@jurta.org>
5419         * replace.el (occur-accumulate-lines): Move occur-engine related
5420         functions `occur-accumulate-lines' and `occur-engine-add-prefix'
5421         to be located after `occur-engine'.
5423 2010-03-30  Juri Linkov  <juri@jurta.org>
5425         Make occur handle multi-line matches cleanly with context.
5426         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
5428         * replace.el (occur-accumulate-lines): Add optional arg `pt'.
5429         (occur-engine): Add local variables `ret', `prev-after-lines',
5430         `prev-lines'.  Use more arguments for `occur-context-lines'.
5431         Set first elem of its returned list to `data', and the second elem
5432         to `prev-after-lines'.  Don't print the separator line.
5433         In the end, print remaining context after-lines.
5434         (occur-context-lines): Add new arguments `begpt', `endpt',
5435         `lines', `prev-lines', `prev-after-lines'.  Rewrite to combine
5436         after-lines of the previous match with before-lines of the
5437         current match and not overlap them.  Return a list with two
5438         values: the output line and the list of context after-lines.
5440 2010-03-30  Juri Linkov  <juri@jurta.org>
5442         * replace.el (occur-accumulate-lines): Fix a bug where the first
5443         context line at the beginning of the buffer was missing.
5445 2010-03-30  Eli Zaretskii  <eliz@gnu.org>
5447         * files.el: Make bidi-display-reordering safe variable for boolean
5448         values.
5450 2010-03-29  Phil Hagelberg  <phil@evri.com>
5451             Chong Yidong  <cyd@stupidchicken.com>
5453         * subr.el: Extend progress reporters to perform "spinning".
5454         (progress-reporter-update, progress-reporter-do-update):
5455         Handle non-numeric value arguments.
5456         (progress-reporter--pulse-characters): New var.
5458 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
5460         * progmodes/compile.el (compilation-start): Fix regexp detection
5461         of initial cd command (Bug#5771).
5463 2010-03-28  Stefan Guath  <stefan@automata.se>  (tiny change)
5465         * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
5467 2010-03-27  Nick Roberts  <nickrob@snap.net.nz>
5469         Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
5470         * lisp/progmodes/gdb-mi.el: Restore.
5471         * lisp/progmodes/gdb-ui.el: Remove.
5472         * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
5474 2010-03-25  Glenn Morris  <rgm@gnu.org>
5476         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
5477         all dired buffers, even tramp ones.  (Bug#5755)
5479 2010-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5481         Add "union tags" in mpc.el.
5482         * mpc.el: Remove backward compatibility code.
5483         (mpc-browser-tags): Change default.
5484         (mpc--find-memoize-union-tags): New var.
5485         (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
5486         (mpc-cmd-find): Handle the case where the playlist does not exist.
5487         Handle union-tags.
5488         (mpc-cmd-list): Use mpc-cmd-special-tag-p.  Handle union-tags.
5489         (mpc-cmd-add): Use mpc-cmd-flush.
5490         (mpc-tagbrowser-tag-name): New fun.
5491         (mpc-tagbrowser-buf): Use it.
5492         (mpc-songs-refresh): Use cond.  Move to point-min as a fallback.
5494 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5496         Misc cleanup.
5497         * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
5498         Use replace-regexp-in-string.
5499         (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
5500         (makefile-imake-mode-syntax-table): Move init into defvar.
5501         (makefile-mode): Use define-derived-mode.
5503         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
5504         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
5505         not be present any more.
5507 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
5509         * faces.el (set-face-attribute): Fix typo in docstring.
5510         (face-valid-attribute-values): Reflow docstring.
5512         * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
5514 2010-03-24  Glenn Morris  <rgm@gnu.org>
5516         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
5518 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
5520         * indent.el (indent-for-tab-command): Doc fix.
5522 2010-03-24  Alan Mackenzie  <acm@muc.de>
5524         * progmodes/cc-engine.el (c-remove-stale-state-cache):
5525         Fix off-by-one error.  Fixes bug #5747.
5527 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
5529         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
5530         (image-dired-read-comment): Doc fix.
5532         * json.el (json-object-type, json-array-type, json-key-type)
5533         (json-false, json-null, json-read-number):
5534         * minibuffer.el (completion-in-region-functions):
5535         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
5536         (cal-tex-cursor-week):
5537         * emacs-lisp/trace.el (trace-function):
5538         * eshell/em-basic.el (eshell/printnl):
5539         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
5540         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
5541         * obsolete/levents.el (allocate-event, event-key, event-object)
5542         (event-point, event-process, event-timestamp, event-to-character)
5543         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
5544         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
5545         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
5546         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
5547         (reftex-highlight-selection): Fix typos in docstrings.
5549 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
5551         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
5553 2010-03-24  Glenn Morris  <rgm@gnu.org>
5555         * mail/rmail.el (rmail-highlight-face): Restore option deleted
5556         2008-02-13 without comment; mark it obsolete.
5557         (rmail-highlight-headers): Use rmail-highlight-face once more.
5559 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
5561         * woman.el (woman2-process-escapes): Only consume the newline if
5562         the filler character is on a line by itself (Bug#5729).
5564 2010-03-24  Kenichi Handa  <handa@m17n.org>
5566         * language/indian.el (devanagari-composable-pattern): Add more
5567         consonants.
5569 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
5571         * net/trampver.el: Update release number.
5573 2010-03-24  Glenn Morris  <rgm@gnu.org>
5575         * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
5577 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
5579         * net/tramp.el (tramp-find-executable):
5580         Use `tramp-get-connection-buffer'.  Make the regexp for checking
5581         output of "wc -l" more robust.
5582         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
5583         (tramp-open-connection-setup-interactive-shell): Remove workaround
5584         for OpenSolaris bug, it is not needed anymore.
5586 2010-03-24  Eric M. Ludlam  <zappo@gnu.org>
5588         * cedet/semantic/imenu.el: New file, from the CEDET repository
5589         (Bug#5412).
5591 2010-03-24  Glenn Morris  <rgm@gnu.org>
5593         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
5595 2010-03-24  Wilson Snyder  <wsnyder@wsnyder.org>
5597         * files.el (auto-mode-alist): Accept more verilog file patterns.
5599 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5601         * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
5603 2010-03-24  Glenn Morris  <rgm@gnu.org>
5605         * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
5606         log-edit-before-checkin-process.
5608         * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
5610         * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
5612         * vc-dispatcher.el (vc-start-logentry): Doc fix.
5613         (log-view-process-buffer, log-edit-extra-flags): Declare.
5615         * log-edit.el (log-edit-before-checkin-process): Doc fix.
5617         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
5618         Consistently check ede-object is bound throughout.
5620         * cedet/ede/project-am.el (ede-shell-run-something): Declare.
5622 2010-03-23  Sam Steingold  <sds@gnu.org>
5624         Fix bug#5620: recalculate all markers on compilation buffer
5625         modifications, not on file modifications.
5626         * progmodes/compile.el (buffer-modtime): New buffer-local variable:
5627         the buffer modification time, for buffers not associated with files.
5628         (compilation-mode): Create it.
5629         (compilation-filter): Update it.
5630         (compilation-next-error-function): Use it instead of
5631         `visited-file-modtime' for timestamp.
5633 2010-03-23  Juri Linkov  <juri@jurta.org>
5635         Implement Occur multi-line matches.
5636         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
5638         * replace.el (occur): Doc fix.
5639         (occur-engine): Set `begpt' to the beginning of the first line.
5640         Set `endpt' to the end of the last match line.  At first, count
5641         line numbers between `origpt' and `begpt'.  Split out code from
5642         `out-line' variable to new let-bindings `match-prefix' and
5643         `match-str'.  In `out-line' add non-numeric prefix to all
5644         non-first lines of multi-line matches.  Finally, count lines
5645         between `begpt' and `endpt' and add to `lines'.
5647 2010-03-23  Juri Linkov  <juri@jurta.org>
5649         * replace.el (occur-accumulate-lines, occur-engine):
5650         Use `occur-engine-line' instead of duplicate code.
5651         (occur-engine-line): New function created from duplicate code
5652         in `occur-accumulate-lines' and `occur-engine'.
5654         * replace.el (occur-engine-line): Add optional arg `keep-props'.
5655         (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
5657 2010-03-23  Juri Linkov  <juri@jurta.org>
5659         * finder.el: Remove TODO tasks.
5661         * info.el (Info-finder-find-node): Add node "all"
5662         with all package info.  Handle a list of multiple keywords
5663         separated by comma.
5664         (info-finder): In interactive use with a prefix argument,
5665         use `completing-read-multiple' to read a list of keywords
5666         separated by comma.
5668 2010-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5670         Add a new completion style `substring'.
5671         * minibuffer.el (completion-basic--pattern): New function.
5672         (completion-basic-try-completion, completion-basic-all-completions):
5673         Use it.
5674         (completion-substring--all-completions)
5675         (completion-substring-try-completion)
5676         (completion-substring-all-completions): New functions.
5677         (completion-styles-alist): New style `substring'.
5679 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5681         Get rid of .elc files after removal of the corresponding .el.
5682         * Makefile.in (compile-clean): New target.
5683         (compile-main): Use it.
5685 2010-03-22  Jan Djärv  <jan.h.d@swipnet.se>
5687         * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
5688         don't do make there.  When compiling with separate object dir, there
5689         is no Makefile there.
5691 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5693         Get rid of the ELCFILES abomination, again.
5694         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
5695         (all, compile): Don't call compile-last.
5696         (compile-main): Build the "elcfiles" list dynamically.
5697         (compile-targets): New (internal) target.
5699 2010-03-21  Andreas Schwab  <schwab@linux-m68k.org>
5701         * Makefile.in (top_srcdir): Define.
5702         (abs_top_builddir): Define.
5703         (srcdir): Don't append `/..'.
5704         (EMACS): Use ${abs_top_builddir}.
5705         (all, compile, compile-always, compile-last): Don't set emacswd.
5706         (update-subdirs, update-authors): Use $(top_srcdir) instead of
5707         $(srcdir).
5708         (lisp): Use $(srcdir) instead of @srcdir@.
5710 2010-03-21  Juri Linkov  <juri@jurta.org>
5712         Fix message of multi-line occur regexps and multi-buffer header lines.
5713         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
5715         * replace.el (occur-1): Don't display regexp if it is longer
5716         than window-width.  Use `query-replace-descr' to display regexp.
5717         (occur-engine): Don't display regexp in the buffer header for
5718         multi-buffer occur.  Display a separate header line with total
5719         match count and regexp for multi-buffer occur.
5720         Use `query-replace-descr' to display regexp.
5722 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
5724         * net/secrets.el: Fix parenthesis.
5725         (secrets-enabled): Fix parenthesis.
5727 2010-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5729         Use more relative file and directory names.
5730         * Makefile.in (EMACS): Arrange for it to work when we chdir.
5731         (setwins, setwins_almost, setwins_for_subdirs):
5732         Don't `cd'; output relative names.
5733         (all, compile, compile-always, compile-last): Set emacswd.
5734         (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
5735         Just cd to the lisp source dir so we can use relative file names.
5737         * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
5739 2010-03-20  Glenn Morris  <rgm@gnu.org>
5741         * textmodes/rst.el: Use faces for font-lock customization, and make the
5742         old -face variables obsolete.
5743         (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
5744         (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
5745         (rst-block-face, rst-external-face, rst-definition-face)
5746         (rst-directive-face, rst-comment-face, rst-emphasis1-face)
5747         (rst-emphasis2-face, rst-literal-face, rst-reference-face):
5748         Make obsolete.
5749         (rst-font-lock-keywords-function): Update for above changes.
5751 2010-03-20  Juri Linkov  <juri@jurta.org>
5753         * s-region.el:
5754         * obsolete/s-region.el: Move to obsolete.
5756 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
5758         * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
5760 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
5762         * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
5764 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
5766         Add special markup processing for commit logs.
5767         * log-edit.el (log-edit-extra-flags): New variable.
5768         (log-edit): Add new argument MODE.  Use that mode when non-nil
5769         instead of the log-view-mode.
5770         (log-view-process-buffer): New function.
5772         * vc.el: Document that the checkin method takes optional
5773         arguments.  Document new backend specific method: log-view-mode.
5774         (vc-default-log-edit-mode): New function.
5775         (vc-checkin): Use a backend specific log-view-mode.
5776         Pass extra arguments to the checkin method.
5777         (vc-modify-change-comment): Pass a dummy extra argument.
5779         * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
5780         log-edit.
5781         (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
5782         (vc-finish-logentry): Process the log buffer before passing it
5783         down.  Pass log-edit-extra-flags.
5785         * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
5786         command.
5787         (log-edit-extra-flags, log-edit-before-checkin-process):
5788         New declarations.
5790         * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
5791         command.
5792         (log-edit-extra-flags, log-edit-before-checkin-process):
5793         New declarations.
5794         (vc-hg-log-edit-mode): New derived mode.
5796         * vc-arch.el (vc-arch-checkin):
5797         * vc-cvs.el (vc-cvs-checkin):
5798         * vc-git.el (vc-git-checkin):
5799         * vc-mtn.el (vc-mtn-checkin):
5800         * vc-rcs.el (vc-rcs-checkin):
5801         * vc-sccs.el (vc-sccs-checkin):
5802         * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
5804 2010-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5806         * outline.el (hide-sublevels): Don't hide trailing newline (and fix
5807         parent typo).
5809 2010-03-19  Glenn Morris  <rgm@gnu.org>
5811         * password-cache.el (password-cache, password-cache-expiry): Autoload.
5813 2010-03-18  Glenn Morris  <rgm@gnu.org>
5815         * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
5817         * replace.el (query-replace-history): Give it a doc string.
5818         (map-query-replace-regexp): Use query-replace-from-history-variable
5819         and query-replace-to-history-variable.
5821         * mail/hashcash.el (declare-function): Remove duplicate definition.
5823         * mail/emacsbug.el (report-emacs-bug-pretest-address):
5824         Make it an obsolete alias for report-emacs-bug-address.
5825         (message-strip-special-text-properties): Declare.
5826         (report-emacs-bug): Remove test for a pretest bug address.
5827         Combine message-mode-specific code.
5829         * mail/supercite.el: Don't require sendmail.
5830         (mh-in-header-p): Declare rather than using with-no-warnings.
5831         (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
5832         mail-header-end.  Don't bind mysterious variable `kill-lines-magic'.
5834         * calendar/cal-french.el: Convert to utf-8.
5836         * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
5837         Emacs scripts.
5839 2010-03-16  Michael Albinus  <michael.albinus@gmx.de>
5841         * net/secrets.el (secrets-enabled): New variable.  Use it instead
5842         of a subfeature.
5844 2010-03-15  Michael Albinus  <michael.albinus@gmx.de>
5846         * net/secrets.el (top): Register the D-Bus signals only when the
5847         service "org.freedesktop.secrets" can be pinged.
5848         Provide subfeature `enabled'.
5850 2010-03-14  Juri Linkov  <juri@jurta.org>
5852         Add finder unknown keywords.
5854         * finder.el (finder-unknown-keywords): New function.
5856         * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
5857         to create a Finder node with unknown keywords.
5859 2010-03-14  Juri Linkov  <juri@jurta.org>
5861         * finder.el (finder-compile-keywords): Replace `princ' with
5862         `prin1' on a list of symbols interned from keyword strings.
5864         * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
5865         a comma, then split keywords using a comma and optional whitespace.
5866         Otherwise, split by whitespace.
5868         * complete.el:
5869         * face-remap.el:
5870         * log-view.el:
5871         * net/hmac-def.el:
5872         * net/hmac-md5.el:
5873         * net/netrc.el:
5874         * progmodes/mixal-mode.el: Fix keywords.
5876 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
5878         * Makefile.in (ELCFILES): Add net/secrets.elc.
5880         * net/secrets.el: New file.
5882 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
5884         * facemenu.el (list-colors-display, list-colors-print): New arg
5885         callback.  Use it to allow selecting colors.
5887         * wid-edit.el (widget-image-insert): Insert image prop even if the
5888         current display is non-graphic.
5889         (widget-field-value-set): New fun.
5890         (editable-field): Use it.
5891         (widget-field-value-get): Clean up unused var.
5892         (widget-color-value-create, widget-color--choose-action):
5893         New funs.  Allow using list-colors-display to choose color.
5895 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
5897         * cus-edit.el: Resort topmost custom groups.
5898         (custom-buffer-sort-alphabetically): Default to t.
5899         (customize-apropos): Use apropos-parse-pattern.
5900         (custom-search-field): New var.
5901         (custom-buffer-create-internal): Add custom-apropos search field.
5902         (custom-add-parent-links): Don't display parent doc.
5903         (custom-group-value-create): Don't sort top-level custom group.
5904         (custom-magic-value-create): Show visibility button before option name.
5906         (custom-variable-state): New fun, from custom-variable-state-set.
5907         (custom-variable-state-set): Use it.
5908         (custom-group-value-create): Hide options with standard values
5909         using the :hidden-states property.  Use progress reporter.
5911         (custom-show): Simplify.
5912         (custom-visibility): Disable images by default.
5913         (custom-variable): New property :hidden-states.
5914         (custom-variable-value-create): Enable images for
5915         custom-visibility widgets.  Use :hidden-states property to
5916         determine initial visibility.
5918         * wid-edit.el (widget-image-find): Give images center ascent.
5919         (visibility): Add :on-image and :off-image properties.
5920         (widget-visibility-value-create): Use them.
5922 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
5924         * cus-edit.el (processes): Remove from development group.
5925         (oop, hypermedia): Delete group.
5926         (comm): Promote to top-level group.
5928         * net/browse-url.el (browse-url):
5929         * net/xesam.el (xesam):
5930         * net/tramp.el (tramp):
5931         * net/goto-addr.el (goto-address):
5932         * net/ange-ftp.el (ange-ftp): Put in comm group.
5934         * view.el (view): Remove from editing group.
5936         * uniquify.el (uniquify): Put in files group.
5938         * net/browse-url.el (browse-url):
5939         * ps-print.el (postscript): Put in external group.
5941         * cus-edit.el (outlines):
5942         * textmodes/text-mode.el (text-mode-hook):
5943         * textmodes/table.el (table):
5944         * textmodes/picture.el (picture):
5945         * outline.el (outlines): Put in wp group.
5947         * nxml/nxml-mode.el (nxml): Remove from wp group.
5949         * net/tramp-imap.el (tramp-imap): Put in tramp group.
5951         * mail/metamail.el (metamail): Remove from hypermedia group.
5953         * cus-edit.el (abbrev):
5954         * whitespace.el (whitespace):
5955         * vcursor.el (vcursor):
5956         * reveal.el (reveal):
5957         * hl-line.el (hl-line): Put in convenience group.
5959         * epg-config.el (epg): Put in data group.
5961         * emulation/pc-select.el (pc-select): Put in emulations group.
5963         * calculator.el (calculator): Put in applications group.
5965 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
5967         Add .dir-locals.el support for file-less buffers.
5968         * files.el (hack-local-variables): Split out code to apply local
5969         variable settings ...
5970         (hack-local-variables-apply): ... here.  New function.
5971         (hack-dir-local-variables): Use the default directory for when the
5972         buffer does not have an associated file.
5973         (hack-dir-local-variables-non-file-buffer): New function.
5974         * diff-mode.el (diff-mode):
5975         * vc-annotate.el (vc-annotate-mode):
5976         * vc-dir.el (vc-dir-mode):
5977         * log-edit.el (log-edit-mode):
5978         * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
5980 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
5982         Add support for shelving snapshots and for showing shelves.
5983         * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
5984         (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
5985         New functions.
5986         (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
5987         (vc-bzr-extra-menu-map): Map them.
5989 2010-03-11  Glenn Morris  <rgm@gnu.org>
5991         * cus-edit.el (customize-changed-options-previous-release):
5992         Bump to 23.1.
5994         * image.el (image-animate-max-time): Fix :version tag.
5996 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
5998         * Branch for 23.2.
6000 2010-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6002         * vc-git.el (vc-git-revision-table): Include remote branches.
6004 2010-03-10  Kim F. Storm  <storm@cua.dk>
6006         Animated image API.
6007         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
6009         * image.el (image-animate-max-time): New defcustom.
6010         (image-animated-types): New defconst.
6011         (create-animated-image, image-animate-timer)
6012         (image-animate-start, image-animate-stop, image-animate-timeout)
6013         (image-animated-p): New functions.
6015         * image-mode.el (image-toggle-display-image):
6016         Replace `create-image' with `create-animated-image'.
6018 2010-03-09  Miles Bader  <miles@gnu.org>
6020         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
6021         instead of "format:"; this ensures that the output is
6022         newline-terminated.
6024 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
6026         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
6027         that all errors are caught, and that the return value is always a
6028         list (Bug#5692).
6030 2010-03-08  Kenichi Handa  <handa@m17n.org>
6032         * language/misc-lang.el (windows-1256): New coding system.
6033         (cp1256): New alias of windows-1256 (bug#5690).
6035 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
6037         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
6038         call to rfc822-bad-address.  (Bug#5692)
6040 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
6042         * vc-git.el (vc-git-annotate-extract-revision-at-line):
6043         Use vc-git-root as default directory for revision path (Bug#5657).
6045 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
6047         * calculator.el (calculator): Don't bind split-window-keep-point
6048         (Bug#5674).
6050 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6052         * vc-git.el: Re-flow to fit into 80 columns.
6053         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
6054         Remove spurious `quote' element in each case alternative.
6055         (vc-git-show-log-entry): Use prog1.
6056         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
6058 2010-03-06  Glenn Morris  <rgm@gnu.org>
6060         * cedet/semantic/grammar.el (semantic-grammar-header-template):
6061         Update template copyright to GPLv3+.
6063 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6065         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
6067 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
6069         * macros.el (insert-kbd-macro): Look up keyboard macro using the
6070         definition, not the name (Bug#5481).
6072 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
6074         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
6075         argument with a local variable.  (Bug#5670)
6077 2010-03-02  Juri Linkov  <juri@jurta.org>
6079         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
6081 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
6083         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
6084         error when FILENAME and NEWNAME are existing remote directories.
6086         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
6087         parameter DIR-FLAG.
6089 2010-03-02  Glenn Morris  <rgm@gnu.org>
6091         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
6092         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
6094 2010-03-01  Kenichi Handa  <handa@m17n.org>
6096         * language/burmese.el (burmese-composable-pattern): Rename from
6097         myanmar-composable-pattern.
6099         * international/characters.el (script-list):
6100         * international/fontset.el (script-representative-chars):
6101         Change myanmar to burmese.
6102         (otf-script-alist): Likewise.
6103         (setup-default-fontset): Likewise.  Re-fix :otf spec.
6105 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6107         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
6109 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
6111         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
6113 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
6115         * net/tramp.el (tramp-handle-write-region): START can be a string.
6116         Take care in the checks.  Reported by Dan Davison
6117         <davison@stats.ox.ac.uk>.
6119 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
6121         * net/dbus.el (dbus-introspect, dbus-get-property)
6122         (dbus-set-property, dbus-get-all-properties):
6123         Use `dbus-call-method' when noninteractive.  (Bug#5645)
6125 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
6127         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
6128         * emacs-lisp/elint.el (elint-add-required-env):
6129         * cedet/semantic/db-find.el
6130         (semanticdb-find-translate-path-brutish-default):
6131         * cedet/ede/make.el (ede-make-check-version):
6132         * calendar/icalendar.el (icalendar--add-diary-entry):
6133         * calc/calcalg2.el (math-tracing-integral):
6134         * files.el (recover-session-finish): Use with-current-buffer
6135         instead of save-excursion.
6137 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6139         Fix in-buffer completion when after-change-functions modify the buffer.
6140         * minibuffer.el (completion--replace): New function.
6141         (completion--do-completion): Use it and use relative movement.
6143 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
6145         * international/fontset.el (setup-default-fontset): Fix :otf spec.
6147 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
6149         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
6150         Allow the characters _<> in the stack entry (Bug#5653).
6152 2010-02-26  Kenichi Handa  <handa@m17n.org>
6154         * language/burmese.el: Fix entries in composition-function-table.
6155         (myanmar-composable-pattern): New variable.
6157         * international/fontset.el (setup-default-fontset): Add an entry
6158         for myanmar.
6160         * international/characters.el (script-list): Add Myanmar
6161         Extended-A.
6163 2010-02-26  Glenn Morris  <rgm@gnu.org>
6165         * custom.el (custom-initialize-delay): Doc fix.
6167         * mail/sendmail.el (send-mail-function): Autoload the call
6168         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
6170 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
6172         * files.el (hack-local-variables-filter): For eval forms, also
6173         check safe-local-variable-p (Bug#5636).
6175 2010-02-24  Eduard Wiebe  <usenet@pusto.de>
6177         * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
6178         and use c(ad)r of cddr (Bug#5640).
6180 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
6182         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
6183         setting the modes by `ignore-errors'.  It might fail, for example
6184         if the file is not owned by the user but the group.
6185         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
6187 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
6189         * files.el (directory-listing-before-filename-regexp): Use
6190         stricter matching for iso-style dates, to avoid false matches with
6191         date-like filenames (Bug#5597).
6193         * htmlfontify.el (htmlfontify): Doc fix.
6195         * eshell/eshell.el (eshell): Doc fix.
6197         * startup.el (fancy-about-screen): In mode-line, apply
6198         mode-line-buffer-id face only to the buffer name (Bug#5613).
6200 2010-02-20  Kevin Ryde  <user42@zip.com.au>
6202         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6203         In `watcom' anchor regexp to start of line, to avoid slowness
6204         (Bug#5599).
6206 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
6208         * subr.el (remove-yank-excluded-properties): Explain in a comment
6209         why `category' property is removed.
6211 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
6213         * isearch.el (isearch-update-post-hook, isearch-update): Revert
6214         2010-02-17 change.
6216 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
6218         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
6219         (icalendar--convert-weekly-to-ical)
6220         (icalendar--convert-yearly-to-ical)
6221         (icalendar--convert-block-to-ical)
6222         (icalendar--convert-cyclic-to-ical)
6223         (icalendar--convert-anniversary-to-ical): Take care of time
6224         specifications where hour has 1-digit only (Bug#5549).
6226 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
6228         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
6229         of disassemble output in GDB 7.1.
6231 2010-02-19  Glenn Morris  <rgm@gnu.org>
6233         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
6234         property.  (Bug#5593)
6236 2010-02-18  Sam Steingold  <sds@gnu.org>
6238         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
6240 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6242         Use abbreviated file names in bookmarks (bug#5591).
6243         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
6244         calls to expand-file-name.
6245         (bookmark-relocate): Use abbreviated file names in bookmarks.
6246         (bookmark-load): Use abbreviated file names in messages.
6248 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
6250         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
6251         expand "." and "..".  Reported by Thierry Volpiatto
6252         <thierry.volpiatto@gmail.com>.
6254 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
6256         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
6257         permissions of the temporary file to "0600".  In case the remote
6258         file has no read permissions for the owner, there might be
6259         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
6261 22010-02-18  Glenn Morris  <rgm@gnu.org>
6263         * emacs-lisp/authors.el (authors-renamed-files-alist):
6264         Add entries for INSTALL.CVS.
6266 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
6268         * vc-bzr.el: Fix typo in Known Bugs section.
6270         * isearch.el (isearch-update-post-hook): New hook.
6271         (isearch-update): Use the new hook.
6273 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
6275         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
6276         Fix errors in copying directories.
6277         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
6278         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
6279         (tramp-handle-delete-file)
6280         (tramp-handle-dired-recursive-delete-directory)
6281         (tramp-handle-write-region): Flush also the cache for the upper
6282         directory.
6284 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
6286         * simple.el (save-interprogram-paste-before-kill): Doc fix.
6288         * cus-edit.el (hardware): Doc fix.
6290         * man.el (man): Add to external custom group.
6292         * delim-col.el (columns): Move to wp custom group.
6294         * doc-view.el (doc-view): Add to data custom group.
6296         * cedet/data-debug.el (data-debug): Move to extensions group.
6298         * cedet/ede.el (ede):
6299         * cedet/srecode.el (srecode):
6300         * cedet/semantic.el (semantic): Put in tools and extensions group.
6302         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
6304         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
6305         by ispell-parse-output (Bug#5575).
6307 2010-02-16  Kenichi Handa  <handa@m17n.org>
6309         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
6310         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
6311         (skkdic-convert): Use `euc-japan' coding system for writing.
6313 2010-02-16  Glenn Morris  <rgm@gnu.org>
6315         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
6316         tex-main-file before using it.  (Bug#5562)
6318 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6320         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
6321         warnings, since it is annoying for the user to see them each time he
6322         runs the code.
6324 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
6326         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
6327         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
6328         instead of PROC for caching "first-password-request".  Otherwise,
6329         new processes would not profit from passwords already entered.
6331         * net/tramp-cache.el (tramp-dump-connection-properties):
6332         Don't save "first-password-request" property.
6334 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
6336         * outline.el (outline-head-from-level):
6337         * simple.el (with-wrapper-hook):
6338         * cedet/ede.el (ede-run-target, project-delete-target)
6339         (project-dist-files, ede-name, ede-documentation, ede-parent-project)
6340         (ede-adebug-project, ede-adebug-project-parent)
6341         (ede-adebug-project-root):
6342         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
6343         (elint-defun, elint-buffer-env, elint-top-form-logged)
6344         (elint-unbound-variable):
6345         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
6346         Fix typos in docstrings.
6348 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
6350         * files.el (insert-directory): When WILDCARD-REGEXP and
6351         FULL-DIRECTORY-P are nil, insert the file entry instead of the
6352         whole directory.  (Bug#5551)
6354         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
6355         dired's alignment sanity.  (Bug#5516)
6357 2010-02-14  Juri Linkov  <juri@jurta.org>
6359         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
6360         Remove remaining ^H with their preceding chars.  (Bug#5566)
6362 2010-02-13  Glenn Morris  <rgm@gnu.org>
6364         * simple.el (transpose-subr): Give it a doc-string.
6366         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
6367         Doc fixes.
6369 2010-02-12  Juri Linkov  <juri@jurta.org>
6371         * arc-mode.el (archive-unique-fname): Make directories for nested
6372         archives.  (Bug#5540)
6374 2010-02-12  Juri Linkov  <juri@jurta.org>
6376         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
6378 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6380         * subr.el (copy-overlay): Handle deleted overlays.
6382         * man.el (Man-completion-table): Don't signal an error if we can't run
6383         manual-program (bug#4056).
6385 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
6387         * textmodes/artist.el (artist-mt): Fix typos in docstring.
6389 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6391         * info.el (Info-bookmark-jump): Simplify.
6393         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
6394         (bookmark-default-handler): Accept new bookmark field `buffer'.
6396 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
6398         * iswitchb.el (iswitchb-completions): Revert last change.
6400 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
6402         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
6403         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
6404         This prevents file names like "~/" being listed literally.
6406 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
6408         * term/xterm.el (xterm-maybe-set-dark-background-mode):
6409         Remove dead code.  (Bug#5546)
6411 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
6413         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
6414         correctly (Bug#5548).
6416 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
6418         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
6419         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
6421 2010-02-08  Kenichi Handa  <handa@m17n.org>
6423         * international/mule-util.el (with-coding-priority): Add autoload
6424         cookie for putting `lisp-indent-function'.
6426 2010-02-07  Glenn Morris  <rgm@gnu.org>
6428         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
6429         Move F2003 named interfaces from keywords-2 to keywords-1, and
6430         use function-name-face rather than constant-face.
6431         Simplify "abstract interface" regexp.
6433 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
6435         * eshell/esh-util.el (eshell-file-attributes): New optional arg
6436         ID-FORMAT.  Pass it to `file-attributes'.
6438         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
6440 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
6442         * faces.el (set-face-attribute): Allow calling
6443         internal-set-lisp-face-attribute with 'unspecified family and
6444         foundry argument (Bug#5536).
6446 2010-02-07  Glenn Morris  <rgm@gnu.org>
6448         * progmodes/f90.el (f90-font-lock-keywords-2)
6449         (f90-looking-at-type-like, f90-looking-at-program-block-end):
6450         Handle F2003 named interfaces.
6452 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
6454         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
6455         beg and end before calling c-get-state-before-change-functions.
6457 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
6459         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
6461 2010-02-05  Juri Linkov  <juri@jurta.org>
6463         * doc-view.el (doc-view-mode):
6464         * image-mode.el (image-mode): Put property mode-class=special.
6465         (Bug#4896)
6467 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
6469         * vc-svn.el (vc-svn-revision-table): New function.
6471 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
6473         * net/ange-ftp.el (ange-ftp-insert-directory):
6474         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
6475         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
6476         Handle also directories.  (Bug#5478)
6478 2010-02-05  Glenn Morris  <rgm@gnu.org>
6480         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
6482 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
6484         * startup.el (command-line-1): Convert options beginning with a
6485         single dash as well (Bug#5519).
6487 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6489         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
6490         * minibuffer.el (completion-initials-expand): Only check the presence
6491         of delims *within* the boundaries, since otherwise the / delim is
6492         always found for files.
6494         Fix up various corner case problems.
6495         * doc-view.el (doc-view-last-page-number): New function.
6496         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
6497         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
6498         (doc-view-kill-proc): Avoid inf-loop in freak cases.
6499         (doc-view-reconvert-doc): Use the new recursive delete-directory.
6500         (doc-view-convert-current-doc): Don't create the resolution.el file
6501         here any more.
6502         (doc-view-pdf/ps->png): Do it here instead.
6503         (doc-view-already-converted-p): Check that resolution.el is present.
6504         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
6505         windows that are not yet showing images.
6507 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
6509         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
6510         `dired-uncache' for every elemnt which is an absolute file name.
6512         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
6513         directory, handle its directory component.
6514         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
6515         function is called permanently and creates noise, otherwise.
6517         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
6518         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
6519         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
6521 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
6523         * macros.el (apply-macro-to-region-lines):
6524         Minor simplification.  (Bug#5485)
6526 2010-02-04  Glenn Morris  <rgm@gnu.org>
6528         * mail/rmail.el (rmail-show-message-1): Handle malformed
6529         quoted-printable text.  (Bug#5441)
6531         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
6533         * simple.el (visual-line-mode): Capitalize lighter.
6535 2010-02-03  John Wiegley  <jwiegley@gmail.com>
6537         * iswitchb.el (iswitchb-completions): Add bookmark files to the
6538         list of files considered for "virtual buffer" completions.
6540 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
6542         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
6543         also in case of (and (not full) (not wildcard)).  This is needed
6544         when dired is called with a list of files, which are not in
6545         `default-directory'.  (Bug#5478)
6547 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6549         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
6551 2010-02-02  Juri Linkov  <juri@jurta.org>
6553         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
6554         from unidiff to allow function-line after @@.
6556 2010-02-02  Juri Linkov  <juri@jurta.org>
6558         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
6559         '(RCS SCCS) with inverted condition.
6561 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
6563         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
6564         messages.
6566 2010-02-01  Juri Linkov  <juri@jurta.org>
6568         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
6569         compare with "pkunzip" and "pkzip" instead of only "pkzip".
6570         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
6571         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
6573 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6575         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
6576         (doc-view-revert-buffer): New command.
6577         (doc-view-mode-map): Use it.
6579 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
6581         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
6582         pending merge is detected.
6584 2010-01-31  Juri Linkov  <juri@jurta.org>
6586         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
6587         beginning of interactive spec like all other grep commands do.
6588         Put "all" in front of "gz".  (Bug#5260)
6590 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
6592         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
6594 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
6596         * dirtrack.el (dirtrack): Warn instead of signalling error if the
6597         regexp is incorrect (Bug#5476).
6599 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
6601         * net/tramp.el (tramp-handle-insert-directory): Handle also
6602         symlinks, when FILENAME is not in `default-directory'.
6604 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
6606         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
6607         FILE is not in `default-directory'.  (Bug#5478)
6609         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
6610         of SWITCHES.  Handle the case, FILENAME is not in
6611         `default-directory'.  (Bug#5478)
6612         (tramp-register-file-name-handlers): Add safe-magic property.
6614 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
6616         * arc-mode.el (archive-zip-extract): Quote the argument passed to
6617         unzip (Bug#5475).
6619 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
6621         * progmodes/flymake.el (flymake-allowed-file-name-masks)
6622         (flymake-master-make-header-init): Add other C++ filename masks.
6623         (flymake-find-possible-master-files)
6624         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
6626 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
6628         Fix some busybox annoyances.
6630         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
6631         not responding." string.
6632         (tramp-open-connection-setup-interactive-shell): Dump stty
6633         settings.  Enable "neveropen" arg for all `tramp-send-command'
6634         calls.  Handle "=" in variable values properly.
6635         (tramp-find-inline-encoding): Raise an error, when no encoding is
6636         found.
6637         (tramp-wait-for-output): Check, whether PROC buffer is available.
6638         Remove spurious " ^H" sequences, sent by busybox.
6639         (tramp-get-ls-command): Suppress coloring, if possible.
6641 2010-01-28  Glenn Morris  <rgm@gnu.org>
6643         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
6645         * log-edit.el (log-edit-strip-single-file-name): Add missing
6646         :safe, :group, and :version tags.
6648 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
6650         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
6651         buffers.  (Bug#5477)
6653 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
6655         * files.el (delete-directory): Handle moving to trash without
6656         first doing recursion (Bug#5436).
6658 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
6660         * vc-hooks.el (vc-path): Mark as obsolete.
6662 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
6664         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
6665         names too.
6667         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
6668         for the short log.
6669         (vc-bzr-log-view-mode): Adjust regexp for the above change.
6671 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
6673         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
6675         * vc-bzr.el (vc-bzr-revision-table): New function.
6677 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
6679         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
6680         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
6682 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
6684         Remove support for adding --signoff on commit.
6685         Future support will use an incompatible generic mechanism.
6686         * vc-git.el (vc-git-add-signoff): Remove variable.
6687         (vc-git-toggle-signoff): Remove function.
6688         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
6690         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
6691         from xterm-set-background-mode.  Return t if the background mode
6692         was set.
6693         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
6694         earlier, call it again in case the background mode has changed.
6696 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
6698         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
6699         (Bug#3541).
6701 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
6703         * emacs-lisp/assoc.el (aelement): Doc fix.
6704         (aput, adelete, amake): Use lexical-let (Bug#5450).
6706 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
6708         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
6709         is the same as subprogram call, not declaration.  (Bug#5435).
6711 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
6713         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
6714         (tramp-smb-maybe-open-connection): Use it.
6716 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
6718         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
6720 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6722         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
6723         just because we see "encoding: 8bit".
6724         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
6726 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
6728         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
6730 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
6732         * jka-compr.el (jka-compr-load): If load-file is not in
6733         load-history, try its file-truename version.  (bug#5447)
6735 2010-01-21  Alan Mackenzie  <acm@muc.de>
6737         Fix a situation where deletion of a cpp construct throws an error.
6738         * progmodes/cc-engine.el (c-invalidate-state-cache):
6739         Before invoking c-with-all-but-one-cpps-commented-out, check that the
6740         special cpp construct is still in the buffer.
6741         (c-parse-state): Record the special cpp with markers, not numbers.
6743 2010-01-21  Kenichi Handa  <handa@m17n.org>
6745         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
6746         process last-command-event, as it is now decoded first (Bug#5380).
6748 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
6750         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
6752 2010-01-20  Glenn Morris  <rgm@gnu.org>
6754         * indent.el (tab-always-indent): Fix custom-type.
6756 2010-01-19  Alan Mackenzie  <acm@muc.de>
6758         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
6759         buffer throws "args out of range".
6760         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
6761         playing the role of delimiter.
6763 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
6765         * progmodes/ada-mode.el: Fix bug#5400.
6766         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
6767         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
6768         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
6769         Improve comments in "is" portion.  Handle null procedure declaration.
6770         (ada-move-to-end): Improve doc string.
6772 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
6774         * ido.el (ido-cur-list): Initialize to nil.
6775         Remove obsolete information from commentary.
6776         (ido-choice-list): Initialize to nil.
6777         (ido-get-bufname): Reject minibuffers.
6778         (ido-make-buffer-list): If "default" is a nonexistent
6779         buffer, ignore it, as per the function's comment.
6780         (ido-kill-buffer-internal): New function.
6781         (ido-kill-buffer-at-head): Use it.
6782         (ido-visit-buffer): Likewise.
6784 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
6786         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
6788 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
6790         * cedet/ede/locate.el (ede-locate-file-in-project)
6791         (ede-locate-file-in-project-impl): Fix typos in docstrings.
6792         (ede-enable-locate-on-project): Fix typos in error messages.
6794         * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
6795         (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
6796         (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
6797         (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
6798         (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
6799         Fix typos in menu help.
6801         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
6802         Fix typos in chart titles.
6804         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
6805         * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
6806         (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
6807         (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
6808         (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
6809         (semantic-parse-stream, semantic-parse-region)
6810         (semantic-parse-region-default, semantic--set-buffer-cache)
6811         (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
6812         (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
6813         (semantic-default-submodes):
6814         * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
6815         (semanticdb-create-ebrowse-database)
6816         (semanticdb-find-tags-for-completion-method)
6817         (semanticdb-find-tags-by-class-method)
6818         (semanticdb-deep-find-tags-by-name-method)
6819         (semanticdb-deep-find-tags-for-completion-method):
6820         * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
6821         (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
6822         (semanticdb-find-tags-for-completion-method)
6823         (semanticdb-find-tags-by-class-method)
6824         (semanticdb-deep-find-tags-for-completion-method):
6825         * cedet/semantic/db-find.el (semanticdb-find-translate-path)
6826         (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
6827         (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
6828         (semanticdb-find-tags-by-name-method)
6829         (semanticdb-find-tags-by-name-regexp-method)
6830         (semanticdb-find-tags-for-completion-method)
6831         (semanticdb-find-tags-by-class-method)
6832         (semanticdb-find-tags-external-children-of-type-method)
6833         (semanticdb-find-tags-subclasses-of-type-method)
6834         (semanticdb-deep-find-tags-by-name-method)
6835         (semanticdb-deep-find-tags-by-name-regexp-method)
6836         (semanticdb-deep-find-tags-for-completion-method):
6837         * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
6838         (semanticdb-enable-gnu-global-in-buffer)
6839         (semanticdb-find-tags-for-completion-method)
6840         (semanticdb-deep-find-tags-by-name-method)
6841         (semanticdb-deep-find-tags-for-completion-method):
6842         * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
6843         (javascript-mode, semanticdb-find-translate-path)
6844         (semanticdb-find-tags-for-completion-method)
6845         (semanticdb-find-tags-by-class-method)
6846         (semanticdb-deep-find-tags-by-name-method)
6847         (semanticdb-deep-find-tags-for-completion-method)
6848         (semanticdb-find-tags-external-children-of-type-method):
6849         * cedet/semantic/idle.el (semantic-idle-work-core-handler)
6850         (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
6851         (global-semantic-idle-scheduler-mode):
6852         * cedet/srecode/dictionary.el (srecode-field-value)
6853         (srecode-dictionary-add-section-dictionary):
6854         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
6855         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
6856         (describe-class, eieio-describe-generic, describe-generic):
6857         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
6858         (eieio-speedbar-expand):
6859         * emulation/viper-cmd.el (viper-exec-form-in-vi)
6860         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
6861         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
6862         (viper-del-backward-char-in-replace, viper-backward-indent)
6863         (viper-brac-function, viper-register-to-point, viper-submit-report):
6864         * net/tramp.el (tramp-remote-coding-commands):
6865         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
6866         Fix typos in docstrings.
6868 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
6870         * mail/sendmail.el (mail-yank-original): Set the mark if the
6871         specified function for yanking does not do it.
6873 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
6875         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
6877         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
6878         resyncing a directory.
6880 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
6882         * progmodes/ada-mode.el: Fix bug#1920.
6883         (ada-ident-re): Delete ., allow multibyte characters.
6884         (ada-goto-label-re): New; matches goto labels.
6885         (ada-block-label-re): New; matches block labels.
6886         (ada-label-re): New; matches both.
6887         (ada-named-block-re): Deleted; callers changed to use
6888         `ada-block-label-re' instead.
6889         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
6890         Use `ada-block-label-re'.
6891         (ada-indent-on-previous-lines): Improve handling of goto labels.
6892         (ada-get-indent-block-start): Special-case block label.
6893         (ada-get-indent-label): Split into `ada-indent-block-label' and
6894         `ada-indent-goto-label'.
6895         (ada-goto-stmt-start, ada-goto-next-non-ws):
6896         Optionally ignore goto labels.
6897         (ada-goto-next-word): Simplify.
6898         (ada-indent-newline-indent-conditional): Insert newline before
6899         trying to fix indentation; doc fix.
6901 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
6903         * calc/calc.el (calc-command-flags): Give it an initial value.
6905 2010-01-17  Glenn Morris  <rgm@gnu.org>
6907         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
6909 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
6911         * cedet/semantic.el (semantic-mode):
6912         * files.el (minibuffer-with-setup-hook):
6913         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
6914         (artist-key-draw-continously, artist-key-do-continously-continously)
6915         (artist-key-set-point-continously, artist-mouse-draw-continously):
6916         Fix typos in docstrings.
6918 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
6920         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
6921         return t (Bug#3898).
6923 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
6925         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
6926         can parse the output of the external commands (Bug#5279).
6928 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
6930         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
6932 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
6934         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
6936         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
6938         * startup.el (command-line): Remove unused --icon-type arg.
6939         Handle --display arg, passing it to command-line-1 (Bug#5392).
6941 2010-01-16  Mario Lang  <mlang@delysid.org>
6943         * cedet/ede/cpp-root.el (ede-cpp-root-project):
6944         * cedet/ede/files.el (ede-expand-filename):
6945         * cedet/ede/simple.el (ede-simple-project):
6946         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
6947         (semantic-complete-inline-tag-engine):
6948         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
6949         * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
6950         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
6951         * cedet/semantic/db.el (semanticdb-equivalent-mode):
6952         * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
6953         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
6954         * emacs-lisp/chart.el (chart-translate-namezone):
6955         * textmodes/artist.el (artist-compute-popup-menu-table):
6956         Remove duplicated words in doc-strings.
6958 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
6960         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
6961         to mairix-search to suppress threading (Bug#5342).
6963 2010-01-15  Kenichi Handa  <handa@m17n.org>
6965         * international/mule-cmds.el (canonicalize-coding-system-name):
6966         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
6968 2010-01-15  Glenn Morris  <rgm@gnu.org>
6970         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
6972         * wid-edit.el (widget-keymap): Doc fix.
6974         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
6975         former seems to be more widely accepted by various svn versions.
6977 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
6979         * find-cmd.el (find-constituents):
6980         * vc-arch.el (vc-arch-root):
6981         * window.el (window-body-height, pop-up-frames):
6982         * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
6983         (semantic-no-reparse-needed-change-hook):
6984         * cedet/srecode/insert.el (srecode-resolve-argument-list)
6985         (srecode-template-inserter-blank, srecode-template-inserter-variable)
6986         (srecode-template-inserter-ask, srecode-template-inserter-width)
6987         (srecode-template-inserter-section-start)
6988         (srecode-template-inserter-section-end, srecode-insert-method):
6989         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
6990         * progmodes/ada-stmt.el (ada-if):
6991         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
6992         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
6993         (ispell-encoding8-command, ispell-aspell-supports-utf8)
6994         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
6996         * progmodes/flymake.el (flymake-post-syntax-check):
6997         Fix typo in error message.
6999 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
7001         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
7002         which is always a string.  (Bug#5313)
7004 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
7006         * progmodes/ada-xref.el (ada-default-prj-properties):
7007         Simplify previous change.
7009 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
7011         * progmodes/ada-xref.el (ada-default-prj-properties):
7012         Default ada_project_path to $ADA_PROJECT_PATH.
7014 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
7016         * progmodes/ada-mode.el (ada-create-keymap):
7017         Override `narrow-to-defun' with `ada-narrow-to-defun'.
7019 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
7021         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
7022         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
7023         (ada-get-current-indent, ada-imenu-generic-expression)
7024         (ada-which-function): Check for it.
7026 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
7028         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
7029         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
7031 2010-01-14  Glenn Morris  <rgm@gnu.org>
7033         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
7035 2010-01-14  Kenichi Handa  <handa@m17n.org>
7037         * composite.el (auto-composition-mode): Make it a buffer local
7038         variable (permanent-local).
7039         (auto-composition-function): Set the default value to
7040         auto-compose-chars.
7041         (auto-composition-mode): Make it a simple function, not a minor mode.
7042         (global-auto-composition-mode): Likewise.
7043         (turn-on-auto-composition-if-enabled): Delete it.
7045 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
7047         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
7049 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
7051         * files.el (copy-directory): Compute target for recursive
7052         directories with identical names.  (Bug#5343)
7054 2010-01-12  Glenn Morris  <rgm@gnu.org>
7056         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
7057         it to bug-gnu-emacs rather than emacs-pretest-bug.
7059 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
7061         * cedet/data-debug.el (data-debug): Fix customization group reference.
7063 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
7065         * cedet/semantic/analyze.el (semantic-analyze-push-error)
7066         (semantic-analyze-context, semantic-analyze-context-assignment)
7067         (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
7068         * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
7069         (semantic-java-doc-keywords-map):
7070         * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
7071         (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
7072         (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
7073         (semantic-c-classname, semantic-format-tag-uml-prototype)
7074         (semantic-c-dereference-namespace, semantic-analyze-type-constants):
7075         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
7076         (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
7077         (semantic-get-local-variables, semantic-end-of-command)
7078         (semantic-beginning-of-command, semantic-ctxt-current-class-list)
7079         (lisp-mode):
7080         * cedet/semantic/bovine/make.el (makefile-mode):
7081         * cedet/semantic/wisent/python.el (wisent-python-string-re)
7082         (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
7083         (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
7084         (semantic-lex, semantic-get-local-variables, python-mode):
7085         * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
7086         * cedet/srecode/extract.el (srecode-extract-state-set)
7087         (srecode-extract-method): Fix typos in docstrings.
7089 2010-01-11  Sam Steingold  <sds@gnu.org>
7091         * imenu.el (imenu-default-create-index-function): Detect infinite
7092         loops caused by imenu-prev-index-position-function.
7094 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
7096         * htmlfontify.el (htmlfontify-load-rgb-file)
7097         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
7098         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
7099         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
7100         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
7101         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
7102         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
7103         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
7104         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
7105         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
7106         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
7107         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
7108         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
7109         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
7110         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
7111         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
7112         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
7113         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
7114         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
7115         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
7116         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
7117         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
7118         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
7119         backslash-quoting from parentheses, etc.
7121 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
7123         * progmodes/js.el: Autoload javascript-mode alias.
7125 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
7127         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
7128         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
7129         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
7130         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
7131         Fix typos in docstrings.
7132         (ffap-url-regexp): Doc fix.
7133         (ffap-at-mouse): Fix typo in message.
7135 2010-01-11  Glenn Morris  <rgm@gnu.org>
7137         * version.el (emacs-copyright): Set copyright year to 2010.
7139 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7141         * format.el (format-annotate-function): Only set
7142         write-region-post-annotation-function after running to-fn so as not to
7143         affect nested write-region calls (bug#5273).
7145 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
7147         * cedet/semantic.el (semantic-new-buffer-setup-functions):
7148         Add python parser.
7150         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
7151         wisent/python.el.
7153 2010-01-10  Richard Kim  <emacs18@gmail.com>
7155         * cedet/semantic/wisent/python-wy.el:
7156         * cedet/semantic/wisent/python.el: New files.
7158 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
7160         * man.el (Man-goto-section): Signal error if the section is not
7161         found (Bug#5317).
7163 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
7165         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
7166         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
7168 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
7170         * progmodes/compile.el: Don't treat compile-command as safe if
7171         compilation-read-command might be nil (Bug#4218).
7173 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
7175         * startup.el (command-line-1): Use orig-argi to check for ignored X and
7176         NS options.
7178 2010-01-08  Kenichi Handa  <handa@m17n.org>
7180         * international/fontset.el (build-default-fontset-data):
7181         Exclude characters in scripts kana, hangul, han, or cjk-misc.
7183 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
7185         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
7186         to `create-file-buffer' as it expects, not just a buffer name.
7187         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
7188         to help uniquify.  (Bug#3224)
7190 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
7192         * font-setting.el (font-setting-change-default-font): Use user-spec
7193         instead of name.
7195 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
7197         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
7199 2010-01-05  Tom Tromey  <tromey@redhat.com>
7201         * progmodes/python.el (python-font-lock-keywords):
7202         Handle qualified decorators (Bug#881).
7204 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
7206         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
7207         in a lightweight checkout.
7209 2010-01-05  Kenichi Handa  <handa@m17n.org>
7211         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
7213 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
7215         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
7217 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
7219         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
7220         checkouts.  (Bug#618)
7221         (vc-bzr-log-view-mode): Also highlight the author.
7222         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
7223         (vc-bzr-shelve-menu-map):
7224         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
7225         (vc-bzr-shelve-apply): Make prompt more explicit.
7227 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
7229         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
7230         They are valid characters in URL paths (rfc3986), and at least
7231         Firefox does not understand the encoded version (Bug#3166).
7233 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
7235         * progmodes/octave-mod.el (octave-end-keywords)
7236         (octave-block-begin-or-end-regexp, octave-block-match-alist):
7237         Add "end" keyword (Bug#3061).
7238         (octave-end-as-array-index-p): New function.
7239         (calculate-octave-indent): Use it.
7241 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7243         * bookmark.el: Consistently put the text property on the bookmark name.
7244         (bookmark-bmenu-marks-width): Bump back to 2, to include
7245         annotation marks.
7246         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
7247         property on the bookmark name, instead of not putting it at all.
7248         (bookmark-bmenu-list): Fix where we put the text property.
7250 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7252         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
7253         for showing buffer modified state (as added in the previous change).
7255 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7257         * bookmark.el: Show modified state of bookmark buffer more accurately.
7258         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
7259         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
7260         (with-buffer-modified-unmodified): New macro.
7261         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7262         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
7263         Use new macro to preserve the buffer modified state.
7265 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7267         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
7268         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
7269         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
7270         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
7271         (bookmark-bmenu-rename, bookmark-bmenu-locate)
7272         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
7273         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
7275 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
7277         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7278         Make the lines in the generated doc string shorter.  (Bug#4668)
7280 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
7282         * net/rcirc.el: Add follow-link binding (Bug#4738).
7284 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
7286         * Makefile.in (bzr-update): Rename from cvs-update.
7287         (cvs-update): New target for backward compatibility.
7289         * makefile.w32-in (bzr-update): Rename from cvs-update.
7290         (cvs-update): New target for backward compatibility.
7292 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7294         * bookmark.el: Remove gratuitous gratitude.
7296 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7298         * bookmark.el (bookmark-bmenu-any-marks): New function.
7299         (bookmark-bmenu-save): Clear buffer modification if no marks.
7301 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7303         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
7304         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
7305         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
7306         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
7308         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
7309         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
7310         To: emacs-devel {_AT_} gnu.org
7311         Subject: bookmark.el bug report
7312         Date: Mon, 28 Dec 2009 14:19:16 +0800
7313         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
7315 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7317         * bookmark.el: Improvements suggested by Drew Adams:
7318         (bookmark-bmenu-ensure-position): New name for
7319         `bookmark-bmenu-check-position'.  Just ensure the position,
7320         don't return any meaningful value.
7321         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
7322         New constants.
7324 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
7326         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
7327         (bookmark-yank-point, bookmark-bmenu-check-position):
7328         Fix typos in docstrings.
7329         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
7330         (bookmark-name-from-full-record, bookmark-get-position)
7331         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
7332         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
7333         Remove useless quoting of parenthesis, etc. in docstrings.
7335         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
7336         (ediff-append-custom-diff): Fix typo in error message.
7337         (ediff-meta-mark-equal-files): Fix typos in messages.
7339         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
7341         * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
7342         Fix typo in docstring.
7344         * net/imap-hash.el (imap-hash-make): Doc fix.
7345         (imap-hash-test): Fix typo in error message; reflow docstring.
7346         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
7347         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
7348         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
7349         Fix typos in docstrings.
7350         (imap-hash-open-connection): Fix typo in error message.
7352         * play/gomoku.el (gomoku): Fix typos in docstring.
7354         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
7355         (gdb-jsonify-buffer): Fix typos in docstring.
7356         (gdb-goto-breakpoint): Fix typo in error message.
7357         ("Display Other Windows"): Fix typo in help message.
7358         (gdb-speedbar-expand-node): Fix typo in question.
7360         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
7361         (idlwave-html-system-help-location, idlwave-html-help-location)
7362         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
7363         (idlwave-help-browser-generic-args, idlwave-help-directory)
7364         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
7365         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
7366         (idlwave-online-help, idlwave-help-html-link)
7367         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
7368         Fix typos in docstrings.
7369         (idlwave-help-with-source, idlwave-help-find-routine-definition):
7370         Reflow docstrings.
7371         (idlwave-help-assistant-start): Fix typo in error message.
7373         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
7374         (octave-electric-space): Fix typos in docstrings.
7376 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
7378         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
7380 2010-01-01  Juri Linkov  <juri@jurta.org>
7382         * comint.el (comint-input-ring-size): Make it a defcustom and
7383         increase the default to 500 (Bug#5148).
7385 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
7387         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
7388         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
7389         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
7391 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
7393         Show working revision correctly for mercurial.
7394         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
7395         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
7397 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
7399         Declare some functions for the byte-compiler.
7400         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
7401         (speedbar-timer-fn, speedbar-change-expand-button-char)
7402         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
7404 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
7406         This changeset reverts GDB Graphical Interface to use annotations.
7407         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
7409 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
7411         Make vc-dir work on subdirectories of the bzr root.
7412         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
7413         file names relative to it.
7414         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
7415         relative directory to vc-bzr-after-dir-status.
7417 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
7419         * font-lock.el (font-lock-refresh-defaults): New function, which
7420         can be used to let font-lock react to external changes in
7421         variables like font-lock-defaults and keywords.
7422         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
7424 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
7426         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
7428         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
7430 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
7432         Supersede color.diff settings in git log (bug#5211).
7434         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
7435         escape chars in its output when the user has color.diff set to `always'.
7436         This fix works on git 1.4.2 and newer (released on 2006-08-13).
7438 2009-12-26  Kevin Ryde  <user42@zip.com.au>
7440         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
7441         node.  Keep previous "Index" name to work with past coreutils too.
7443         * man.el (man): Revise docstring a bit to show -a and -l as
7444         examples.  Add -k description since support for it has otherwise
7445         been a secret.  (Further to bug#3717.)
7446         (Man-bgproc-sentinel): When "-k foo" produces no output show error
7447         "no matches" rather than "Can't find manpage", as the latter reads
7448         like -k was interpreted as a page name, which is not so.  (Bug#5431)
7450 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
7452         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
7453         switches.  Check also for //SUBDIRED// line.
7455 2009-12-25  Kenichi Handa  <handa@m17n.org>
7457         * language/indian.el (devanagari-composable-pattern): Fixed to
7458         handle ZWNJ and ZWJ.  Use it in composition-function-table for
7459         Devanagari.
7460         (malayalam-composable-pattern): Fix previous change.
7462 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7464         * ps-print.el (ps-face-attributes): It was not returning the
7465         attribute face for faces specified as string.  Reported by harven
7466         <harven@free.fr>.  (Bug#5254)
7467         (ps-print-version): New version 7.3.5.
7469 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
7471         * calendar/icalendar.el (icalendar--convert-tz-offset):
7472         Fix timezone names.
7473         (icalendar--convert-tz-offset): Fix the "last-day-problem".
7474         (icalendar--add-diary-entry): Remove the trailing blank that
7475         diary-make-entry inserts.
7477 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
7479         Make `file-expand-wildcards' work for remote files.
7481         * files.el (file-expand-wildcards): In case of remote files, check
7482         only local file name part for wildcards.  Provide feature 'files
7483         and subfeature 'remote-wildcards.  (Bug#5198)
7485         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
7486         if there is already an established connection.
7487         (tramp-advice-file-expand-wildcards): Remove it.
7489         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
7490         (tramp-advice-file-expand-wildcards): Move from tramp.el.
7491         Activate advice for older GNU Emacs versions.  (Bug#5237)
7493 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
7495         Some doc fixes (more needed).
7497         * find-cmd.el (find-constituents): Reflow docstring.
7498         (find-cmd, find-prune, find-command): Fix typos in docstrings.
7499         (find-generic): Doc fix.
7501 2009-12-17  Juri Linkov  <juri@jurta.org>
7503         Fix regression from 23.1 to allow multiple modes in Local Variables.
7505         * files.el (hack-local-variables-filter): While ignoring duplicates,
7506         don't take `mode' into account.
7507         (hack-local-variables-filter, hack-dir-local-variables):
7508         Don't remove duplicate `mode' from local-variables-alist (like `eval').
7510 2009-12-17  Juri Linkov  <juri@jurta.org>
7512         Make `dired-diff' safer.  (Bug#5225)
7514         * dired-aux.el (dired-diff): Signal an error when `file' equals to
7515         `current' or when `file' is a directory of the `current' file.
7517 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
7519         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
7520         unconditionally preloaded files.
7522 2009-12-16  Juri Linkov  <juri@jurta.org>
7524         Revert to old 23.1 logic of using the file at the mark as default.
7525         * dired-aux.el (dired-diff): Use the file at the mark as default
7526         if it's not the same as the current file, and the target dir is
7527         the current dir or the mark is active.  Add the current file
7528         as the arg of `dired-dwim-target-defaults'.  Use the default file
7529         in the prompt.  (Bug#5225)
7531 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
7533         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
7534         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
7535         (tramp-check-for-regexp): Check also, when an echoing shell stops
7536         to echo sent commands.
7538 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
7540         * Makefile.in: Revert last change (Bug#5191).
7542 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
7544         * vc-hg.el (vc-hg-print-log): Fix argument order.
7545         (vc-hg-working-revision): Make sure the command is executed in a
7546         known environment so that we can parse the output.  (Bug#4417)
7548 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
7550         * progmodes/python.el (python-symbol-completions): Remove text
7551         properties from symbol string before calling python-send-receive.
7553 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
7555         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
7556         when there are values for both file and line.  (Bug#5060)
7558 2009-12-14  Juri Linkov  <juri@jurta.org>
7560         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
7561         whitespace after the file name of the first line of unified format,
7562         because git-diff doesn't output whitespace and file modification time
7563         after the file name.
7565 2009-12-14  David Kastrup  <dak@gnu.org>
7567         * info.el (Info-hide-cookies-node): Before hiding a cookie,
7568         check if it already has the `display' property added by
7569         `Info-display-images-node', and not put the `invisible' property
7570         in this case.
7572 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
7574         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
7575         (semantic-mru-bookmark-mode): Doc fixes.
7577         * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
7578         of assert.
7580 2009-12-13  Glenn Morris  <rgm@gnu.org>
7582         * mail/emacsbug.el (message-sort-headers): Define for compiler.
7583         (report-emacs-bug): In message-mode, sort manually before storing
7584         original report text.  (Bug#5178)
7585         Remove superfluous save-excursion.
7587 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
7589         * net/dbus.el (dbus-property-handler): Filter lambda forms out
7590         when responding to "GetAll" properties.
7592 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
7594         * simple.el (compose-mail): Remove mail-setup-with-from from
7595         customization checks.
7597 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
7599         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
7600         RAR archives created on Unix systems.
7602 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7604         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
7605         the varalias that was accidentally removed by the 2009-11-19 change
7606         (bug#5186).
7608 2009-12-12  Kenichi Handa  <handa@m17n.org>
7610         * language/indian.el (indian-compose-regexp): New function.
7611         (malayalam-composable-pattern): Fix the pattern.
7612         (composition-function-table): Set malayalam-composable-pattern for
7613         Malayalam characters.
7615 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
7617         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
7618         rather than down-mouse-1, based on follow-link conventions.
7620         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
7621         are compiled.
7623 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
7625         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
7626         (verilog-vmm-statement-re, verilog-ovm-statement-re)
7627         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
7628         (verilog-leap-to-head, verilog-backward-token):
7629         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
7631 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
7633         * progmodes/verilog-mode.el (verilog-auto-lineup)
7634         (verilog-nameable-item-re): Cleanup user-visible spelling and
7635         documentation errors.  One reported by Gary Delp.
7636         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
7637         (verilog-read-decls): Fix AUTOWIRE with types declared in a
7638         package, bug195.  Reported by Pierre-David Pfister.
7640 2009-12-11  Glenn Morris  <rgm@gnu.org>
7642         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
7644         * mail/emacsbug.el: No longer require sendmail.
7645         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
7646         (report-emacs-bug-orig-text): Doc fix.
7647         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
7648         New local variables, to adapt to different mail-user-agents.
7649         (report-emacs-bug): Fix test for a gnu.org address.
7650         Use overlays for emphasis, since font-lock defeats 'face property.
7651         Pretest bugs also end up at the newsgroup these days.
7652         Stop message-mode stripping text properties.
7653         Set and use the new buffer-local variables.
7654         (report-emacs-bug-hook): Add doc-string.
7655         Remove some unnecessary save-excursions and simplify.
7656         Use the appropriate hook and send-command.
7658         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
7659         capitalization of some menu entries.
7661 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7663         * whitespace.el (whitespace-display-char-on):
7664         Ensure `buffer-display-table' is unique when two or more windows are
7665         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
7666         New version 12.1.
7668 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
7670         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
7671         characters in the Attribute field.
7673 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
7675         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
7677 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7679         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
7680         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7681         Disregard autoload-excludes.
7682         (update-directory-autoloads): Obey autoload-excludes here instead.
7683         But don't store its contents in no-autoloads and remove entries that
7684         refer to excludes files.
7686 2009-12-10  Glenn Morris  <rgm@gnu.org>
7688         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
7689         (expand-mail-aliases): Define for compiler.
7691         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
7692         Define for compiler.
7694         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
7695         appropriate for the mail-user-agent in use.
7697 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
7699         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
7701 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
7703         Fix short log parsing and fontification.
7704         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
7705         Fix fontification for the [merge] label.
7707 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
7709         Drop some properties to avoid surprises (bug#5002).
7710         * htmlfontify.el (hfy-ignored-properties): New defcustom.
7711         (hfy-fontify-buffer): Use it.
7713 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7715         Minor cleanup.
7716         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
7717         Adjust all callers.
7718         (ffap-locate-file): Remove unused arg `dir-ok' and make other
7719         args compulsory.  Adjust callers.
7720         (ffap-gopher-at-point): Remove unused var `name'.
7722         Get rid of the ELCFILES abomination.
7723         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
7724         (compile-elcfiles): New phony target.
7725         (compile-main): Compute ELCFILES dynamically.
7726         (compile-clean): New target to remove left-over elc files.
7727         (compile, all): Use it.
7729 2009-12-09  Kenichi Handa  <handa@etlken>
7731         * international/mule-diag.el: Require help-mode instead of help-fns.
7733 2009-12-09  Kenichi Handa  <handa@m17n.org>
7735         * international/mule-cmds.el (ucs-names): Supply sufficiently
7736         fine ranges instead of pre-calculating accurate ranges.
7737         Iterate with bigger gc-cons-threshold.
7739 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
7741         Add support for stashing a snapshot of the current tree.
7742         * vc-git.el (vc-git-stash-snapshot): New function.
7743         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
7745 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
7747         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
7748         instead of `(beginning|end)-of-line'.
7750 2009-12-08  Glenn Morris  <rgm@gnu.org>
7752         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
7754         * Makefile.in (ELCFILES): Regenerate.
7756 2009-12-07  Juri Linkov  <juri@jurta.org>
7758         Don't lazy-highlight the comint output in history Isearch mode.
7760         * comint.el (comint-history-isearch-search): Instead of
7761         `comint-line-beginning-position', use `comint-after-pmark-p'
7762         to check if point if before the process mark, and go to
7763         `process-mark' in this case.
7765 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7767         * textmodes/tex-mode.el (latex-complete)
7768         (latex-indent-or-complete): Remove.
7769         (latex-mode): Set completion-at-point-functions instead.
7771         Provide a standard completion command and hook it into TAB.
7772         * minibuffer.el (completion-at-point-functions): New var.
7773         (completion-at-point): New command.
7774         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
7775         * progmodes/python.el (python-mode-map): Use completion-at-point.
7776         (python-completion-at-point): Rename from python-partial-symbol and
7777         adjust for use in completion-at-point-functions.
7778         (python-mode): Setup completion-at-point for Python completion.
7779         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
7780         extracted from lisp-complete-symbol.
7781         (lisp-complete-symbol): Use it.
7782         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
7783         setup completion-at-point for Elisp completion.
7784         (emacs-lisp-mode-map, lisp-interaction-mode-map):
7785         Use completion-at-point.
7786         * ielm.el (ielm-map): Use completion-at-point.
7787         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
7788         * progmodes/sym-comp.el: Move to...
7789         * obsolete/sym-comp.el: Move from progmodes.
7791 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
7793         Prevent save-buffer in Rmail buffers from using the coding-system
7794         of the current message, and from clobbering the encoding mnemonics
7795         in the mode line (Bug#4623).
7797         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
7798         flag, too.
7799         (rmail-message-encoding): New variable.
7800         (rmail-write-region-annotate): Record the encoding of the current
7801         message in rmail-message-encoding.
7802         (rmail-after-save-hook): New function, restores the encoding of
7803         the current message after the message collection is saved.
7805 2009-12-07  Juri Linkov  <juri@jurta.org>
7807         * progmodes/grep.el (grep-read-files): Use `completing-read'
7808         instead of `read-string'.  Set its `collection' arg to
7809         `read-file-name-internal'.  (Bug#4301)
7811 2009-12-07  Juri Linkov  <juri@jurta.org>
7813         Correctly restore original Isearch point.  (Bug#4994)
7815         * isearch.el (isearch-mode): Move `isearch-push-state' after
7816         `(run-hooks 'isearch-mode-hook)'.
7817         (isearch-cancel): When `isearch-push-state-function' is defined,
7818         let-bind `isearch-cmds' to the first state (the last element of
7819         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
7820         function and restores the original point).  Otherwise, move point
7821         to `isearch-opoint'.
7823 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7825         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
7826         chars that don't have names, so the table can be built much faster at
7827         run-time.
7829 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
7831         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
7832         change.  Suggested by David Kastrup.
7834         * simple.el (compose-mail): Check for incompatibilities and warn.
7835         (compose-mail-user-agent-warnings): New option.
7837 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
7839         Support showing a single log entry from vc-annotate.
7840         * vc.el (print-log): Add a new argument: START-REVISION.
7841         (vc-print-log-internal): Add a new optional argument and
7842         pass it to the backend.
7843         (vc-print-log, vc-print-root-log): Adjust callers.
7844         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
7845         buffer already displays the requested log entry, use it.
7846         Otherwise display only the log entry in question.
7847         * vc-svn.el (vc-svn-print-log):
7848         * vc-mtn.el (vc-mtn-print-log):
7849         * vc-hg.el (vc-hg-state):
7850         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
7851         (vc-git-show-log-entry): Return t on success.
7852         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
7853         (vc-bzr-show-log-entry): Return t on success.
7854         * vc-rcs.el (vc-rcs-print-log):
7855         * vc-sccs.el (vc-sccs-print-log):
7856         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
7858 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
7860         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
7861         Add menus to the meta mode.  (Bug#5043)
7863 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
7865         * ediff-init.el (ediff-event-key): Use event-to-character instead of
7866         event-key.
7868         * ediff.el (ediff-buffers-internal): Add unwind-protect.
7870 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
7872         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
7873         Berbain <raphael.berbain@gmail.com>.
7875         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
7876         characters.
7877         (tramp-initial-end-of-output): New defconst.
7878         (tramp-methods, tramp-find-shell)
7879         (tramp-open-connection-setup-interactive-shell)
7880         (tramp-maybe-open-connection): Use it.
7881         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
7882         existence of `#' and `$'.
7884         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
7885         `tramp-initial-end-of-output'.
7887 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
7889         Get the background mode from the terminal for xterm, and set
7890         faces accordingly.
7891         * term/xterm.el (xterm-set-background-mode): New function.
7892         (terminal-init-xterm): Use it in case xterm supports background
7893         color queries.  Recompute faces after getting the background
7894         color.
7896 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
7898         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
7899         number comment back on its own line, for easier parsing.
7901 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7903         Make it work for non-file buffers (bug#5102).
7904         * doc-view.el (doc-view-current-cache-dir):
7905         Use doc-view-buffer-file-name rather than buffer-file-name.
7906         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
7908 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
7910         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
7911         author field is too short.
7913 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
7915         * vc-git.el (vc-git-print-log): Handle a limit argument.
7916         Display the short log in graph form and with labels.
7917         (vc-git-log-view-mode): Handle labels.
7919         Make vc-revert change VC state from 'added to 'unregistered.
7920         * vc-git.el (vc-git-revert): Call git reset first.
7922 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
7924         * net/newst-backend.el, net/newst-plainview.el:
7925         * net/newst-reader.el, net/newst-ticker.el:
7926         * net/newst-treeview.el, net/newsticker.el:
7927         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
7929 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
7931         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
7933         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
7934         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
7935         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
7936         Update annotation regexp.
7938         * simple.el (beginning-of-visual-line): Constrain to field
7939         boundaries (Bug#5106).
7941 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
7943         * xml.el (xml-substitute-numeric-entities): Move
7944         newsticker--decode-numeric-entities in newst-backend.el to
7945         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
7946         * net/newst-backend.el (newsticker--parse-generic-feed)
7947         (newsticker--parse-generic-items)
7948         (newsticker--decode-numeric-entities): Move
7949         newsticker--decode-numeric-entities in newst-backend.el to
7950         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
7952 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
7954         * progmodes/js.el (js--js-not): Add null to the list of values.
7956 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
7958         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
7960 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7962         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
7963         delimiter if it is at the end of the current line.
7964         (bibtex-generate-url-list): Fix docstring.
7966 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7968         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
7969         minibuffer's content with itself.
7970         Fold the confirm-after-completion case into the `confirm' case.
7971         (completion-pcm-word-delimiters): Add : and / to the delimiters.
7973 2009-12-06  Kevin Ryde  <user42@zip.com.au>
7975         * ffap.el (ffap-rfc-path): Make this a defcustom since
7976         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
7978         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
7979         manuals, similar to existing setup for help-mode.  (Bug#3913.)
7981 2009-12-05  Juri Linkov  <juri@jurta.org>
7983         Save and restore dired buffer's point positions too.  (Bug#4880)
7985         * dired.el (dired-save-positions): Return in the first element
7986         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
7987         Doc fix.
7988         (dired-restore-positions): First restore buffer's position.
7989         While restoring window's positions, check if window still displays
7990         the original buffer.
7992 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
7994         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
7995         if possible.
7997         * cedet/semantic/ia.el (semantic-ia-complete-symbol):
7998         Make argument optional.
8000         * shell.el (shell): Require ansi-color (Bug#5113).
8002         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
8004         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
8006 2009-12-05  Alan Mackenzie  <acm@muc.de>
8008         * progmodes/cc-mode.el (c-before-hack-hook)
8009         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
8010         `c-file-style' to work again.  This reversion restores the current
8011         software to its state in Emacs 23.1.  (Bug#4146)
8013 2009-12-05  Kevin Ryde  <user42@zip.com.au>
8015         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
8016         comment-start-skip to comment-end-skip as comment (Bug#4781).
8018 2009-12-05  Juri Linkov  <juri@jurta.org>
8020         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
8021         for virtual nodes.  (Bug#4147)
8022         (Info-find-node-2): Set `Info-current-node-virtual' to nil
8023         when moving from a virtual node.
8024         (Info-mode-menu): Add `Info-virtual-index' to the menu.
8025         (Info-mode): Add `Info-virtual-index' to the docstring.
8027 2009-12-05  Eric Ludlam  <zappo@gnu.org>
8029         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
8030         Describe project macro symbols.
8032         * cedet/semantic/complete.el (semantic-complete-do-completion):
8033         Don't call semantic-collector-current-exact-match.
8035         * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
8036         ede-objects as targets.
8038         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
8039         a target's object list even if compiler vars are already in the
8040         Makefile.
8042         * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
8043         list of headers producing necessary macros.
8045 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
8047         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
8048         track of the buffer position of the end of a BibTeX entry as this
8049         position may change during reformatting.
8050         (bibtex-format-entry): Remove whitespace before processing
8051         numerical fields so that we recognize the latter properly.
8052         (bibtex-reformat): Do not use push which changes the global value
8053         of bibtex-entry-format.
8054         (bibtex-field-braces-alist, bibtex-field-strings-alist)
8055         (bibtex-field-re-init): Replace only space characters by regexp
8056         for whitespace.
8057         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
8058         (bibtex-initialize): Also update bibtex-strings.
8059         (bibtex-kill-field): Preserve white space at end of entry.
8060         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
8061         Update bibtex-reference-keys.
8063 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8065         * minibuffer.el (completion-pcm--merge-try): Also consider placing
8066         point after a star, if that's the only place where modifications can
8067         make progress.
8069 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
8071         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
8072         in docstrings.
8074 2009-12-04  Juri Linkov  <juri@jurta.org>
8076         * proced.el (proced): Call `(proced-update t)' to update process
8077         information instead of only running proced-post-display-hook.
8078         (proced-send-signal): Add a leading space to the buffer name
8079         " *Marked Processes*" to make this buffer ephemeral.
8081 2009-12-04  Juri Linkov  <juri@jurta.org>
8083         * dired.el (dired-auto-revert-buffer): New defcustom.
8084         (dired-internal-noselect): Use it.
8086 2009-12-04  Juri Linkov  <juri@jurta.org>
8088         Change roles of modes and functions in image-mode.el (Bug#5062).
8090         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
8091         in `auto-mode-alist'.
8092         (image-mode-previous-major-mode): New variable.
8093         (image-minor-mode-map): Rename from `image-mode-text-map'.
8094         (image-mode): Move graceful error-handling code from
8095         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
8096         (image-minor-mode): Remove all image-handling code.
8097         Replace `image-mode-text-map' with `image-minor-mode-map'.
8098         Check for `image-type' in mode-line format string.
8099         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
8100         (image-mode-as-text): New function with most code from
8101         `image-mode-maybe'.
8102         (image-toggle-display-text): Move code that removes image
8103         properties from `image-toggle-display' to here.
8104         (image-toggle-display-image): New function with code that adds
8105         image properties copied from `image-toggle-display'.
8106         (image-toggle-display): Remove most code with leaving only code
8107         that toggles between `image-mode-as-text' and `image-mode'.
8109 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
8111         * net/newst-treeview.el
8112         (newsticker--treeview-list-highlight-start): Restored call to
8113         save-excursion: Selected item was stuck.
8114         (newsticker--treeview-list-select): New.
8115         (newsticker--treeview-item-show-text)
8116         (newsticker--treeview-item-show)
8117         (newsticker--treeview-item-update): Use new
8118         newsticker-treeview-item-mode.
8119         (newsticker-treeview-update): Keep current item.
8120         (newsticker-treeview-next-new-or-immortal-item): Doc change.
8121         (newsticker--treeview-first-feed): Doc change.
8122         (newsticker-treeview-list-menu)
8123         (newsticker-treeview-item-menu): Added menu entries.
8124         (newsticker-treeview-item-mode): New.
8126         * net/newst-backend.el (newsticker-customize): Delete other
8127         windows.
8129 2009-12-04  Sam Steingold  <sds@gnu.org>
8131         * log-view.el (log-view-mode-map): "q" calls quit-window,
8132         like in all the other non-self-insert buffers.
8134 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8136         Minor cleanup.
8137         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
8138         key decoding rather than do it manually via last-input-event +
8139         ascii-character.
8140         (term-exec): Use delete-and-extract-region.
8141         (term-handle-ansi-terminal-messages): Remove unused var `end'.
8142         (term-process-pager): Remove unused var `i'.
8143         (term-dynamic-simple-complete): Make obsolete.
8144         (serial-update-config-menu): Remove unused vars `y' and `str'.
8145         (term-update-mode-line): Remove unused var `temp'.
8147 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
8149         Limit the number of log entries displayed by default.
8150         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
8151         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
8152         using a prefix argument.
8154 2009-12-03  Glenn Morris  <rgm@gnu.org>
8156         * progmodes/idlwave.el (class): Restore still useful declaration.
8158 2009-12-03  Alan Mackenzie  <acm@muc.de>
8160         Enhance `c-parse-state' to run efficiently in "brace deserts".
8162         * progmodes/cc-mode.el (c-basic-common-init):
8163         Call c-state-cache-init.
8164         (c-neutralize-syntax-in-and-mark-CPP): Rename from
8165         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
8166         placing `category' properties value 'c-cpp-delimiter at its boundaries.
8168         * progmodes/cc-langs.el (c-before-font-lock-function):
8169         c-extend-and-neutralize-syntax-in-CPP has been renamed
8170         c-neutralize-syntax-in-and-mark-CPP.
8172         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
8173         with `category' properties now, not `syntax-table' ones.
8175         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
8176         enhanced (but slower) version of c-end-of-macro that won't land
8177         inside a literal or on another awkward character.
8178         (c-state-cache-too-far, c-state-cache-start)
8179         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
8180         (c-state-nonlit-pos-cache-limit, c-state-point-min)
8181         (c-state-point-min-lit-type, c-state-point-min-lit-start)
8182         (c-state-min-scan-pos, c-state-brace-pair-desert)
8183         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
8184         buffer local variables.
8185         (c-state-literal-at, c-state-lit-beg)
8186         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
8187         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
8188         (c-state-cache-top-paren, c-state-cache-after-top-paren)
8189         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
8190         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
8191         (c-renarrow-state-cache)
8192         (c-append-lower-brace-pair-to-state-cache)
8193         (c-state-push-any-brace-pair, c-append-to-state-cache)
8194         (c-remove-stale-state-cache)
8195         (c-remove-stale-state-cache-backwards, c-state-cache-init)
8196         (c-invalidate-state-cache-1, c-parse-state-1)
8197         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
8198         (c-parse-state): Enhance and refactor.
8199         (c-debug-parse-state): Amend to deal with all the new variables.
8201         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
8202         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
8203         modify to use category text properties rather than syntax-table ones.
8204         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
8205         to switch off/on the syntactic paren property of C++ template
8206         delimiters using the category property.
8207         (c-with-<->-as-parens-suppressed): Macro to invoke code with
8208         template delims suppressed.
8209         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
8210         New constant/macros which apply category properties to the start
8211         and end of preprocessor constructs.
8212         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
8213         "comment out" the syntactic value of characters in preprocessor
8214         constructs.
8215         (c-with-cpps-commented-out)
8216         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
8217         with characters in all or all but one preprocessor constructs
8218         "commented out".
8220 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
8222         * proced.el (proced-filter-alist): Use regexp-quote.
8224 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
8226         Cleanup.
8227         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
8228         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
8229         arguments.  Expand `default-directory'.
8231         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
8232         the benefit of returning an expanded localname.
8233         (tramp-tramp-file-p): Handle the case NAME is not a string.
8235 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
8237         Add support for bzr shelve/unshelve.
8238         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
8239         (vc-bzr-extra-menu-map): New variables.
8240         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
8241         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
8242         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
8243         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
8244         (vc-bzr-dir-extra-headers): Display shelves.
8246         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
8248 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8250         * textmodes/bibtex.el (bibtex-complete-internal):
8251         Use completion-in-region.
8252         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
8254 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
8256         Support applying stashes.  Improve UI.
8257         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
8258         (vc-git-stash-apply, vc-git-stash-pop)
8259         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
8260         (vc-git-stash-menu): New functions.
8261         (vc-git-stash-menu-map): New variable.
8262         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
8264 2009-12-03  Glenn Morris  <rgm@gnu.org>
8266         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
8267         (vc-print-log-internal): Fix previous change.
8268         (vc-revert): Correct pluralization.
8270 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8272         * progmodes/make-mode.el (makefile-special-targets-list): No need for
8273         it to be an alist any more.
8274         (makefile-complete): Use completion-in-region.
8276         * progmodes/octave-mod.el (octave-complete-symbol):
8277         Use completion-in-region.
8279         Misc cleanup.
8280         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
8281         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
8282         (idlwave-complete-class): Don't quote lambda.
8283         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
8284         (idlwave-mode-map): Move initialization into declaration.
8285         (idlwave-action-and-binding): Use backquotes.
8286         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
8287         Simplify.
8288         (idlwave-is-pointer-dereference): Remove unused var `pos'.
8289         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
8290         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
8291         `parts', and `all-parts'.
8292         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
8293         (idlwave-convert-xml-system-routine-info): Remove unused string
8294         `version-string'.
8295         (idlwave-display-user-catalog-widget): Use dolist.
8296         (idlwave-scanning-lib): Declare dynamically-scoped var.
8297         (idlwave-scan-library-catalogs): Remove unused var `flags'.
8298         (completion-highlight-first-word-only): Declare to silence bytecomp.
8299         (idlwave-popup-select): Tighten scope of `resp'.
8300         (idlwave-find-struct-tag): Remove unused var `beg'.
8301         (idlwave-after-load-rinfo-hook): Declare.
8302         (idlwave-sintern-class-info): Remove unused var `taglist'.
8303         (idlwave-find-class-definition): Remove unused var `list'.
8304         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
8305         (idlwave-what-module-find-class): Remove unused var `classes'.
8307 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
8309         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
8311 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8313         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
8314         buffers visited.  Remove redundant current-buffer-saving.
8316 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8318         Use completion-in-buffer and remove uses of dynamic scoping.
8319         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
8320         (pascal-buffer-to-use, pascal-flag): Don't declare.
8321         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
8322         (pascal-get-completion-decl, pascal-keyword-completion):
8323         Add `pascal-str' argument, save-excursion,
8324         return the found completions, and don't filter with pascal-pred.
8325         (pascal-completion-cache): New var.
8326         (pascal-completion): Don't switch buffer any more (it was never
8327         necessary).  Don't save-excursion any more (it's done by the called
8328         subroutines).  Use a cache to avoid redundant computations.
8329         Use complete-with-action rather than pascal-completion-response and
8330         let it apply the predicate as well.
8331         (pascal-complete-word): Use completion-in-buffer when
8332         pascal-toggle-completions is nil.
8333         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
8334         not used any more.
8335         (pascal-comp-defun): Don't change buffer any more.
8336         Use complete-with-action rather than pascal-completion-response and
8337         let it apply the predicate as well.
8338         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
8339         when neded.
8341 2009-12-02  Kenichi Handa  <handa@m17n.org>
8343         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
8344         shape for all Indic scripts.
8346 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8348         Use completion-in-buffer.
8349         * wid-edit.el (widget-field-text-end): New function.
8350         (widget-field-value-get): Use it.
8351         (widget-string-complete, widget-file-complete)
8352         (widget-color-complete): Use it and completion-in-region.
8353         (widget-complete): Don't narrow the buffer.
8355 2009-12-02  Glenn Morris  <rgm@gnu.org>
8357         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
8358         (rmail-select-summary): Use rmail-pop-to-buffer.
8359         * mail/rmailsum.el: Replace all pop-to-buffer calls with
8360         rmail-pop-to-buffer, to prevent horizontal splits.
8362         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
8363         save-excursion with save-current-buffer.
8364         Widen before searching.  (Bug#5093)
8365         (diary-list-sexp-entries): Remove superfluous save-excursion.
8367 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
8369         * woman.el (woman-make-bufname): Handle man-pages with "." in the
8370         name.  (Bug#5038)
8372 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
8374         * ido.el (ido-file-internal): Handle filenames at point that do
8375         not have a directory part.  (Bug#5049)
8377 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
8379         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
8380         (mpc-songs-jump-to, mpc-resume): Doc fixes.
8382 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
8384         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
8385         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
8386         any more.
8388 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8390         * comint.el (comint-insert-input): Ignore clicks to the right of
8391         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
8393         * vc.el (vc-print-log-internal): Don't wait for the process to
8394         terminate before setting up the major mode.
8396         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
8397         in case.
8399         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
8400         the last element.
8402         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
8404 2009-12-01  Glenn Morris  <rgm@gnu.org>
8406         * window.el (window--display-buffer-2): Fix previous changes.
8408 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
8410         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
8412 2009-12-01  Glenn Morris  <rgm@gnu.org>
8414         * Makefile.in (ELCFILES): Add mpc.elc.
8416 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8418         * mpc.el: New file.
8420 2009-12-01  Glenn Morris  <rgm@gnu.org>
8422         * window.el (window-to-use): Define for compiler.
8424         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
8425         consistent with others (no final period).
8427         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
8428         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
8430 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
8432         Make vc-print-log buttons work.
8433         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
8435 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
8437         * savehist.el (savehist-autosave-interval): Allow setting to nil
8438         through customize.  (Bug#5056)
8440 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
8442         Fix references to jit-lock properties.
8443         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
8444         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
8445         (perl-font-lock-special-syntactic-constructs):
8446         Quote jit-lock-defer-multiline property.
8448 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
8450         * vc-git.el (vc-git-registered): Call vc-git-root only once.
8452 2009-11-30  Juri Linkov  <juri@jurta.org>
8454         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
8455         value `buffer' of `multi-isearch-next-buffer-current-function'.
8456         Use `(current-buffer)' when `buffer' is nil.
8457         (multi-isearch-next-buffer-from-list): Don't fallback to
8458         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
8460 2009-11-30  Juri Linkov  <juri@jurta.org>
8462         * misearch.el (multi-isearch-read-buffers): Move canonicalization
8463         of buffers with `get-buffer' to `multi-isearch-buffers'.
8464         (multi-isearch-buffers, multi-isearch-buffers-regexp):
8465         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
8466         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
8467         FILES with `expand-file-name' converting relative file names
8468         to absolute.  Doc fix.  (Bug#4727)
8470 2009-11-30  Juri Linkov  <juri@jurta.org>
8472         * misearch.el (multi-isearch-read-buffers)
8473         (multi-isearch-read-matching-buffers): New functions.
8474         (multi-isearch-buffers, multi-isearch-buffers-regexp):
8475         Use them in the `interactive' spec.  Doc fix.
8476         (multi-isearch-read-files, multi-isearch-read-matching-files):
8477         New functions.
8478         (multi-isearch-files, multi-isearch-files-regexp):
8479         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
8481 2009-11-30  Juri Linkov  <juri@jurta.org>
8483         * doc-view.el (doc-view-continuous):
8484         Rename from `doc-view-continuous-mode'.
8485         (doc-view-menu): Move "Toggle display" to the top.
8486         Add submenu "Continuous" with radio buttons "Off"/"On"
8487         and "Save as Default".
8488         (doc-view-scroll-up-or-next-page)
8489         (doc-view-scroll-down-or-previous-page)
8490         (doc-view-next-line-or-next-page)
8491         (doc-view-previous-line-or-previous-page): Rename
8492         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
8494 2009-11-30  Juri Linkov  <juri@jurta.org>
8496         * comint.el (comint-mode-map): Rebind `M-r' from
8497         `comint-previous-matching-input' to
8498         `comint-history-isearch-backward-regexp'.
8499         Unbind `M-s' to allow global key binding `M-s'.
8500         Add menu items for `comint-history-isearch-backward' and
8501         `comint-history-isearch-backward-regexp'.  (Bug#3746)
8503 2009-11-30  Juri Linkov  <juri@jurta.org>
8505         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
8506         For def=recenter, replace `recenter' with `recenter-top-bottom'
8507         that is called with `this-command' and `last-command' let-bound
8508         to `recenter-top-bottom'.  When the last `def' was not `recenter',
8509         set `recenter-last-op' to nil.  (Bug#4981)
8511 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8513         Minor cleanup and simplification.
8514         * filecache.el (file-cache-add-directory)
8515         (file-cache-add-directory-recursively)
8516         (file-cache-add-from-file-cache-buffer)
8517         (file-cache-delete-file-regexp, file-cache-delete-directory)
8518         (file-cache-files-matching-internal, file-cache-display): Use dolist.
8519         (file-cache-temp-minibuffer-message): Delete function.
8520         (file-cache-minibuffer-complete): Use minibuffer-message instead.
8522         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
8523         Don't signal an error when bumping into EOB in tr, s, or y.
8525 2009-11-29  Juri Linkov  <juri@jurta.org>
8527         * startup.el (fancy-about-text): Fix wording of Guided Tour.
8528         (Bug#4960)
8530         * descr-text.el (describe-char-unidata-list): Use lowercase name
8531         for "Unicode name" like in other tags.
8533 2009-11-29  Juri Linkov  <juri@jurta.org>
8535         * ediff-util.el (ediff-minibuffer-with-setup-hook):
8536         New compatibility macro.
8537         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
8539 2009-11-29  Juri Linkov  <juri@jurta.org>
8541         Add defcustom to define the cycling order of `recenter-top-bottom'.
8542         (Bug#4981)
8544         * window.el (recenter-last-op): Doc fix.
8545         (recenter-positions): New defcustom.
8546         (recenter-top-bottom): Rewrite to use `recenter-positions'.
8547         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
8549 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
8551         Improve integration of Tramp and ange-ftp in eshell.
8553         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
8554         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
8555         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
8557         * eshell/esh-util.el (top): Require also Tramp when compiling.
8558         (eshell-directory-files-and-attributes): Check for FTP remote
8559         connection.
8560         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
8561         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
8562         (eshell-file-attributes): Handle ".".  Return `entry'.
8564         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
8565         (ange-ftp-directory-files-and-attributes)
8566         (ange-ftp-real-directory-files-and-attributes): New defuns.
8568         * net/tramp.el (tramp-maybe-open-connection): Open the remote
8569         shell with "exec" when possible.  This prevents trailing prompts
8570         in `start-file-process'.
8572 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8574         Try and remove assumptions about point-min==1.
8575         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
8576         (rng-compute-mode-line-string): Show the validation percentage in
8577         terms of the narrowed text, not the widened text.
8578         (rng-do-some-validation): Don't catch internal errors when debugging.
8579         (rng-first-error): Simplify.
8580         (rng-after-change-function): Remove work around.  AFAIK the bug has
8581         been fixed a while ago.
8583         * image-mode.el (image-minor-mode): Exit more gracefully when the image
8584         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
8586         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
8588         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
8589         `cd' doesn't always do it for us (bug#5067).
8591         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
8592         on 2009-10-25 as part of some other change (bug#5067).
8594 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8596         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
8597         `suspicious'.
8598         (byte-compile-warnings): Use byte-compile-warning-types.
8599         (byte-compile-save-excursion): Warn about use of set-buffer right
8600         after save-excursion.
8602         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
8603         the excursion as well.
8605 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
8607         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
8608         providing a Tramp related implementation of "su" and "sudo".
8609         (eshell-unix-initialize): Add "su" and "sudo".
8611 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
8613         * net/socks.el (socks-send-command): Convert binary request to
8614         unibyte before sending.  This fixes mishandling of some port
8615         numbers such as 129.
8617 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8619         * help.el (describe-bindings-internal): Remove `interactive'.
8621         * man.el (Man-completion-table): Trim a terminating "(".
8622         Remove the space between name page a section.
8623         Add the command's description on the `help-echo' property.
8624         Remove `process-connection-type' binding since it's unused by
8625         call-process.
8626         Provide completion for the "<section> <name>" format as well.
8627         (Man-default-man-entry): Remove spurious var shadowing the argument.
8629 2009-11-26  Kevin Ryde  <user42@zip.com.au>
8631         * log-view.el: Add "Keywords: tools", since its other keywords
8632         aren't in finder-known-keywords, and following vc.el.
8634         * sha1.el (sha1-string-external): default-directory "/" in case
8635         otherwise non-existent.  process-connection-type pipe for touch of
8636         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
8638 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8640         Misc coding convention cleanups.
8641         * htmlfontify.el (hfy-init-kludge-hook): Rename from
8642         hfy-init-kludge-hooks.
8643         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
8644         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
8645         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
8646         and push.
8647         (hfy-slant, hfy-weight): Use tables rather than code.
8648         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
8649         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
8650         (hfy-face-attr-for-class): Initialize `face-spec' directly.
8651         (hfy-face-to-css): Remove `nconc' with single arg.
8652         (hfy-p-to-face-lennart): Use `or'.
8653         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
8654         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
8655         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
8656         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
8657         (hfy-force-fontification): Use run-hooks.
8659 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
8661         Various minor fixes.
8662         * htmlfontify.el (hfy-default-header): Add toggle_invis since
8663         Javascript belongs in the header, not the body.
8664         (hfy-javascript): Remove.
8665         (hfy-fontify-buffer): Don't insert it any more.
8666         (hfy-face-at): Handle (face0 face1 face2) style face properties.
8667         Fix bug in invis handling when there were no invis props in a chunk.
8669 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8671         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
8673 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
8675         * finder.el (finder-mode-map): Add a menu.
8677 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
8679         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
8680         "unsigned" structs.
8682         (verilog-leap-to-head, verilog-backward-token): Handle "disable
8683         fork" statement better.
8685 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
8687         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
8688         (verilog-delete-auto, verilog-delete-empty-auto-pair)
8689         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
8690         Reported by Clay Douglass.
8692         (verilog-auto-inst, verilog-auto-star-safe)
8693         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
8694         Fix removing "// Interfaces" when saving .* expansions.  Reported by
8695         Pierre-David Pfister.
8697 2009-11-26  Glenn Morris  <rgm@gnu.org>
8699         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
8700         the scope.
8702 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
8704         * vc-annotate.el (vc-annotate-revision-previous-to-line):
8705         Really use previous revision.
8707 2009-11-25  Kevin Ryde  <user42@zip.com.au>
8709         * man.el (Man-completion-table): default-directory "/" in case
8710         doesn't otherwise exist.  process-environment COLUMNS=999 so as
8711         not to truncate long names.  process-connection-type pipe to avoid
8712         any chance of hitting the pseudo-tty TIOCGWINSZ.
8713         (man): completion-ignore-case t for friendliness and since man
8714         itself is case-insensitive on the command line.
8715         Further to Bug#3717.
8717         * arc-mode.el: Add "Keywords: files", so the details in its
8718         commentary can be reached from finder-by-keyword.
8719         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
8720         editing mode, but it's comms related and sgml-mode.el has "comm"
8721         on that basis too.
8722         * textmodes/bibtex-style.el: Add "Keywords: tex".
8723         * international/isearch-x.el, international/ja-dic-cnv.el:
8724         * international/ja-dic-utl.el, international/kkc.el:
8725         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
8727 2009-11-25  Juri Linkov  <juri@jurta.org>
8729         * man.el (Man-completion-table): Modify regexp to include
8730         section names to completion strings.  (Bug#3717)
8732 2009-11-25  Juri Linkov  <juri@jurta.org>
8734         Search recursively in gzipped files.  (Bug#4982)
8736         * progmodes/grep.el (grep-highlight-matches): Add new options
8737         `always' and `auto'.  Doc fix.
8738         (grep-process-setup): Check `grep-highlight-matches' for
8739         `auto-detect' to determine the need to compute grep defaults.
8740         Move Windows/DOS specific --colors settings handling
8741         to `grep-compute-defaults'.  Check `grep-highlight-matches'
8742         to get the value of "--color=".
8743         (grep-compute-defaults): Compute `grep-highlight-matches' when it
8744         has the value `auto-detect'.  Move Windows/DOS specific settings
8745         from `grep-process-setup'.
8746         (zrgrep): New command with alias `rzgrep'.
8748 2009-11-25  Juri Linkov  <juri@jurta.org>
8750         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
8751         to nil instead of switching off view-mode.  (Bug#4896)
8753 2009-11-25  Juri Linkov  <juri@jurta.org>
8755         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
8757         * mwheel.el (mwheel-scroll-up-function)
8758         (mwheel-scroll-down-function): New defvars.
8759         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
8760         `scroll-up', and `mwheel-scroll-down-function' instead of
8761         `scroll-down'.
8763         * doc-view.el (doc-view-scroll-up-or-next-page)
8764         (doc-view-scroll-down-or-previous-page): Add optional ARG.
8765         Use this ARG in the call to image-scroll-up/image-scroll-down.
8766         Change `interactive' spec to "P".  Goto next/previous page only
8767         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
8768         SPC/DEL case).  Doc fix.
8769         (doc-view-next-line-or-next-page)
8770         (doc-view-previous-line-or-previous-page): Rename arg to ARG
8771         for consistency.
8772         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
8773         `doc-view-scroll-up-or-next-page', and buffer-local
8774         `mwheel-scroll-down-function' to
8775         `doc-view-scroll-down-or-previous-page'.
8777 2009-11-25  Juri Linkov  <juri@jurta.org>
8779         Provide additional default values (directories at other Dired
8780         windows) via M-n in the minibuffer of some Dired commands.
8782         * dired-aux.el (dired-diff, dired-compare-directories)
8783         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
8784         `minibuffer-default' in `minibuffer-with-setup-hook'.
8785         (dired-dwim-target-directory): Find a window that displays Dired
8786         buffer instead of failing when the next window is not Dired.
8787         Use `get-window-with-predicate' to find for the next Dired window.
8788         (dired-dwim-target-defaults): New function.
8790         * ediff-util.el (ediff-read-file-name):
8791         Use `dired-dwim-target-defaults' to set `minibuffer-default'
8792         in `minibuffer-with-setup-hook'.
8794 2009-11-25  Juri Linkov  <juri@jurta.org>
8796         Provide additional default values (file name at point or at the
8797         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
8799         * minibuffer.el (read-file-name-defaults): New function.
8800         (read-file-name): Reset `minibuffer-default' to nil when
8801         it duplicates initial input `insdef'.
8802         Bind `minibuffer-default-add-function' to lambda that
8803         calls `read-file-name-defaults' in `minibuffer-selected-window'.
8804         (minibuffer-insert-file-name-at-point): New command.
8806         * files.el (file-name-at-point-functions): New defcustom.
8807         (find-file-default): Remove defvar.
8808         (find-file-read-args): Don't use `find-file-default'.
8809         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
8810         to `read-file-name'.
8811         (find-file-literally): Use `read-file-name' with
8812         `confirm-nonexistent-file-or-buffer'.
8814         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
8816         * dired.el (dired-read-dir-and-switches):
8817         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
8818         to `read-file-name'.
8819         (dired-file-name-at-point): New function.
8820         (dired-mode): Add hook `dired-file-name-at-point' to
8821         `file-name-at-point-functions'.
8823 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8825         Really make the *Completions* window soft-dedicated (bug#5030).
8826         * window.el (window--display-buffer-2): Add `dedicated' argument.
8827         (display-buffer): Pass it when needed so the dedicated flag is set
8828         after calling set-window-buffer, which would otherwise reset it.
8830 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8832         * progmodes/meta-mode.el (meta-complete-symbol):
8833         * progmodes/etags.el (complete-tag):
8834         * mail/mailabbrev.el (mail-abbrev-complete-alias):
8835         Use completion-in-region.
8837         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
8838         (dabbrev-completion): Use completion-in-region.
8839         (dabbrev--abbrev-at-point): Simplify regexp.
8841         * abbrev.el (abbrev--before-point): Use word-motion functions
8842         if :regexp is not specified (bug#5031).
8844         * subr.el (string-prefix-p): New function.
8846         * man.el (Man-completion-cache): New var.
8847         (Man-completion-table): Use it.
8849         * vc.el (vc-print-log-internal): Make `limit' optional for better
8850         compatibility (e.g. with vc-annotate.el).
8852 2009-11-24  Kevin Ryde  <user42@zip.com.au>
8854         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
8855         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
8857         * emacs-lisp/elint.el (elint-add-required-env): Better error message
8858         when .el source file not found or other error.
8860 2009-11-24  Markus Triska  <markus.triska@gmx.at>
8862         * linum.el (linum-update-window): Ignore intangible (bug#4996).
8864 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8866         Handle the [back] button properly (bug#4979).
8867         * descr-text.el (describe-text-properties): Add a `buffer' argument.
8868         Use help-setup-xref, help-buffer, and with-help-window.
8869         (describe-char): Add `buffer' argument.
8870         Pass proper command to help-setup-xref.  Don't meddle with
8871         help-xref-stack-item directly.
8872         (describe-text-category): Use with-help-window and help-buffer.
8874         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
8875         for the displayed buffer (bug#4887).
8877         * man.el (Man-completion-table): New function.
8878         (man): Use it.
8880 2009-11-24  David Reitter  <david.reitter@gmail.com>
8882         * vc-git.el (vc-git-registered): Use checkout directory (where
8883         .git is) rather than the file's directory and a relative path spec
8884         to work around a bug in git.
8886 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
8888         Improve handling of processes on remote hosts.
8890         * eshell/esh-util.el (eshell-path-env): New defvar.
8891         (eshell-parse-colon-path): New defun.
8892         (eshell-file-attributes): Use `eshell-parse-colon-path'.
8894         * eshell/esh-ext.el (eshell-search-path):
8895         Use `eshell-parse-colon-path'.
8896         (eshell-remote-command): Remove argument HANDLER.
8897         (eshell-external-command): Check for FTP remote connection.
8899         * eshell/esh-proc.el (eshell-gather-process-output):
8900         Use `file-truename', in order to start also symlinked files.
8901         Apply `start-file-process' instead of `start-process'.
8902         Shorten `command' to the local file name part.
8904         * eshell/em-cmpl.el (eshell-complete-commands-list):
8905         Use `eshell-parse-colon-path'.
8907         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
8909         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
8910         to `eshell-directory-change-hook'.
8912 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
8914         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
8915         because it could be enabled automatically if view-read-only is non-nil.
8917 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
8919         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
8920         made on 2009-11-22.
8922 2009-11-24  Glenn Morris  <rgm@gnu.org>
8924         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
8925         deleted variable bookmark-bmenu-bookmark-column.
8927         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
8928         Move after definition of global-semantic-idle-tag-highlight-mode.
8930 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8932         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
8934 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
8936         * net/browse-url.el (browse-url-filename-alist): On Windows, add
8937         two slashes to the "file:" prefix.
8938         (browse-url-file-url): De-munge Cygwin filenames before passing
8939         them to Windows browser.
8940         (browse-url-default-windows-browser): Use call-process.
8942 2009-11-23  Juri Linkov  <juri@jurta.org>
8944         Implement DocView Continuous mode.  (Bug#4896)
8945         * doc-view.el (doc-view-continuous-mode): New defcustom.
8946         (doc-view-mode-map): Bind C-n/<down> to
8947         `doc-view-next-line-or-next-page', C-p/<up> to
8948         `doc-view-previous-line-or-previous-page'.
8949         (doc-view-next-line-or-next-page)
8950         (doc-view-previous-line-or-previous-page): New commands.
8952 2009-11-23  Juri Linkov  <juri@jurta.org>
8954         Implement Isearch in comint input history.  (Bug#3746)
8955         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
8956         `isearch-mode-hook'.
8957         (comint-history-isearch): New defcustom.
8958         (comint-history-isearch-backward)
8959         (comint-history-isearch-backward-regexp): New commands.
8960         (comint-history-isearch-message-overlay): New buffer-local variable.
8961         (comint-history-isearch-setup, comint-history-isearch-end)
8962         (comint-goto-input, comint-history-isearch-search)
8963         (comint-history-isearch-message, comint-history-isearch-wrap)
8964         (comint-history-isearch-push-state)
8965         (comint-history-isearch-pop-state): New functions.
8967 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
8969         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
8970         return.
8971         (tramp-handle-make-symbolic-link)
8972         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
8973         Quote file names.
8974         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
8975         (tramp-handle-process-file): Use it.
8977 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8979         * window.el (move-to-window-line-last-op): Remove.
8980         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
8982 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
8984         Make M-r mirror the new cycling behavior of C-l.
8985         * window.el (move-to-window-line-last-op): New var.
8986         (move-to-window-line-top-bottom): New command.
8987         (global-map): Bind M-r move-to-window-line-top-bottom.
8989 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
8991         * dired-x.el (dired-guess-shell-alist-default):
8992         Support xz format.  (Bug#4953)
8994 2009-11-22  Chong Yidong  <cyd@stupidchicken.com>
8996         * cedet/srecode/map.el (srecode-get-maps):
8997         * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
8998         * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
8999         * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
9000         (semantic-toggle-decoration-style):
9001         * cedet/semantic/decorate/include.el
9002         (semantic-decoration-include-describe)
9003         (semantic-decoration-unknown-include-describe)
9004         (semantic-decoration-unparsed-include-describe)
9005         (semantic-decoration-all-include-summary):
9006         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
9007         * cedet/semantic/analyze/complete.el
9008         (semantic-analyze-possible-completions):
9009         * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
9010         (semantic-show-unmatched-syntax-mode)
9011         (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
9012         (semantic-highlight-func-mode):
9013         * cedet/semantic/util.el (semantic-describe-buffer):
9014         * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
9015         (semantic-symref-find-tags-by-name)
9016         (semantic-symref-find-tags-by-regexp)
9017         (semantic-symref-find-tags-by-completion)
9018         (semantic-symref-find-file-references-by-name)
9019         (semantic-symref-find-text):
9020         * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
9021         (senator-yank-tag):
9022         * cedet/semantic/scope.el (semantic-calculate-scope):
9023         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
9024         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
9025         (define-semantic-idle-service):
9026         * cedet/semantic/complete.el (semantic-complete-analyze-inline)
9027         (semantic-complete-analyze-inline-idle):
9028         * cedet/semantic/analyze.el (semantic-analyze-current-context):
9029         * cedet/mode-local.el (describe-mode-local-bindings)
9030         (describe-mode-local-bindings-in-mode):
9031         * cedet/ede/make.el (ede-make-check-version):
9032         * cedet/ede/locate.el (ede-enable-locate-on-project):
9033         * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
9034         (cedet-idutils-version-check):
9035         * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
9036         (cedet-gnu-global-version-check):
9037         * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
9038         (cedet-cscope-version-check): Use called-interactively-p instead
9039         of interactive-p.
9041         * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
9042         Use semantic-format-tag-prototype.
9044 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
9046         * emulation/viper-cmd.el: Use viper-last-command-char instead of
9047         last-command-char/last-command-event.
9048         (viper-prefix-arg-value): Do correct conversion of event-char for
9049         XEmacs.
9051         * emulation/viper-util.el, emulation/viper.el:
9052         Use viper-last-command-char instead of
9053         last-command-char/last-command-event.
9055         * ediff-init.el, ediff-mult.el, ediff-util.el:
9056         Replace last-command-char and last-command-event
9057         with (ediff-last-command-char) everywhere.
9059         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
9060         created in fundamental mode.
9062         * ediff.el (ediff-version): Revert the change of interactive-p to
9063         called-interactively-p.
9065 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
9067         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
9068         generation from word-movement command names.
9070 2009-11-21  Chong Yidong  <cyd@stupidchicken.com>
9072         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
9073         (semantic-complete-jump-local, semantic-complete-jump):
9074         Improve prompt string.
9076 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
9078         * cus-start.el (all): Add native condition for font-use-system-font.
9080 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
9082         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9083         Correct the patch from 2009-11-18.  (Bug#3910)
9085 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
9087         * progmodes/subword.el: Rename from lisp/subword.el.
9089         * subword.el: Rename to progmodes/subword.el.
9091         * Makefile.in (ELCFILES): Adapt to subword.el move.
9093 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
9094             Stefan Monnier  <monnier@iro.umontreal.ca>
9096         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
9097         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
9098         (bookmark-bmenu-show-filenames): Use push.
9099         (bookmark-bmenu-hide-filenames): Use local var instead of
9100         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
9101         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
9102         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
9103         filenames now that the bookmark names are always available.
9105 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9107         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
9108         (bookmark-search-pattern): Move and leave unbound.
9109         (bookmark-bmenu-mode-map): Change binding.
9110         (bookmark-read-search-input): Simplify.
9111         Don't use text-char-description.  Don't error on non-char events.
9112         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
9113         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
9114         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
9115         Use a local var for the timer.
9116         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
9117         (i.e. bookmark-bmenu-search).
9119 2009-11-21  Glenn Morris  <rgm@gnu.org>
9121         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
9123 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
9125         * net/browse-url.el (browse-url-default-windows-browser):
9126         Use cygstart for cygwin.
9128 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
9130         * bookmark.el: Formatting and doc fixes only:
9131         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
9132         (bookmark-bmenu-search): Wrap to fit within 80 columns.
9133         Minor grammar and punctuation fixes in doc string.
9134         (bookmark-read-search-input): Adjust to fit within 80 columns.
9136 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
9138         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
9139         (c-backward-into-nomenclature): Adapt to subword renaming.
9141         * subword.el (subword-forward, subword-backward, subword-mark)
9142         (subword-kill, subword-backward-kill, subword-transpose)
9143         (subword-downcase, subword-upcase, subword-capitalize)
9144         (subword-forward-internal, subword-backward-internal):
9145         Rename from forward-subword, backward-subword, mark-subword,
9146         kill-subword, backward-kill-subword, transpose-subwords,
9147         downcase-subword, upcase-subword, capitalize-subword,
9148         forward-subword-internal, backward-subword-internal.
9150 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
9152         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
9153         New options.
9154         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
9155         New vars.
9156         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
9157         (bookmark-bmenu-filter-alist-by-regexp)
9158         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
9159         (bookmark-bmenu-search): New command.
9160         (bookmark-bmenu-mode-map): Bind it.
9162 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
9164         * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
9166         * cedet/semantic/idle.el (define-semantic-idle-service)
9167         (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
9169 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
9171         * progmodes/cc-cmds.el: declare-functioned forward-subword and
9172         backward-subword to quit the byte-compiler.
9174         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
9176         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
9178         * progmodes/cc-cmds.el (c-update-modeline)
9179         (c-forward-into-nomenclature, c-backward-into-nomenclature):
9180         Refer to subword.el functions instead of cc-subword.el.
9182         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
9183         subword.el functions instead of cc-subword.el.
9185         * progmodes/cc-subword.el: Rename to subword.el.
9186         * subword.el: Rename from progmodes/cc-subword.el.
9187         (subword-mode-map): Rename from c-subword-mode-map.
9188         (subword-mode): Rename from c-subword-mode.
9189         (global-subword-mode): New global minor mode.
9190         (forward-subword): Rename from c-forward-subword.
9191         (backward-subword): Rename from c-backward-subword.
9192         (mark-subword): Rename from c-mark-subword.
9193         (kill-subword): Rename from c-kill-subword.
9194         (backward-kill-subword): Rename from c-backward-kill-subword.
9195         (transpose-subwords): Rename from c-tranpose-subword.
9196         (downcase-subword): Rename from c-downcase-subword.
9197         (capitalize-subword): Rename from c-capitalize-subword.
9198         (forward-subword-internal): Rename from c-forward-subword-internal.
9199         (backward-subword-internal): Rename from c-backward-subword-internal.
9201 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
9203         * vc.el (vc-deduce-fileset): Allow non-state changing operations
9204         from a dired buffer.
9205         (vc-dired-deduce-fileset): New function.
9206         (vc-root-diff, vc-print-root-log): Use it.
9208         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
9209         nil LIMIT argument to vc-print-log-internal.
9211 2009-11-20  Glenn Morris  <rgm@gnu.org>
9213         * Makefile.in (ELCFILES): Regenerate.
9215 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
9217         * cedet/cedet.el (cedet-menu-map): Re-order menu items.
9219         * cedet/semantic.el: Enable idle-mode menu items only if
9220         global-semantic-idle-scheduler-mode is enabled.
9221         (semantic-default-submodes): Doc fix.
9223         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
9224         When turning off, disable other idle modes.
9226 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
9228         * calc/calc.el (calc-set-mode-line):
9229         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9230         (math-format-number): Rename `math-format-complement-signed' to
9231         `math-format-twos-complement'.
9233         * calc/calc-bin.el (math-format-twos-complement): Rename from
9234         math-format-complement-signed.
9235         (calc-radix): Rename `calc-complement-signed-mode' to
9236         `calc-twos-complement-mode'.
9237         (calc-octal-radix, calc-hex-radix): Add an argument for
9238         two's complement.
9240         * calc/calc-embed.el (calc-embedded-mode-vars):
9241         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9243         * calc/calc-ext.el (calc-init-extensions):
9244         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9245         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
9247         * calc/calc-units.el (math-build-units-table-buffer):
9248         Let `calc-twos-complement-mode' be nil.
9250         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
9251         entries.
9253         * calc/calc-vec.el (calcFunc-vunpack):
9254         * calc/calc-aent.el (calc-do-calc-eval):
9255         * calc/calc-forms.el (math-format-date):
9256         * calc/calc-graph.el (calc-graph-plot):
9257         * calc/calc-math.el (math-use-emacs-fn):
9258         * calc/calccomp.el (math-compose-expr):
9259         Let `calc-twos-complement-mode' be nil.
9261 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9263         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
9264         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
9265         * minibuffer.el (completion-in-region-functions): New hook.
9266         (completion-in-region): New function.
9267         * emacs-lisp/lisp.el (lisp-complete-symbol):
9268         * pcomplete.el (pcomplete-std-complete): Use it.
9270 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9272         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
9273         (latex-complete-alist): New vars.
9274         (latex-string-prefix-p, latex-complete-bibtex-keys)
9275         (latex-complete-envnames, latex-complete-refkeys)
9276         (latex-complete-data): New functions.
9277         (latex-complete, latex-indent-or-complete): New commands.
9279         * window.el (display-buffer-mark-dedicated): New var.
9280         (display-buffer): Obey it.
9281         * minibuffer.el (minibuffer-completion-help): Use it.
9283         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
9285         * filecache.el (file-cache-add-file): Use push and cons.
9286         (file-cache-delete-file-regexp): Use push.
9287         (file-cache-complete): Use completion-in-region.
9289         * simple.el (with-wrapper-hook): Fix thinko.
9291         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
9292         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
9293         Use with-current-buffer and string-to-number.
9294         (hfy-fallback-colour-values): Use assoc-string.
9295         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
9296         (hfy-face-at): Remove unused var `found-face'.
9297         (hfy-compile-stylesheet): Remove unused var `css'.
9298         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
9299         and `orig-buffer'.
9300         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
9301         Use with-current-buffer.
9302         (hfy-text-p): Use expand-file-name and fewer setq.
9304 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
9306         * htmlfontify.el, hfy-cmap.el: New files.
9308 2009-11-19  Juri Linkov  <juri@jurta.org>
9310         * minibuffer.el (completions-format): New defcustom.
9311         (completion--insert-strings): Implement vertical format.
9313         * simple.el (switch-to-completions): Move point to the first
9314         completion when point was at the beginning of the buffer.
9316 2009-11-19  Juri Linkov  <juri@jurta.org>
9318         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
9320         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
9322 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
9324         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
9325         (mail-signature): Change default to t.
9326         (mail-from-style): Deprecate `system-default' value.
9327         (mail-insert-from-field): For default value of mail-from-style,
9328         default to `angles' unless `angles' needs quoting and `parens'
9329         does not.
9330         (mail-citation-prefix-regexp): Use citation regexp from
9331         message-mode.
9333 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
9335         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
9336         Set variables for computing the prompt for reading password.
9338 2009-11-19  Glenn Morris  <rgm@gnu.org>
9340         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
9342         * textmodes/flyspell.el (sgml-lexical-context): Declare.
9344         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
9345         (newsticker-treeview-listwindow-height): Fix custom type.
9347 2009-11-19  Kenichi Handa  <handa@m17n.org>
9349         * descr-text.el (describe-char-padded-string): Compose with TAB
9350         only if there's a font for CH.
9351         (describe-char): Fix the condition for detecting a trivial composition.
9353 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
9355         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
9356         more accurate version of the regexp.  (Bug#3910)
9358 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
9360         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
9362 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
9364         * font-setting.el (font-use-system-font): Declare for byte-compiler.
9365         (font-setting-change-default-font): Fix typo in docstring.
9367 2009-11-18  Alan Mackenzie  <acm@muc.de>
9369         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
9371 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
9373         * font-setting.el (font-use-system-font): Move ...
9375         * cus-start.el (all): ... to here.
9377 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
9379         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
9380         Don't set `ad-return-value' if `ad-do-it' doesn't.
9382         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
9383         modification time.
9385 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
9387         * menu-bar.el: Put "Use system font" in Option-menu.
9388         (menu-bar-options-save): Add font-use-system-font.
9390         * loadup.el: If feature system-font-setting or font-render-setting is
9391         there, load font-setting.
9393         * Makefile.in (ELCFILES): Add font-settings.el.
9394         * font-setting.el: New file.
9396 2009-11-17  Glenn Morris  <rgm@gnu.org>
9398         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
9400         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
9401         Preserve point in the list buffer.  (Bug#4939)
9402         Use point-at-eol.
9403         (newsticker--treeview-list-update-highlight)
9404         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
9406 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
9408         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
9409         Remove.
9411         * calc/calc-ext.el (calc-init-extensions): Remove references to
9412         symclip.
9414         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
9416         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
9417         * calc/calc-help.el (calc-b-prefix-help): Remove references to
9418         `calc-symclip'.
9420 2009-11-16  Kevin Ryde  <user42@zip.com.au>
9422         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
9423         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
9425         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
9426         (lm-keywords-list): Allow comma-only separator like "foo,bar".
9427         Ignore trailing spaces by omit-nulls to split-string (fixing
9428         regression from Emacs 21 due to the incompatible split-string
9429         change).  (Bug #4928.)
9431 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
9433         * vc.el (vc-log-show-limit): Default to 2000.
9434         (vc-print-log-internal): Insert buttons to request more entries
9435         when limiting the output.
9437         * vc-sccs.el (vc-sccs-print-log):
9438         * vc-rcs.el (vc-rcs-print-log):
9439         * vc-cvs.el (vc-cvs-print-log):
9440         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
9441         LIMIT is non-nil.
9443 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
9445         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
9446         error when `tramp-gvfs-dbus-event-vector' is set.
9447         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
9449 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9451         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
9453 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
9455         * net/dbus.el (dbus-unregister-service): New defun.
9456         (dbus-register-property): Register the handlers of
9457         "org.freedesktop.DBus.Properties" for SERVICE.
9458         (dbus-property-handler): Fix docstring.
9460 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9462         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
9463         Quote doc string reference in defvaralias as it is not in special form.
9464         (byte-compile-output-docform): Doc fix.
9466 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
9468         * calc/calc.el (math-2-word-size, math-half-2-word-size)
9469         (calc-complement-signed-mode): New variables.
9470         (calc-set-mode-line): Add indicator for twos-complements.
9471         (math-format-number): Format twos-complement notation.
9473         * calc/calc-bin.el (calc-word-size): Reset the variables
9474         `math-2-word-size' and `math-half-2-word-size'.
9475         (math-format-complement-signed, math-symclip, calcFunc-symclip)
9476         (calc-symclip): New functions.
9478         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
9480         * calc/calc-embed.el (calc-embedded-mode-vars):
9481         Add `calc-complement-signed-mode' to the list of modes.
9483         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
9484         (calc-b-oper-keys): Add `calc-symclip' to list.
9486         * calc/calc-ext.el (math-read-number-fancy): Read complement
9487         signed numbers.
9488         (calc-init-extensions): Add binding for `calc-symclip'.
9489         Add autoload for `calcFunc-symclip' and `calc-symclip'.
9491         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
9492         `calc-symclip'.
9493         (calc-modes-menu): Add item for twos complement mode.
9495         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
9497 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
9499         * register.el (jump-to-register, insert-register): Handle Semantic
9500         tags.  From commented-out advice in semantic/senator.el.
9502 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
9504         * vc.el (vc-log-show-limit): New variable.
9505         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
9506         when using a prefix argument.
9507         (vc-print-log-internal): Add new argument LIMIT.
9509         * vc-svn.el (vc-svn-print-log):
9510         * vc-mtn.el (vc-mtn-print-log):
9511         * vc-hg.el (vc-hg-print-log):
9512         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
9513         pass it to the log command when set.  Make the BUFFER argument
9514         non-optional.
9516         * vc-sccs.el (vc-sccs-print-log):
9517         * vc-rcs.el (vc-rcs-print-log):
9518         * vc-git.el (vc-git-print-log):
9519         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
9520         ignore it.  Make the BUFFER argument non-optional
9522         * bindings.el (mode-line-buffer-identification): Do not purecopy.
9524 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
9526         * dired.el (dired-mode-map): Move encryption items to "Operate"
9527         menu (Bug#4703).
9529         * strokes.el (strokes-update-window-configuration): Make strokes
9530         buffer current before erasing (Bug#4906).
9532         * cedet/semantic/idle.el (semantic-idle-summary-mode)
9533         (semantic-idle-summary-mode): Define using define-minor-mode
9534         instead of define-semantic-idle-service.
9535         (semantic-idle-summary-mode): New function.
9536         (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
9537         that mouse motion does not reset the echo area.
9539 2009-11-15  Juri Linkov  <juri@jurta.org>
9541         * simple.el (set-mark-default-inactive): Add :type, :group
9542         and :version.  (Bug#4876)
9544 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
9546         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
9547         (archive-unique-fname): ... here.  (Bug#4929)
9549 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9551         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
9552         with a real fix.
9554         * novice.el (disabled-command-function): Add useful args.
9555         Setup the help buffer so that [back] works.
9556         Remove redundant call to help-mode.
9557         (disabled-command-function): Use `case'.
9558         (en/disable-command): New function extracted from enable-command.
9559         (enable-command, disable-command): Use it.
9561 2009-11-14  Glenn Morris  <rgm@gnu.org>
9563         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
9564         constants.  (Bug#4913)
9566         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
9568 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
9570         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
9571         defined in C that have no doc-strings.  (Bug#1063)
9573 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
9575         * cus-edit.el (data, files):
9576         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
9578 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
9580         * simple.el (shell-command): Doc fix (Bug#4891).
9582         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
9584 2009-11-14  Glenn Morris  <rgm@gnu.org>
9586         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
9587         statements for vc-diff, emerge-quit, and rmail-cease-edit.
9588         If they are already loaded, eval-after-load will do the right thing.
9590         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
9591         compiling.
9593         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
9595         * simple.el (x-selection-owner-p): Declare.
9596         (read-mail-command): Use custom radio type rather than choice.
9597         (completion-no-auto-exit): Doc fix.
9599         * custom.el (defgroup):
9600         * epg-config.el (epg): Doc fixes.
9602 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
9604         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
9605         * international/ccl.el (define-ccl-program): Do not purecopy the
9606         docstring, defconst does it anyway.
9608 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9610         * add-log.el (add-change-log-entry): Avoid displaying the changelog
9611         a second time.
9613         * x-dnd.el (x-dnd-maybe-call-test-function):
9614         * window.el (split-window-vertically):
9615         * whitespace.el (whitespace-help-on):
9616         * vc-rcs.el (vc-rcs-consult-headers):
9617         * userlock.el (ask-user-about-lock-help)
9618         (ask-user-about-supersession-help):
9619         * type-break.el (type-break-force-mode-line-update):
9620         * time-stamp.el (time-stamp-conv-warn):
9621         * terminal.el (te-set-output-log, te-more-break, te-filter)
9622         (te-sentinel, terminal-emulator):
9623         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
9624         (term-write-input-ring, term-check-source, term-start-output-log):
9625         (term-display-buffer-line, term-dynamic-list-completions):
9626         (term-ansi-make-term, serial-term):
9627         * subr.el (selective-display):
9628         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
9629         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
9630         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
9631         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
9632         (speedbar-remove-localized-speedbar-support)
9633         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
9634         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
9635         (speedbar-buffers-line-directory):
9636         * simple.el (shell-command-on-region, append-to-buffer)
9637         (prepend-to-buffer):
9638         * shadowfile.el (shadow-save-todo-file):
9639         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
9640         (scroll-bar-maybe-set-window-start):
9641         * sb-image.el (speedbar-image-dump):
9642         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
9643         (load-save-place-alist-from-file):
9644         * ps-samp.el (ps-print-message-from-summary):
9645         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
9646         (ps-background-image, ps-begin-job, ps-do-despool):
9647         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
9648         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
9649         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
9650         (pr-call-process, pr-file-list, pr-interface-save):
9651         * novice.el (disabled-command-function)
9652         (enable-command, disable-command):
9653         * mouse.el (mouse-buffer-menu-alist):
9654         * mouse-copy.el (mouse-kill-preserving-secondary):
9655         * macros.el (kbd-macro-query):
9656         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
9657         * informat.el (batch-info-validate):
9658         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
9659         * hippie-exp.el (try-expand-dabbrev-visible):
9660         * help-mode.el (help-make-xrefs):
9661         * help-fns.el (describe-variable):
9662         * generic-x.el (bat-generic-mode-run-as-comint):
9663         * finder.el (finder-mouse-select):
9664         * find-dired.el (find-dired-sentinel):
9665         * filesets.el (filesets-file-close):
9666         * files.el (list-directory):
9667         * faces.el (list-faces-display, describe-face):
9668         * facemenu.el (list-colors-display):
9669         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
9670         * epg.el (epg--process-filter, epg-cancel):
9671         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
9672         (epa--read-signature-type):
9673         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
9674         (emerge-file-names):
9675         * ehelp.el (electric-helpify):
9676         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
9677         * ediff-vers.el (rcs-ediff-view-revision):
9678         * ediff-util.el (ediff-setup):
9679         * ediff-mult.el (ediff-append-custom-diff):
9680         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
9681         (ediff-wordify):
9682         * echistory.el (Electric-command-history-redo-expression):
9683         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
9684         * disp-table.el (describe-display-table):
9685         * dired.el (dired-find-buffer-nocreate):
9686         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
9687         * dabbrev.el (dabbrev--same-major-mode-p):
9688         * chistory.el (list-command-history):
9689         * apropos.el (apropos-documentation):
9690         * allout.el (allout-obtain-passphrase):
9691         (allout-copy-exposed-to-buffer):
9692         (allout-verify-passphrase): Use with-current-buffer.
9694 2009-11-13  Glenn Morris  <rgm@gnu.org>
9696         * Makefile.in (ELCFILES): Regenerate.
9698 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
9700         * net/dbus.el (dbus-registered-objects-table): Rename from
9701         `dbus-registered-functions-table', because it contains also properties.
9702         (dbus-unregister-object): Unregister also properties.
9703         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
9704         Use a timeout of 500 msec, in order to not block.
9705         (dbus-register-property, dbus-property-handler): New defuns.
9707 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9709         * simple.el (minibuffer-default-add-completions): Drop deprecated
9710         4th arg.
9712 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
9714         * textmodes/artist.el (artist-mouse-choose-operation):
9715         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
9716         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
9717         (artist-compute-up-event-key): New function.
9718         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
9720 2009-11-13  Kenichi Handa  <handa@m17n.org>
9722         * language/japan-util.el: Make sure that the value of jisx0208
9723         property is jisx0208 character.
9725 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
9727         * international/mule.el (auto-coding-regexp-alist): Only purecopy
9728         car or each item, not the whole list.
9730 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9732         * minibuffer.el (minibuffer-completion-help):
9733         Use minibuffer-hide-completions.
9735 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
9737         * dired.el (dired-save-positions, dired-restore-positions): New funs.
9738         (dired-revert): Use them (bug#4880).
9740 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
9742         * tooltip.el (tooltip-frame-parameters): Undo previous change.
9744 2009-11-12  Juri Linkov  <juri@jurta.org>
9746         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
9747         New functions.
9748         (find-file-literally-at-point): Alias of `ffap-literally'.
9750 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
9752         * textmodes/ispell.el (ispell-skip-region-alist):
9753         * textmodes/css-mode.el (auto-mode-alist):
9754         * progmodes/compile.el (auto-mode-alist):
9755         * international/mule.el (ctext-non-standard-encodings-alist)
9756         (ctext-non-standard-encodings-regexp):
9757         * simple.el (shell-command-switch, text-read-only):
9758         * replace.el (occur-mode-map):
9759         * paths.el (rmail-file-name):
9760         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
9761         * find-file.el (ff-special-constructs):
9762         * files.el (file-name-handler-alist):
9763         * composite.el: Purecopy strings.
9765         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
9767 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
9769         * widget.el (define-widget): Purecopy the docstring.
9770         * international/mule-cmds.el (charset): Do not purecopy the
9771         docstring here, define-widget does it.
9773         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
9774         * textmodes/bibtex-style.el (auto-mode-alist):
9775         * progmodes/inf-lisp.el (inferior-lisp-prompt):
9776         * progmodes/compile.el (compile-command):
9777         * language/korea-util.el (default-korean-keyboard):
9778         * international/mule-conf.el (file-coding-system-alist):
9779         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
9780         * tooltip.el (tooltip-frame-parameters):
9781         * newcomment.el (comment-end, comment-padding):
9782         * dired.el (dired-trivial-filenames):
9783         * comint.el (comint-file-name-prefix): Purecopy initial values.
9785 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
9787         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
9788         (tramp-advice-minibuffer-electric-tilde): Unload advices via
9789         `tramp-unload'.
9790         (tramp-advice-make-auto-save-file-name)
9791         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
9792         after removing the advice.
9794 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
9796         * progmodes/grep.el (grep-regexp-alist):
9797         * international/mule-cmds.el (iso-2022-control-alist):
9798         * emacs-lisp/timer.el (timer-duration-words):
9799         * subr.el (version-separator, version-regexp-alist):
9800         * minibuffer.el (completion-styles-alist):
9801         * faces.el (face-attribute-name-alist, list-faces-sample-text):
9802         Change defvars to defconsts.
9804         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
9805         * loadup.el ("international/mule-conf"): Load the byte compiled version.
9806         * international/mule-conf.el: Allow to be byte compiled.
9808         * international/mule.el (define-charset): Purecopy props.
9809         (load-with-code-conversion): Purecopy doc string and file name.
9810         (put-charset-property): Purecopy strings.
9811         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
9813         * international/mule-cmds.el (register-input-method): Purecopy arguments.
9814         (define-char-code-property): Correctly purecopy the table.
9816         * international/ccl.el (define-ccl-program): Purecopy the docstring.
9818         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
9820         * subr.el (add-hook): Purecopy strings.
9821         (eval-after-load): Purecopy load-history-regexp and the form.
9823         * custom.el (custom-declare-group): Purecopy load-file-name.
9825         * subr.el (menu-bar-separator): New defconst.
9826         * net/eudc.el (eudc-tools-menu):
9827         * international/mule-cmds.el (set-coding-system-map)
9828         (mule-menu-keymap):
9829         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
9830         * vc-hooks.el (vc-menu-map):
9831         * replace.el (occur-mode-map):
9832         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
9833         (menu-bar-edit-menu, menu-bar-goto-menu)
9834         (menu-bar-custom-menu, menu-bar-showhide-menu)
9835         (menu-bar-options-menu, menu-bar-tools-menu)
9836         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
9837         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
9838         (menu-bar-help-menu):
9839         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
9840         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
9842         * term/x-win.el (x-gtk-stock-map):
9843         * progmodes/vera-mode.el (auto-mode-alist):
9844         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
9845         (inferior-lisp-program, inferior-lisp-load-command):
9846         * progmodes/hideshow.el (hs-special-modes-alist):
9847         * progmodes/gud.el (same-window-regexps):
9848         * progmodes/grep.el (grep-program, find-program, xargs-program):
9849         * net/telnet.el (same-window-regexps):
9850         * net/rlogin.el (same-window-regexps):
9851         * language/ethiopic.el (font-ccl-encoder-alist):
9852         * vc-sccs.el (vc-sccs-master-templates):
9853         * vc-rcs.el (vc-rcs-master-templates):
9854         * subr.el (cl-assertion-failed):
9855         * simple.el (next-error-overlay-arrow-position):
9856         * lpr.el (lpr-command):
9857         * locate.el (locate-ls-subdir-switches):
9858         * info.el (same-window-regexps, info)
9859         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
9860         * image-mode.el (image-mode, auto-mode-alist):
9861         * hippie-exp.el (hippie-expand-ignore-buffers):
9862         * format.el (format-alist):
9863         * find-dired.el (find-ls-subdir-switches, find-grep-options)
9864         (find-name-arg):
9865         * facemenu.el (facemenu-keybindings):
9866         * dired.el (dired-listing-switches, dired-chown-program):
9867         * diff.el (diff-switches, diff-command):
9868         * cus-edit.el (same-window-regexps):
9869         * bindings.el (mode-line-mule-info)
9870         (mode-line-buffer-identification): Purecopy strings.
9872 2009-11-11  Juri Linkov  <juri@jurta.org>
9874         * simple.el (dired-get-filename) <declare-function>:
9875         Tell the byte-compiler about dired-get-filename.
9876         (shell-command): In Dired mode, get filename from the current line
9877         as the default value.
9879 2009-11-10  Glenn Morris  <rgm@gnu.org>
9881         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
9882         * calendar/holidays.el, progmodes/cperl-mode.el:
9883         Update x-popup-menu declarations.
9885         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
9886         (list-load-path-shadows): Use dolist.
9887         (list-load-path-shadows): Use with-current-buffer.
9889 2009-11-10  Juri Linkov  <juri@jurta.org>
9891         * minibuffer.el (read-file-name): Support a list of default values
9892         in `default-filename'.  Use the first file name where only one
9893         element is required.  Doc fix.
9895 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
9897         * net/dbus.el (dbus-unregister-object): Release service, if no
9898         other method is registered for it.
9900 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
9902         * bookmark.el (bookmark-completing-read): Sort bookmark names if
9903         bookmark-sort-flag is non-nil (Bug#4653).
9905 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
9907         * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
9908         the progress reporter entirely.
9910         * emulation/cua-base.el: Add CUA property to some CC mode commands
9911         (Bug#4100).
9913 2009-11-08  Kevin Ryde  <user42@zip.com.au>
9915         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
9916         at end of sentence (Bug#4818).
9918 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
9920         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9921         Handle "see declaration of" MSFT statements (Bug#4100).
9923 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
9925         * net/tramp.el (tramp-advice-make-auto-save-file-name)
9926         (tramp-advice-file-expand-wildcards): Unload via
9927         `ad-remove-advice'.
9929         * net/trampver.el: Update release number.
9931 2009-11-08  Kevin Ryde  <user42@zip.com.au>
9933         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
9934         `ad-do-it'.
9936 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
9938         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
9939         in order to keep context in SELinux.
9941 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
9943         * dired-aux.el (dired-query): Place cursor in echo area and allow
9944         C-g.
9946         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
9947         menu item if not on a directory (Bug#4701).
9949 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
9951         Sync with Tramp 2.1.17.
9953         * net/tramp.el (tramp-handle-copy-directory): Don't use
9954         `file-remote-p' (due to compatibility).
9956         * net/tramp-compat.el (tramp-compat-copy-directory)
9957         (tramp-compat-delete-directory): New defuns.
9959         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
9960         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
9961         `tramp-compat-delete-directory'.
9963         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
9964         (tramp-smb-handle-delete-directory): Use
9965         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
9967         * net/trampver.el: Update release number.
9969 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
9971         * tar-mode.el (tar-copy): Call write-region on the right buffer
9972         (Bug#4857).
9974         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
9975         by hand, if necessary (Bug#4878).
9977 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
9979         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
9980         align size column (Bug#4839).
9982         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
9983         statement.
9985 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
9987         * progmodes/ld-script.el (auto-mode-alist):
9988         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
9990         * cus-face.el (custom-declare-face): Purecopy face spec.
9992 2009-11-06  Kenichi Handa  <handa@m17n.org>
9994         * international/uni-bidi.el: Re-generated.
9995         * international/uni-category.el: Re-generated.
9996         * international/uni-combining.el: Re-generated.
9997         * international/uni-mirrored.el: Re-generated.
9999 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
10001         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
10002         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
10003         (tex-start-options, slitex-run-command, latex-run-command)
10004         (tex-run-command, tex-directory):
10005         * textmodes/ispell.el (ispell-html-skip-alists)
10006         (ispell-tex-skip-alists, ispell-tex-skip-alists):
10007         * textmodes/fill.el (adaptive-fill-first-line-regexp):
10008         (adaptive-fill-regexp):
10009         * textmodes/dns-mode.el (auto-mode-alist):
10010         * progmodes/python.el (interpreter-mode-alist):
10011         * progmodes/etags.el (tags-compression-info-list):
10012         * progmodes/etags.el (tags-file-name):
10013         * net/browse-url.el (browse-url-galeon-program)
10014         (browse-url-firefox-program):
10015         * mail/sendmail.el (mail-signature-file)
10016         (mail-citation-prefix-regexp):
10017         * international/mule-conf.el (eight-bit):
10018         * international/latexenc.el (latex-inputenc-coding-alist):
10019         * international/fontset.el (x-pixel-size-width-font-regexp):
10020         * emacs-lisp/warnings.el (warning-type-format):
10021         * emacs-lisp/trace.el (trace-buffer):
10022         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
10023         (emacs-lisp-mode-map):
10024         * calendar/holidays.el (holiday-solar-holidays)
10025         (holiday-bahai-holidays, holiday-islamic-holidays)
10026         (holiday-christian-holidays, holiday-hebrew-holidays)
10027         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
10028         (hebrew-holidays-1, holiday-oriental-holidays)
10029         (holiday-general-holidays):
10030         * x-dnd.el (x-dnd-known-types):
10031         * tool-bar.el (tool-bar):
10032         * startup.el (site-run-file):
10033         * shell.el (shell-dumb-shell-regexp):
10034         * rfn-eshadow.el (file-name-shadow-tty-properties)
10035         (file-name-shadow-properties):
10036         * paths.el (remote-shell-program, news-directory):
10037         * mouse.el ([C-down-mouse-3]):
10038         * menu-bar.el (menu-bar-tools-menu):
10039         * jka-cmpr-hook.el (jka-compr-load-suffixes)
10040         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
10041         (jka-compr-compression-info-list):
10042         * isearch.el (search-whitespace-regexp):
10043         * image-file.el (image-file-name-extensions):
10044         * find-dired.el (find-ls-option):
10045         * files.el (directory-listing-before-filename-regexp)
10046         (directory-free-space-args, insert-directory-program)
10047         (list-directory-brief-switches, magic-fallback-mode-alist)
10048         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
10049         (automount-dir-prefix):
10050         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
10051         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
10052         (face-font-registry-alternatives, face-font-registry-alternatives)
10053         (face-font-family-alternatives):
10054         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
10055         (facemenu-foreground-menu, facemenu-face-menu):
10056         * epa-hook.el (epa-file-name-regexp):
10057         * dnd.el (dnd-protocol-alist):
10058         * textmodes/rst.el (auto-mode-alist):
10059         * button.el (default-button): Purecopy strings.
10061 2009-11-06  Glenn Morris  <rgm@gnu.org>
10063         * Makefile.in (ELCFILES): Update.
10065 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10067         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
10068         * emacs-lisp/levents.el: Move to obsolete/levents.el.
10070         * nxml/xsd-regexp.el (xsdre-gen-categories):
10071         * nxml/xmltok.el (xmltok-parse-entity):
10072         * nxml/rng-parse.el (rng-parse-validate-file):
10073         * nxml/rng-maint.el (rng-format-manual)
10074         (rng-manual-output-force-new-line):
10075         * nxml/rng-loc.el (rng-save-schema-location-1):
10076         * nxml/rng-cmpct.el (rng-c-parse-file):
10077         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
10078         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
10080 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
10082         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
10083         Remove extra save-excursions and make-variable-buffer-local's.
10084         Suggested by Stefan Monnier.
10086         (verilog-getopt-file, verilog-module-inside-filename-p)
10087         (verilog-set-define): Merge GNU 1.35 and repair changes from
10088         switching to using with-current-buffer.
10090         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
10091         being treated as a number and confusing AUTORESET.
10092         Reported by Dan Dever.
10094         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
10095         Add verilog-auto-ignore-concat to fix backward compatibility with
10096         older verilog-modes.  Reported by Dan Katz.
10098         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
10099         containing closing anchors "...$".
10101         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
10102         Reported by Wade Smith.
10104         (verilog-batch-execute-func): Comment on function usage.
10106 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
10108         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
10109         for labels.
10111         (verilog-label-re, verilog-calc-1): Support proper indent of named
10112         asserts.
10114         (verilog-backward-token, verilog-basic-complete-re)
10115         (verilog-beg-of-statement, verilog-indent-re): Support proper
10116         indent of the assert statement at the beginning of a block of text.
10118         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
10119         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
10120         tokens as begins.
10122 2009-11-05  Glenn Morris  <rgm@gnu.org>
10124         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
10125         Emacs 19.  (Bug#1531)
10126         (byte-compile-fix-header): Update for the above change.
10127         Drop test for epoch::version.
10129         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
10130         * cus-dep.el (custom-make-dependencies):
10131         * finder.el (finder-compile-keywords):
10132         Use autoload-rubric's feature argument.
10134         * calendar/diary-lib.el (top-level): Make load behave more like require.
10136         * vc-git.el (vc-git-stash-map): Move definition before use.
10138 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
10140         * custom.el (custom-declare-group): Purecopy standard-value.
10141         (custom-declare-group): Purecopy custom-prefix.
10143         * international/mule.el (load-with-code-conversion):
10144         Call do-after-load-evaluation unconditionally.
10146         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
10148 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10150         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
10152 2009-11-04  Glenn Morris  <rgm@gnu.org>
10154         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
10155         (byte-compile-compatibility): Remove option.
10156         (byte-compile-close-variables, byte-compile-fix-header)
10157         (byte-compile-insert-header, byte-compile-output-docform)
10158         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
10159         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
10160         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
10161         (byte-compile-insert, byte-compile-defun):
10162         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
10163         (byte-defop-compiler19): Remove.
10164         Without byte-compile-compatibility, the 'emacs19-opcode property is not
10165         used by anything.  Replace all calls with byte-defop-compiler.
10167 2009-11-04  Juri Linkov  <juri@jurta.org>
10169         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
10170         (menu-bar-options-menu): Don't quote the `prop' arg of
10171         `menu-bar-make-mm-toggle'.
10173 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
10175         * calendar/calendar.el (cal-loaddefs):
10176         * calendar/diary-lib.el (diary-loaddefs):
10177         * calendar/holidays.el (hol-loaddefs):
10178         * eshell/esh-module.el (esh-groups): Load rather than require.
10180 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10182         * calendar/todo-mode.el (todo-add-category): Don't hardcode
10183         point-min==1.
10184         (todo-top-priorities): Only display-buffer when called interactively.
10185         (todo-item-start): Don't save excursion point.
10186         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
10187         (todo-insert-item-here, todo-file-item, todo-remove-item):
10188         Adjust uses of todo-item-start and todo-item-end.
10190         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
10191         (autoload-rubric): Don't use any more.
10192         * cedet/semantic/fw.el (semantic/loaddefs):
10193         * cedet/srecode.el (srecode/loaddefs):
10194         * cedet/ede.el (ede/loaddefs): Load rather than require.
10195         * cedet/ede/cpp-root.el:
10196         * cedet/ede/emacs.el:
10197         * cedet/ede/files.el:
10198         * cedet/ede/linux.el:
10199         * cedet/ede/locate.el:
10200         * cedet/ede/make.el:
10201         * cedet/ede/shell.el:
10202         * cedet/ede/speedbar.el:
10203         * cedet/ede/system.el:
10204         * cedet/ede/util.el:
10205         * cedet/semantic/analyze.el:
10206         * cedet/semantic/bovine.el:
10207         * cedet/semantic/complete.el:
10208         * cedet/semantic/ctxt.el:
10209         * cedet/semantic/db-file.el:
10210         * cedet/semantic/db-find.el:
10211         * cedet/semantic/db-global.el:
10212         * cedet/semantic/db-mode.el:
10213         * cedet/semantic/db-typecache.el:
10214         * cedet/semantic/db.el:
10215         * cedet/semantic/debug.el:
10216         * cedet/semantic/dep.el:
10217         * cedet/semantic/doc.el:
10218         * cedet/semantic/edit.el:
10219         * cedet/semantic/find.el:
10220         * cedet/semantic/format.el:
10221         * cedet/semantic/html.el:
10222         * cedet/semantic/ia-sb.el:
10223         * cedet/semantic/ia.el:
10224         * cedet/semantic/idle.el:
10225         * cedet/semantic/lex-spp.el:
10226         * cedet/semantic/lex.el:
10227         * cedet/semantic/mru-bookmark.el:
10228         * cedet/semantic/scope.el:
10229         * cedet/semantic/senator.el:
10230         * cedet/semantic/sort.el:
10231         * cedet/semantic/symref.el:
10232         * cedet/semantic/tag-file.el:
10233         * cedet/semantic/tag-ls.el:
10234         * cedet/semantic/tag-write.el:
10235         * cedet/semantic/tag.el:
10236         * cedet/semantic/util-modes.el:
10237         * cedet/semantic/analyze/complete.el:
10238         * cedet/semantic/analyze/refs.el:
10239         * cedet/semantic/bovine/c.el:
10240         * cedet/semantic/bovine/gcc.el:
10241         * cedet/semantic/bovine/make.el:
10242         * cedet/semantic/bovine/scm.el:
10243         * cedet/semantic/decorate/include.el:
10244         * cedet/semantic/decorate/mode.el:
10245         * cedet/semantic/symref/cscope.el:
10246         * cedet/semantic/symref/global.el:
10247         * cedet/semantic/symref/grep.el:
10248         * cedet/semantic/symref/idutils.el:
10249         * cedet/semantic/symref/list.el:
10250         * cedet/semantic/wisent/java-tags.el:
10251         * cedet/semantic/wisent/javascript.el:
10252         * cedet/srecode/compile.el:
10253         * cedet/srecode/cpp.el:
10254         * cedet/srecode/document.el:
10255         * cedet/srecode/el.el:
10256         * cedet/srecode/expandproto.el:
10257         * cedet/srecode/getset.el:
10258         * cedet/srecode/insert.el:
10259         * cedet/srecode/java.el:
10260         * cedet/srecode/map.el:
10261         * cedet/srecode/mode.el:
10262         * cedet/srecode/template.el:
10263         * cedet/srecode/texi.el: Remove the file-local setting of
10264         generated-autoload-feature.
10266         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
10267         and only put a prop if it is non-nil.
10269 2009-11-03  Juri Linkov  <juri@jurta.org>
10271         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
10272         (menu-bar-options-menu): Fix list quoting (Bug#4429).
10274         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
10275         and "Menu" to make top-level menu item visually one unit (like
10276         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
10277         multi-word menu items).  Fix :help string for quit-window.
10279 2009-11-03  Glenn Morris  <rgm@gnu.org>
10281         * cedet/mode-local.el (with-mode-local): Doc fix.
10283         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
10284         (byte-compile-file-form-define-abbrev-table)
10285         (byte-compile-file-form-custom-declare-variable)
10286         (byte-compile-variable-ref, byte-compile-defvar):
10287         Whether or not a warning is enabled should only affect whether we issue
10288         the warning, not whether or not we collect the relevant data.
10289         Eg warnings can be turned on and off throughout the course of a file.
10291         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
10292         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
10294 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10296         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
10297         * play/mpuz.el (mpuz-create-buffer):
10298         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
10299         (lm-print-y,s,noise, lm-print-w0, lm-init):
10300         * play/gomoku.el (gomoku-prompt-for-move):
10301         * play/fortune.el (fortune-in-buffer):
10302         * play/dissociate.el (dissociated-press):
10303         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
10304         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
10305         * mail/supercite.el (sc-eref-show):
10306         * mail/smtpmail.el (smtpmail-send-it):
10307         * mail/rmailsum.el (rmail-summary-next-labeled-message)
10308         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
10309         (rmail-summary-undelete-many, rmail-summary-rmail-update)
10310         (rmail-summary-goto-msg, rmail-summary-expunge)
10311         (rmail-summary-get-new-mail, rmail-summary-search-backward)
10312         (rmail-summary-add-label, rmail-summary-output-menu)
10313         (rmail-summary-output-body):
10314         * mail/rfc822.el (rfc822-addresses):
10315         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
10316         * mail/mailpost.el (post-mail-send-it):
10317         * mail/hashcash.el (hashcash-generate-payment):
10318         * mail/feedmail.el (feedmail-run-the-queue)
10319         (feedmail-queue-send-edit-prompt-help-first)
10320         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
10321         (feedmail-deduce-address-list):
10322         * eshell/esh-ext.el (eshell-remote-command):
10323         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
10324         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
10325         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
10326         (viper-save-string-in-file, viper-valid-marker):
10327         * emulation/viper-keym.el (viper-toggle-key):
10328         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
10329         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
10330         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
10331         * emulation/viper-cmd.el (viper-exec-form-in-vi)
10332         (viper-exec-form-in-emacs, viper-brac-function):
10333         * emulation/viper.el (viper-delocalize-var):
10334         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
10335         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
10336         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
10337         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
10338         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
10339         * emulation/edt.el (edt-electric-helpify):
10340         * emulation/cua-rect.el (cua--rectangle-aux-replace):
10341         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
10342         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
10343         (cua-indent-to-global-mark-column):
10344         * calendar/diary-lib.el (calendar-mark-1):
10345         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
10346         Use with-current-buffer.
10347         * emulation/viper.el (viper-delocalize-var): Use dolist.
10349 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
10351         * comint.el (comint-replace-by-expanded-history-before-point):
10352         Replace !! with the previous input string literally (Bug#1795).
10354 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
10356         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
10357         to be made up of whitespace.
10359 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
10361         * minibuffer.el (read-file-name): Don't use file dialogs for
10362         remote directories (Bug#99).
10364 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
10366         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
10368 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
10370         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
10371         instead of deleting the window or frame.
10373 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
10375         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
10376         Support face colors.
10378         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
10379         New function.  Support face colors (Bug#1168).
10380         (tex-common-initialization): Use it.
10382         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
10383         mode allows it (Bug#1168).
10385 2009-10-31  Juri Linkov  <juri@jurta.org>
10387         * facemenu.el (list-colors-display): Don't mark buffer as
10388         modified (Bug#3948).
10390 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
10392         * international/mule-diag.el (list-character-sets-1): Minor
10393         message fix (Bug#3526).
10395         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
10396         face property (Bug#4834).
10397         (etags-list-tags, etags-tags-apropos-additional)
10398         (etags-tags-apropos, tags-select-tags-table): Add follow-link
10399         property.
10401         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
10402         items.
10404         * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
10405         items.
10407         * cedet/ede.el (ede-minor-mode):
10408         * cedet/semantic.el (semantic-mode): Toggle menu separators.
10410 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
10412         * textmodes/two-column.el (2C-split):
10413         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
10414         * textmodes/tex-mode.el (tex-set-buffer-directory):
10415         * textmodes/spell.el (spell-region, spell-string):
10416         * textmodes/reftex.el (reftex-erase-buffer):
10417         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
10418         * textmodes/reftex-toc.el (reftex-toc-promote-action):
10419         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
10420         (reftex-select-item):
10421         * textmodes/reftex-ref.el (reftex-label-info-update)
10422         (reftex-offer-label-menu):
10423         * textmodes/reftex-index.el (reftex-index-change-entry)
10424         (reftex-index-phrases-info):
10425         * textmodes/reftex-global.el (reftex-create-tags-file)
10426         (reftex-save-all-document-buffers, reftex-ensure-write-access):
10427         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
10428         (reftex-view-crossref-from-bibtex):
10429         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
10430         (reftex-extract-bib-entries-from-thebibliography)
10431         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
10432         * textmodes/refbib.el (r2b-capitalize-title):
10433         (r2b-convert-buffer, r2b-help):
10434         * textmodes/page-ext.el (pages-directory)
10435         (pages-directory-goto-with-mouse):
10436         * textmodes/bibtex.el (bibtex-validate-globally):
10437         * textmodes/bib-mode.el (bib-capitalize-title):
10438         * textmodes/artist.el (artist-clear-buffer, artist-system):
10439         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
10440         (local-set-scheme-interaction-buffer, xscheme-process-filter)
10441         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
10442         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
10443         (xscheme-send-control-g-interrupt, xscheme-start-process)
10444         (xscheme-process-sentinel, xscheme-cd):
10445         * progmodes/verilog-mode.el (verilog-read-always-signals)
10446         (verilog-set-define, verilog-getopt-file)
10447         (verilog-module-inside-filename-p):
10448         * progmodes/sh-script.el:
10449         * progmodes/python.el (python-pdbtrack-get-source-buffer)
10450         (python-pdbtrack-grub-for-buffer, python-execute-file):
10451         * progmodes/octave-inf.el (inferior-octave):
10452         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
10453         (idlwave-shell-compile-helper-routines, idlwave-set-local)
10454         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
10455         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
10456         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
10457         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
10458         (idlwave-shell-filter, idlwave-shell-examine-highlight)
10459         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
10460         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
10461         (idlwave-shell-examine-display, idlwave-shell-run-region)
10462         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
10463         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
10464         * progmodes/idlw-help.el (idlwave-help-get-special-help)
10465         (idlwave-help-get-help-buffer):
10466         * progmodes/gud.el (gud-basic-call, gud-find-class)
10467         (gud-tooltip-activate-mouse-motions-if-enabled):
10468         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
10469         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
10470         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
10471         (ebrowse-tags-next-file):
10472         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
10473         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
10474         (ebnf-eps-finish-and-write):
10475         * progmodes/cpp.el (cpp-edit-save):
10476         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
10477         * progmodes/cc-defs.el (c-emacs-features):
10478         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
10479         (antlr-directory-dependencies):
10480         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
10481         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
10482         (ada-find-any-references, ada-make-filename-from-adaname)
10483         (ada-make-body-gnatstub):
10484         * obsolete/rnews.el (news-list-news-groups):
10485         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
10486         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
10487         * net/rcirc.el (rcirc-debug):
10488         * net/newst-treeview.el (newsticker--treeview-list-add-item)
10489         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
10490         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
10491         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
10492         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
10493         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
10494         (newsticker--treeview-list-clear-highlight)
10495         (newsticker--treeview-list-update-highlight)
10496         (newsticker--treeview-list-highlight-start)
10497         (newsticker--treeview-tree-update-highlight)
10498         (newsticker--treeview-get-selected-item)
10499         (newsticker-treeview-mark-list-items-old)
10500         (newsticker--treeview-set-current-node):
10501         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
10502         * net/newst-backend.el (newsticker--get-news-by-funcall)
10503         (newsticker--get-news-by-wget, newsticker--image-get)
10504         (newsticker--image-sentinel):
10505         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
10506         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
10507         (eudc-ph-close-session):
10508         * net/eudc.el (eudc-save-options):
10509         * language/thai-word.el (thai-update-word-table):
10510         * language/japan-util.el (japanese-string-conversion):
10511         * international/titdic-cnv.el (tsang-quick-converter)
10512         (ziranma-converter, ctlau-converter):
10513         * international/mule-cmds.el (describe-language-environment):
10514         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
10515         (skkdic-convert-postfix, skkdic-convert-prefix):
10516         (skkdic-convert-okuri-nasi, skkdic-convert):
10517         * emacs-lisp/re-builder.el (reb-update-overlays):
10518         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
10519         * emacs-lisp/gulp.el (gulp-send-requests):
10520         * emacs-lisp/find-gc.el (trace-call-tree):
10521         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
10522         (eieio-describe-generic):
10523         * emacs-lisp/eieio-base.el (eieio-persistent-read):
10524         * emacs-lisp/edebug.el (edebug-outside-excursion):
10525         * emacs-lisp/debug.el (debugger-make-xrefs):
10526         * emacs-lisp/cust-print.el (custom-prin1-to-string):
10527         * emacs-lisp/chart.el (chart-new-buffer):
10528         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
10529         Use with-current-buffer.
10530         * textmodes/artist.el (artist-system): Don't call
10531         copy-sequence on a fresh string.
10532         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
10534 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
10536         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
10537         is no item to edit.  (Bug#4820)
10538         (todo-top-priorities): Restore point and restore narrowing in Todo
10539         buffer.  (Bug#4820)
10541 2009-10-31  Glenn Morris  <rgm@gnu.org>
10543         * net/ange-ftp.el (top-level): Don't require dired when compiling.
10544         (comint-last-output-start, comint-last-input-start)
10545         (comint-last-input-end): Don't defvar when compiling.
10546         (ange-ftp-process-file): Use bound-and-true-p.
10548         * pcmpl-rpm.el (top-level): Move provide statement to end.
10549         (pcmpl-rpm): Remove unused custom group.
10551         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
10553         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
10555         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
10556         (byte-compile-warnings): Add `constants' as an option.
10557         (byte-compile-callargs-warn, byte-compile-arglist-warn)
10558         (display-call-tree): Update for byte-compile-fdefinition possibly
10559         returning `(macro lambda ...)'.  (Bug#4778)
10560         (byte-compile-variable-ref, byte-compile-setq-default):
10561         Respect `constants' member of byte-compile-warnings.
10563         * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
10564         Use mapc rather than mapcar because the return value is never used.
10566         * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
10567         * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
10568         * cedet/semantic/html.el:
10569         Suppress harmless warnings about setting up semantic-imenu (not
10570         part of Emacs) variables.
10572 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10574         * vc-bzr.el (vc-bzr-revision-keywords): New var.
10575         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
10576         to "submit:".
10578         * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
10579         * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
10580         * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
10581         * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
10582         * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
10583         * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
10584         (semantic-analyzer-debug-global-symbol)
10585         (semantic-analyzer-debug-missing-innertype)
10586         (semantic-analyzer-debug-insert-include-summary):
10587         * cedet/semantic/util.el (semantic-file-tag-table):
10588         (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
10589         (semantic-recursive-find-nonterminal-by-name):
10590         * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
10591         * cedet/semantic/tag-file.el (semantic-prototype-file):
10592         * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
10593         * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
10594         * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
10595         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
10596         (semantic-idle-summary-maybe-highlight):
10597         * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
10598         (semantic-ia-sb-tag-info):
10599         * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
10600         * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
10601         * cedet/semantic/ede-grammar.el (project-compile-target):
10602         (ede-proj-makefile-insert-variables):
10603         * cedet/semantic/debug.el (semantic-debug-set-parser-location):
10604         (semantic-debug-set-source-location, semantic-debug-interface-layout)
10605         (semantic-debug-mode, semantic-debug):
10606         * cedet/semantic/db.el (semanticdb-needs-refresh-p):
10607         * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
10608         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
10609         * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
10610         (semanticdb-find-translate-path-includes--internal)
10611         (semanticdb-reset-log, semanticdb-find-log-activity):
10612         * cedet/semantic/db-file.el (object-write):
10613         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
10614         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
10615         (semanticdb-create-ebrowse-database):
10616         * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
10617         * cedet/semantic/complete.el (semantic-displayor-focus-request)
10618         (semantic-collector-calculate-completions-raw)
10619         (semantic-complete-read-tag-analyzer):
10620         * cedet/semantic/analyze.el (semantic-analyze-pulse):
10621         * cedet/ede/util.el (ede-update-version-in-source):
10622         * cedet/ede/proj.el (project-delete-target):
10623         * cedet/ede/proj-elisp.el (ede-update-version-in-source)
10624         (ede-proj-flush-autoconf):
10625         * cedet/ede/pconf.el (ede-proj-configure-synchronize)
10626         (ede-proj-configure-synchronize):
10627         * cedet/ede/locate.el (ede-locate-file-in-project-impl):
10628         * cedet/ede/linux.el (ede-linux-version):
10629         * cedet/ede/emacs.el (ede-emacs-version):
10630         * cedet/ede/dired.el (ede-dired-add-to-target):
10631         * cedet/ede.el (ede-buffer-header-file, ede-find-target)
10632         (ede-buffer-documentation-files, ede-project-buffers, ede-set)
10633         (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
10634         * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
10635         (cedet-idutils-lid-call, cedet-idutils-expand-filename)
10636         (cedet-idutils-version-check):
10637         * cedet/cedet-global.el (cedet-gnu-global-call):
10638         (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
10639         (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
10640         * cedet/cedet-cscope.el (cedet-cscope-call)
10641         (cedet-cscope-expand-filename, cedet-cscope-version-check):
10642         Use with-current-buffer.
10643         * cedet/ede.el (ede-make-project-local-variable)
10644         (ede-set-project-variables, ede-set): Use dolist.
10646 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
10648         * textmodes/ispell.el (ispell-skip-region-alist):
10649         * international/mule-conf.el (eight-bit):
10650         * international/fontset.el (font-encoding-alist):
10651         * startup.el (pure-space-overflow-message):
10652         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
10653         * paths.el (gnus-nntp-service, rmail-spool-directory)
10654         (term-file-prefix):
10655         * files.el (save-some-buffers-action-alist):
10656         * cmuscheme.el (same-window-buffer-names):
10657         * ielm.el (same-window-buffer-names):
10658         * shell.el (same-window-buffer-names):
10659         * mail/sendmail.el (same-window-buffer-names):
10660         * progmodes/inf-lisp.el (same-window-buffer-names):
10661         * bindings.el (mode-line-client)
10662         (mode-line-column-line-number-mode-map):
10663         * language/tibetan.el (tibetan-precomposition-rule-regexp)
10664         (tibetan-precomposed-regexp): Purecopy string arguments.
10666 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10668         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
10669         (calcDigit-nondigit):
10670         * calc/calc-yank.el (calc-copy-to-buffer):
10671         * calc/calc-units.el (calc-invalidate-units-table):
10672         * calc/calc-trail.el (calc-trail-yank):
10673         * calc/calc-store.el (calc-insert-variables):
10674         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
10675         * calc/calc-prog.el (calc-read-parse-table):
10676         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
10677         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
10678         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
10679         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
10680         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
10681         (calc-graph-name, calc-graph-find-command, calc-graph-view)
10682         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
10683         * calc/calc-ext.el (calc-realign):
10684         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
10685         (calc-embedded-finish-edit, calc-embedded-make-info)
10686         (calc-embedded-finish-command, calc-embedded-stack-change):
10687         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
10689         * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
10690         (overload-docstring-extension): Use that info.
10691         * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
10692         * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
10693         * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
10694         (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
10695         (semantic-nonterminal-full-name): Add the new `when' info.
10696         * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
10697         `assert'.
10699         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
10700         shell-dynamic-complete-filename in preference to
10701         comint-dynamic-complete-filename.
10703         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
10704         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
10705         Don't consider whether the display supports colors.
10706         (bookmark-import-new-list): Use dolist.
10707         (bookmark-bmenu-mode-map): Move initialization into declaration.
10708         (bookmark-bmenu-list): Use dolist, simplify.
10709         (bookmark-show-all-annotations): Use save-selected-window and dolist.
10710         (menu-bar-final-items): Use push.
10712 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
10714         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
10715         it works on remote files.
10716         (vc-hg-diff): Don't pass any `--cwd' argument.
10718 2009-10-27  Kevin Ryde  <user42@zip.com.au>
10720         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
10721         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
10722         (Further to Bug#3921).
10724 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
10726         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
10727         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
10728         calling `tramp-imap-put-file'.  Add file size to the call.
10729         (tramp-imap-get-file-entries): Compute also user name, file size,
10730         and date.
10731         (tramp-imap-handle-insert-directory): Insert uid and gid.
10732         (tramp-imap-handle-file-attributes): Transform uid and gid
10733         according to `id-format'.
10734         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
10735         size in header X-Size.
10737 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
10739         * simple.el (transpose-subr): Give clearer error when the mark
10740         is not set.  (Bug#4807)
10742 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
10744         * net/tramp.el (tramp-perl-file-truename): New defconst.
10745         Perl code contributed by yary <not.com@gmail.com> (tiny change).
10746         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
10747         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
10748         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
10750         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
10751         Ignore `dired-call-process'.
10752         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
10754 2009-10-26  Julian Scheid  <julians37@gmail.com>
10756         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
10757         (tramp-get-remote-readlink): New defun.
10758         (tramp-handle-file-truename): Use it.
10759         (tramp-handle-file-exists-p): Check file-attributes cache, assume
10760         file exists if cache value present.
10761         (tramp-check-cached-permissions): New defun.
10762         (tramp-handle-file-readable-p): Use it.
10763         (tramp-handle-file-writable-p): Likewise.
10764         (tramp-handle-file-executable-p): Likewise.
10765         (tramp-handle-file-name-all-completions): Try using Perl to get
10766         partial completions.  When perl not available, combine `cd' and
10767         `ls' into single remote operation and use shell expansion to get
10768         partial remote directory contents.  Set `file-exists-p' cache for
10769         directory and any files returned by ls.  Change cache handling to
10770         support partial directory contents.  Use error message emitted by
10771         remote `cd' or Perl code for local tramp-error.
10772         (tramp-do-copy-or-rename-file-directly): Avoid separate
10773         tramp-send-command-and-check call.
10774         (tramp-handle-process-file): Merge three remote ops into one.
10775         Do not flush all caches when `process-file-side-effects' is set.
10776         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
10777         file-attributes shows uid/gid to be set already.
10779 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
10781         * textmodes/tex-mode.el (tex-dvi-view-command)
10782         (tex-show-queue-command, tex-open-quote):
10783         * progmodes/ruby-mode.el (auto-mode-alist)
10784         (interpreter-mode-alist): Purecopy strings.
10786         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
10788         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
10789         string for the hook, keymap and abbrev table.
10791         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
10793         * x-dnd.el (x-dnd-xdnd-to-action):
10794         * startup.el (fancy-startup-text, fancy-about-text): Change to
10795         defconst from defvar.
10797         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
10799         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
10800         Purecopy initialization strings.
10802         * mail/sendmail.el (mail-header-separator)
10803         (mail-personal-alias-file):
10804         * mail/rmail.el (rmail-default-dont-reply-to-names)
10805         (rmail-ignored-headers, rmail-retry-ignored-headers)
10806         (rmail-highlighted-headers, rmail-secondary-file-directory)
10807         (rmail-secondary-file-regexp):
10808         * files.el (null-device, file-name-invalid-regexp)
10809         (locate-dominating-stop-dir-regexp)
10810         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
10811         (interpreter-mode-alist): Use mapcar instead of mapc.
10813         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
10815         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
10816         (completion-ignored-extensions):
10817         (debug-ignored-errors): Purecopy strings.
10819 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10821         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
10822         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
10823         (pcomplete--here): Use push.
10825         * subr.el (all-completions): Declare the 4th arg obsolete.
10827 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10829         * pcomplete.el (pcomplete-unquote-argument-function): New var.
10830         (pcomplete-unquote-argument): New function.
10831         (pcomplete--common-suffix): Always pay attention to case.
10832         (pcomplete--table-subvert): Quote and unquote the text.
10833         (pcomplete--common-quoted-suffix): New function.
10834         (pcomplete-std-complete): Use it and pcomplete-begin.
10836         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
10837         we're inside a dedicated or minibuffer window.
10839 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10841         * cedet/semantic/fw.el (semantic-alias-obsolete)
10842         (semantic-varalias-obsolete): Make the `when' arg mandatory.
10843         (define-mode-overload-implementation):
10844         * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
10845         * cedet/semantic/wisent.el (wisent-lex-make-token-table):
10846         * cedet/semantic/util.el (semantic-file-token-stream)
10847         (semantic-something-to-stream):
10848         * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
10849         (semantic-expand-nonterminal):
10850         * cedet/semantic/tag-file.el (semantic-find-nonterminal)
10851         (semantic-find-dependency, semantic-find-nonterminal)
10852         (semantic-find-dependency):
10853         * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
10854         (semantic-flex-text, semantic-flex-make-keyword-table)
10855         (semantic-flex-keyword-p, semantic-flex-keyword-put)
10856         (semantic-flex-keyword-get, semantic-flex-map-keywords)
10857         (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
10858         * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
10859         * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
10860         (semantic-after-idle-scheduler-reparse-hooks):
10861         * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
10862         * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
10863         * cedet/semantic.el (semantic-toplevel-bovine-table)
10864         (semantic-toplevel-bovine-cache)
10865         (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
10866         (semantic-init-mode-hooks, semantic-init-db-hooks)
10867         (semantic-bovination-working-type): Provide the `when' arg.
10869 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
10871         * bookmark.el: Update documentation, especially documentation
10872         of `bookmark-alist' and of the bookmark file format.
10873         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
10875 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
10877         * mail/emacsbug.el (report-emacs-bug): Clarify that the
10878         keybindings apply to the mail buffer (Bug#4003).  Shrink help
10879         window to buffer.
10881         * whitespace.el (whitespace-mode, whitespace-newline-mode)
10882         (global-whitespace-mode, global-whitespace-newline-mode)
10883         (whitespace-toggle-options, global-whitespace-toggle-options):
10884         Doc fix (Bug#3660).
10886         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
10887         of xmltok-start before the end tag was inserted (Bug#2840).
10889         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
10890         patterns that are preceded by an open-paren (Bug#1320).
10892 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
10894         * files.el (delete-directory): Delete symlinks to directories with
10895         delete-file (Bug#4739).
10897 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
10899         * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
10900         * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
10901         argument to make-obsolete.
10903         * cedet/semantic/fw.el (semantic-alias-obsolete)
10904         (semantic-varalias-obsolete): Add optional WHEN argument.
10906 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
10908         * vc.el (vc-backend-for-registration): Rename from
10909         vc-get-backend-for-registration.  Update callers.
10911         * international/mule-cmds.el (set-language-info-alist):
10912         Purecopy lang-env.
10913         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
10914         (charset): Purecopy the name.
10915         (define-char-code-property): Purecopy string arguments.
10917         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
10918         Purecopy string arguments.
10920         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
10921         * ediff-hook.el (menu-bar-ediff-menu):
10922         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
10923         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
10925 2009-10-24  Glenn Morris  <rgm@gnu.org>
10927         * comint.el (comint-dynamic-list-completions):
10928         * term.el (term-dynamic-list-completions): Use choose-completion rather
10929         than obsolete alias mouse-choose-completion.
10931         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
10932         file-cache-choose-completion.
10933         (file-cache-choose-completion): Handle an optional event argument.
10934         (file-cache-mouse-choose-completion): Make it an obsolete alias.
10936         * progmodes/octave-mod.el (octave-complete-symbol):
10937         Use choose-completion if mouse-choose-completion is ever removed.
10939         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
10940         use.
10942         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
10943         compiler.
10945         * vc-hooks.el (vc-responsible-backend): Fix declaration.
10947 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10949         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
10950         Ignore `pred' now that we receive one.
10951         Handle test-completion specially.
10953 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
10955         * vc.el (vc-responsible-backend): Throw an error if not backend is
10956         found.  Remove the REGISTER argument.  Move the code dealing with
10957         REGISTER ...
10958         (vc-get-backend-for-registration): ... here.  New function.
10959         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
10960         of vc-responsible-backend, pass the file name instead of the
10961         directory name.
10963 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10965         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
10966         New funs.
10967         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
10968         (pcomplete-comint-setup): Don't modify a global var via
10969         accidental side-effects.
10970         (pcomplete-shell-setup): Adjust call accordingly.
10971         (pcomplete-parse-comint-arguments): Use push.
10973 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
10975         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
10976         Allow uncapitalized info node names (Bug#3921).
10978         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
10979         to the DEBUG file (Bug#3781).
10981 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
10983         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
10984         dictionary entry (Bug#4579).
10986 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
10988         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
10989         from `rfn-eshadow-update-overlay-hook' when unloading.
10990         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
10991         "rsyncc".  Adjust doc string.
10992         (tramp-temp-buffer-file-name): New buffer-local defvar.
10993         (tramp-handle-insert-file-contents, tramp-handle-write-region):
10994         Keep temporary file when indicated by method ("rsync" and
10995         "rsyncc").
10996         (tramp-handle-write-region): Handle APPEND.
10997         (tramp-delete-temp-file-function): New defun.  Added to
10998         `kill-buffer-hook'.
11000 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
11002         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
11004 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
11006         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
11007         (color-name-rgb-alist, tty-standard-colors)
11008         (tty-color-mode-alist): Change to defconst.
11010         * simple.el (mark-inactive): Purecopy message.
11012         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
11013         (global-map, yank-menu):
11014         * textmodes/ispell.el (ispell-menu-map):
11015         * net/eudc.el (eudc-tools-menu):
11016         * international/mule-cmds.el (describe-language-environment-map)
11017         (setup-language-environment-map, set-coding-system-map)
11018         (mule-menu-keymap):
11019         * vc-hooks.el (vc-menu-entry, vc-menu-map):
11020         * replace.el (occur-mode-map):
11021         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
11023 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
11025         * calc/calc.el (math-read-number, math-read-number-simple): Use
11026         `save-match-data'.
11028 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11030         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
11031         rather than fiddling with global-map bindings, since it should only
11032         affect per-terminal settings.
11033         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
11035         * minibuffer.el (completion-table-with-terminator): Allow to specify
11036         the terminator-regexp.
11038         * simple.el (switch-to-completions): Look for *Completions* in other
11039         frames as well.
11041         * pcomplete.el: Allow the use of completion-tables.
11042         (pcomplete-std-complete): New command.
11043         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
11044         (pcomplete--here): Use a function for `form' rather than an expression,
11045         so it can be byte-compiled.
11046         (pcomplete-here, pcomplete-here*): Adjust accordingly.
11047         Add edebug declaration.
11048         (pcomplete-show-completions): Remove unused var `curbuf'.
11049         (pcomplete-do-complete, pcomplete-stub):
11050         Don't assume `completions' is a list of strings any more.
11052 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
11054         * find-dired.el (find-name-arg): Fix typo in docstring.
11056 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11058         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
11059         (pcmpl-linux-fs-types): Same, and update to new modules layout.
11061         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
11062         pcomplete-entries.
11064         * comint.el (comint-read-input-ring, comint-write-input-ring)
11065         (comint-substitute-in-file-name)
11066         (comint-dynamic-complete-as-filename)
11067         (comint-dynamic-simple-complete)
11068         (comint-dynamic-list-filename-completions)
11069         (comint-dynamic-list-completions)
11070         (comint-redirect-results-list-from-process): Minor simplifications.
11072 2009-10-21  Kevin Ryde  <user42@zip.com.au>
11074         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
11075         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
11076         the first form.  And insert a blank line after ";;; Code" since
11077         that's usual style.  (Bug#4612)
11079         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
11081 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11083         * minibuffer.el (completion-table-with-terminator): Properly implement
11084         boundaries, in case `terminator' appears in the suffix.
11085         (completion--embedded-envvar-table): Don't return boundaries if
11086         there's no valid completion.  Simplify.
11087         (completion-file-name-table): New completion table extracted from
11088         completion--file-name-table.
11089         (completion--file-name-table): Use it.
11090         (read-file-name-predicate): Declare obsolete.
11091         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
11092         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
11093         completion-file-name-table, and use the `pred' argument.
11094         * files.el (locate-file-completion-table): Use the `pred' arg rather
11095         than read-file-name-predicate.
11096         (abbreviate-file-name): Use \` rather than ^ for BOS.
11098 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
11100         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
11101         vc-responsible-backend to register, it causes problems.
11103 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11105         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
11107 2009-10-21  Eric Ludlam  <zappo@gnu.org>
11109         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
11110         (semantic-c-debug-mode-init-pch): New functions.
11111         (semantic-c-debug-mode-init-last-mode): New var.
11112         (semantic-c-parse-lexical-token): Use them.
11114         * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
11115         When extracting the argument list, limit only by point-max.
11117 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
11119         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
11120         (tramp-smb-handle-file-attributes): Use it.
11121         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
11122         (tramp-smb-handle-insert-directory): Use `mapc' rather than
11123         `mapcar'.  Use `tramp-smb-get-stat-capability'.
11124         Add `dired-filename' text properties.
11125         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
11126         (tramp-smb-maybe-open-connection): Simplify check for smbclient
11127         version.
11129 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11131         * subr.el (read-key-delay): Reduce to 0.01.
11132         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
11133         (bug#4751).
11135 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11137         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
11139         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
11140         (Info-menu): Remove unused vars `last' and `completions'.
11141         (Info-index-nodes): Remove unused var `node'.
11143         * info.el (Info-complete-menu-item): Use complete-with-action.
11145 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
11147         Make vc-annotate work through copies and renames.
11148         * vc-annotate.el (vc-annotate-extract-revision-at-line):
11149         Return the file name too.
11150         (vc-annotate-revision-at-line)
11151         (vc-annotate-find-revision-at-line)
11152         (vc-annotate-revision-previous-to-line)
11153         (vc-annotate-show-log-revision-at-line): Update to get the file
11154         name from vc-annotate-extract-revision-at-line.
11155         (vc-annotate-show-diff-revision-at-line-internal): Change the
11156         argument to mean whether to show a file diff or not.  Get the file
11157         name from vc-annotate-extract-revision-at-line.
11158         (vc-annotate-show-diff-revision-at-line):
11159         Update vc-annotate-show-diff-revision-at-line call.
11160         (vc-annotate-warp-revision): Add an optional file argument.
11162         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
11163         (vc-git-annotate-extract-revision-at-line): Also return the file
11164         name if found.
11166         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
11167         command.  Remove unused code.
11168         (vc-hg-annotate-re): Update to match --follow output.
11169         (vc-hg-annotate-extract-revision-at-line): Also return the file
11170         name if found.
11172         * vc.el: Update annotate-extract-revision-at-line documentation.
11174 2009-10-18  Kevin Ryde  <user42@zip.com.au>
11176         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
11177         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
11179         * net/browse-url.el (browse-url): Identify alist with "consp and
11180         not functionp" and let all other things go down the `apply' leg,
11181         as suggested by Stefan.  (Further to bug#4531.)
11183 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
11185         * minibuffer.el (read-file-name): Check for repeat before putting
11186         a default argument in file-name-history (Bug#4657).
11188         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
11189         read syntax (Bug#4737).
11191         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
11193 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
11195         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
11196         (html-tag-alist, html-tag-help): Add descriptions for undocumented
11197         entries and make note of obsolete tags.
11199 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11201         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
11203 2009-10-18  Glenn Morris  <rgm@gnu.org>
11205         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
11206         grep, so that binary files (eg international/uni-bidi.el) can match.
11207         Remove test for "UnicodeData" files, since it is hopefully unnecessary
11208         now, and in any case the file header format has changed.
11210 2009-10-17  Glenn Morris  <rgm@gnu.org>
11212         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
11213         (flyspell-get-word, flyspell-large-region)
11214         (flyspell-auto-correct-previous-word): Doc/error message fixes.
11216 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
11218         * Makefile.in (ELCFILES): Add ede/shell.
11220 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
11222         * term/common-win.el (x-colors): Purecopy it.
11224 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11226         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
11227         permissive for when the buffer is empty.
11228         (tar-header-block-tokenize): Decode the username and groupname.
11229         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
11231 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
11233         * cedet/srecode/srt.el:
11234         * cedet/srecode/compile.el:
11235         * cedet/semantic/mru-bookmark.el:
11236         * cedet/semantic/debug.el:
11237         * cedet/semantic/complete.el:
11238         * cedet/semantic/analyze.el: Require CL when compiling.
11240 2009-10-17  Eric Ludlam  <zappo@gnu.org>
11242         * cedet/semantic/scope.el
11243         (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
11244         tmpscope so that the regular scope will continue to work.
11246         * cedet/semantic/idle.el (semantic-idle-tag-highlight):
11247         Use semantic-idle-summary-highlight-face as the highlighting.
11249         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
11250         contains multibyte characters, choose first applicable coding
11251         system automatically.
11253         * cedet/ede/project-am.el (project-run-target): New method.
11254         (project-run-target): New method.
11256         * cedet/ede.el (ede-target): Add run target menu item.
11257         (ede-project, ede-minor-keymap): Add ede-run-target binding.
11258         (ede-run-target): New function.
11259         (ede-target::project-run-target): New method.
11261         * cedet/ede/proj.el (project-run-target): New method.
11263         * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
11264         (ede-g++-libtool-shared-compiler): Remove SHELL.  Remove COMMANDS.
11265         Add :rules.
11266         (ede-proj-target-makefile-shared-object): Only libtool compilers
11267         now available.  Add linkers for libtool.
11268         (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
11269         (ede-proj-makefile-target-name): Always use .la extension.
11271         * cedet/ede/proj-prog.el (project-run-target): New method.
11273         * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
11274         (ede-g++-linker): Change Change link lines.
11276         * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
11277         When searching for old variables, go to the end of the buffer and
11278         search backward from there.
11279         (ede-proj-makefile-automake-insert-subdirs)
11280         (ede-proj-makefile-automake-insert-extradist): New methods.
11281         (ede-proj-makefile-create): Use them.
11283         * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
11284         Force FILE to expand to the current target.  Use file-exists-p to
11285         check that it exists.
11287         * cedet/ede/linux.el (ede-linux-version): Don't call "head".
11288         (ede-linux-load): Wrap dir in file-name-as-directory.
11289         Set :version slot.
11291         * cedet/ede/files.el (ede-get-locator-object): When enabling
11292         locate, do so on "top".
11294         * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
11295         file-name-as-directory during compare.
11296         (ede-emacs-version): Return Emacs/XEmacs differentiator.
11297         Get version number from different places.  Don't call egrep.
11298         (ede-emacs-load): Set :version slot.  Call file-name-as-directory
11299         to set the directory.
11301         * cedet/ede/shell.el: New file.
11303         * cedet/inversion.el (inversion-decoders): Allow for stray . in
11304         alpha/beta variants.
11306 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11308         * international/mule-cmds.el (select-safe-coding-system): If the file
11309         has a coding cookie, use it regardless of any other setting (bug#4712).
11311 2009-10-17  Glenn Morris  <rgm@gnu.org>
11313         * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
11314         All errors should have messages.
11316         * foldout.el (foldout-mouse-swallow-events):
11317         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
11319         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
11320         (dired-keep-marker-copy, dired-keep-marker-hardlink)
11321         (dired-keep-marker-symlink, dired-dwim-target)
11322         (dired-copy-preserve-time): Do not autoload these defcustoms.
11324         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
11325         messages from messing up the file coding.  (Bug#4623)
11327 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
11329         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
11330         if no match is found for the current dictionary.  (Bug#4578)
11332         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
11333         optional, since that is how it is documented, and this is often called
11334         with a nil argument.  (Bug#4577)
11335         (flyspell-external-point-words, flyspell-auto-correct-word)
11336         (flyspell-correct-word-before-point, flyspell-word-search-forward)
11337         (flyspell-word-search-backward): Remove nil argument in calls to
11338         flyspell-get-word, since it is not needed now.
11340 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
11342         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
11344 2009-10-16  Glenn Morris  <rgm@gnu.org>
11346         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
11348 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
11350         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
11351         (ange-ftp-file-size): New function.
11352         (ange-ftp-file-attributes): Use it.
11354 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
11356         * net/tramp-smb.el (tramp-smb-version): New defvar.
11357         (tramp-smb-maybe-open-connection): Use it, in order to avoid
11358         repeated checks.
11360 2009-10-16  Glenn Morris  <rgm@gnu.org>
11362         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
11363         Maybe copy some custom properties from old to new name.  (Bug#4706)
11365 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
11367         * subr.el (error, sit-for, start-process-shell-command)
11368         (start-file-process-shell-command): Set the calling convention
11369         after the function definition.
11371 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11373         * subr.el (error, sit-for, start-process-shell-command)
11374         (start-file-process-shell-command): Use the new
11375         set-advertised-calling-convention feature.
11377 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
11379         * international/ucs-normalize.el (ucs-normalize-version):
11380         Change to 1.2.
11381         (check-range): Adjust for Unicode 5.2.
11383 2009-10-15  Juri Linkov  <juri@jurta.org>
11385         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
11386         to the `menu-item' format.
11388 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
11390         * net/tramp.el (tramp-replace-environment-variables): Do not fail
11391         if the environment variable does not exist.
11393         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11394         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
11395         parameter.
11396         (tramp-smb-handle-add-name-to-file)
11397         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
11398         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
11399         (tramp-smb-handle-file-attributes)
11400         (tramp-smb-do-file-attributes-with-stat)
11401         (tramp-smb-handle-file-local-copy)
11402         (tramp-smb-handle-insert-directory)
11403         (tramp-smb-handle-make-directory)
11404         (tramp-smb-handle-make-directory-internal)
11405         (tramp-smb-handle-make-symbolic-link)
11406         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
11407         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
11408         (tramp-smb-maybe-open-connection): Apply the changed parameters.
11409         (tramp-smb-read-file-entry): Read Disk names in compressed format.
11410         Handle long file names.
11411         (tramp-smb-get-cifs-capabilities): Check, whether the connection
11412         process is running.
11413         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
11414         Read share names with "-g" option.
11416 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
11418         * net/rcirc.el (rcirc-view-log-file): New command.
11419         (rcirc-track-minor-mode-map): Remove C-c ` binding.
11420         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
11421         specified.
11423 2009-10-15  Glenn Morris  <rgm@gnu.org>
11425         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
11426         from the second command-line argument.
11427         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
11428         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
11429         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
11430         w32-batch-update-autoloads.
11431         * emacs-lisp/autoload.el (autoload-make-program): New variable.
11432         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
11434         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
11435         the headers cannot be located.  Simplify, subtracting superflous
11436         save-excursions.
11438 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11440         Replace completion-base-size by completion-base-position to fix bugs
11441         such as (bug#4699).
11442         * simple.el (completion-base-position): New var.
11443         (completion-base-size): Mark as obsolete.
11444         (choose-completion): Make it work for mouse events as well.
11445         Pass the new base-position to choose-completion-string.
11446         (choose-completion-guess-base-position): New function, extracted from
11447         choose-completion-delete-max-match.
11448         (choose-completion-delete-max-match): Use it.  Make obsolete.
11449         (choose-completion-string): Use the new base-position info.
11450         (completion-root-regexp): Delete.
11451         (completion-setup-function): Preserve completion-base-position.
11452         Eliminate obsolete base-size manipulation.
11453         * minibuffer.el (display-completion-list): Don't mess with base-size.
11454         (minibuffer-completion-help): Set completion-base-position instead.
11455         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
11456         choose-completion.
11457         * textmodes/bibtex.el (bibtex-complete):
11458         * emacs-lisp/crm.el (crm--choose-completion-string):
11459         Adjust to new calling convention.
11460         * complete.el (partial-completion-mode): Use minibufferp to avoid
11461         bumping into incompatible change to choose-completion-string-functions.
11462         * ido.el (ido-choose-completion-string): Make its calling convention
11463         more permissive.
11464         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
11465         base-size manipulation.
11466         (comint-dynamic-list-input-ring): Use dotimes and push.
11467         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
11468         fundamental-mode.  Use `or'.
11470 2009-10-14  Juri Linkov  <juri@jurta.org>
11472         * misearch.el (multi-isearch-next-buffer-from-list)
11473         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
11475 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11477         * Makefile.in (compile-onefile): Load `bytecomp' rather than
11478         `bytecomp.el'.
11480         * minibuffer.el (completion-pcm--merge-completions): Make sure the
11481         string we return is all made up of text from the completions rather
11482         than part from the completions and part from the input (bug#4219).
11484         * ido.el (ido-everywhere): Use define-minor-mode.
11486         * buff-menu.el (list-buffers, ctl-x-map):
11487         Mark the entry points with ;;;###autoload cookies.
11489 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
11491         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
11492         correctly in the detached head case.
11493         (vc-git-print-log): Remove unused binding.
11495         * vc.el (vc-responsible-backend): When a directory is passed for
11496         for registration create a VC repository if no backend is
11497         responsible for the directory argument.
11498         (vc-deduce-fileset): Tell vc-responsible-backend to register.
11500         * vc.el: Move comments about RCS and SCCS ...
11501         * vc-rcs.el:
11502         * vc-sccs.el: ... here, respectively.
11504 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11506         * minibuffer.el (completion--file-name-table): Return nil if there's
11507         no file completion, even if substitute-in-file-name changed
11508         the string (bug#4708).
11510 2009-10-13  Juri Linkov  <juri@jurta.org>
11512         * files-x.el (read-file-local-variable-value): Don't filter out
11513         minor modes from mode name completion (bug#4664).
11515 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
11517         * international/mule-cmds.el (ucs-names): Remove exclusion of
11518         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
11520 2009-10-13  Kenichi Handa  <handa@m17n.org>
11522         * international/uni-name.el: Regenerated.
11524 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
11526         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
11527         should be automatically buffer-local, but isn't.)
11529 2009-10-12  Sam Steingold  <sds@gnu.org>
11531         * progmodes/compile.el (compilation-next-error-function): Fix the
11532         timestamps if the buffer has been visited before.
11533         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
11534         non-anchored patterns, like the perl one (bug#3928).
11536 2009-10-12  Glenn Morris  <rgm@gnu.org>
11538         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
11539         Let-bind `size'.
11541 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
11543         * proced.el (proced-unload-function): New function.
11545         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
11546         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
11547         Doc fix.
11549         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
11551 2009-10-11  Juri Linkov  <juri@jurta.org>
11553         * files-x.el (read-file-local-variable-value):
11554         Provide default value only for bound variables (bug#4664).
11556 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
11558         * net/tramp.el (tramp-local-host-p): Function shall return nil for
11559         connection methods like smb.
11561         * net/tramp-cache.el (tramp-flush-connection-property): The hash
11562         can be empty.
11564         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11565         (tramp-smb-file-name-handler-alist): Add handlers for
11566         `add-name-to-file', `make-symbolic-link'.
11567         (tramp-smb-handle-add-name-to-file)
11568         (tramp-smb-do-file-attributes-with-stat)
11569         (tramp-smb-handle-make-symbolic-link)
11570         (tramp-smb-get-cifs-capabilities): New defuns.
11571         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
11572         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
11573         (tramp-smb-handle-file-local-copy)
11574         (tramp-smb-handle-make-directory-internal)
11575         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
11576         The file name syntax depends on cifs capabilities.
11577         (tramp-smb-handle-file-attributes):
11578         Call `tramp-smb-do-file-attributes-with-stat' if possible.
11579         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
11580         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
11582 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
11584         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
11585         (eieio-defclass): Apply deftype handler and setf-method properties
11586         directly.
11587         (eieio-add-new-slot): Avoid union function from cl library.
11588         (eieio--typep): New function.
11589         (eieio-perform-slot-validation): Use it.
11591 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
11593         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
11594         Update documentation to refer to the variables documented in r1.135.
11595         (Bug#4188)
11597 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
11599         * bookmark.el (Info-suffix-list): Remove this unused variable.
11600         (bookmark-current-point): Remove this obsolete variable.
11601         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
11602         Adjust for removal of bookmark-current-point.
11604         (bookmarks-already-loaded, bookmark-current-buffer)
11605         (bookmark-yank-point): Document.  (Bug#4188)
11607 2009-10-10  Glenn Morris  <rgm@gnu.org>
11609         * frame.el (frame-height): Doc fix.
11611         * calendar/calendar.el (calendar-split-width-threshold): New option.
11612         (calendar-basic-setup): Use calendar-split-width-threshold.
11614 2009-10-10  Sascha Wilde  <wilde@sha-bang.de>
11616         * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
11617         Use .la for Automake.
11619 2009-10-09  Chong Yidong  <cyd@stupidchicken.com>
11621         * cedet/ede/pconf.el (ede-proj-configure-synchronize):
11622         Use "autoreconf -i".  Suggested by Andreas Schwab.
11624 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
11626         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
11627         Ideographic Supplement" range (U+1F200..U+1F2FF).
11629 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
11631         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
11632         since the list will have been rebuilt anyway.  (Bug#4349)
11634 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
11636         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
11637         (bookmark-bmenu-execute-deletions): Don't save here, as
11638         bookmark-delete will now do so if necessary.
11639         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
11640         (Bug#4348)
11642 2009-10-09  Glenn Morris  <rgm@gnu.org>
11644         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
11646 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
11648         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
11649         (bookmark-jump-other-window): Just invoke bookmark-jump with new
11650         argument now, so the two function's behaviors will match.  (Bug#3645)
11652 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
11654         * cedet/ede/proj.el (project-make-dist, project-compile-project):
11655         Fix filename test.
11656         (ede-proj-dist-makefile): Use expand-file-name instead of concat
11657         to expand file names.
11659 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
11661         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
11662         (tramp-file-name-real-host, tramp-file-name-port):
11663         Apply `save-match-data'.
11665         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
11666         case both directories are remote.
11667         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
11668         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
11670 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
11672         * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
11673         (ede-proj-target-makefile-objectcode): Use it.
11675         * cedet/ede/source.el (ede-want-any-source-files-p)
11676         (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
11677         Return search result.  This error was introduced while merging.
11679 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
11681         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
11683 2009-10-07  Glenn Morris  <rgm@gnu.org>
11685         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
11686         of concat.
11688 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11690         * files-x.el (read-file-local-variable): Include some
11691         non-user-variables in the completion table (bug#4664).
11693 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
11695         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
11696         message.
11698         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11699         (tramp-smb-file-name-handler-alist): Add handler for
11700         `copy-directory', `expand-file-name', `set-file-modes'.
11701         (tramp-smb-handle-copy-directory)
11702         (tramp-smb-handle-expand-file-name)
11703         (tramp-smb-handle-set-file-modes): New defuns.
11704         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
11705         (tramp-smb-handle-file-attributes): Simplify check for retrieving
11706         entry.
11707         (tramp-smb-handle-insert-directory): Don't flush the cache.
11708         (tramp-smb-maybe-open-connection): Check for samba client and
11709         server versions.
11711 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
11713         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
11714         to not error out of search for "^lisp=" fails.
11716 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
11718         * makefile.w32-in (WINS_UPDATES): New macro.
11719         (custom-deps, finder-data, autoloads): Use it.
11721 2009-10-07  Glenn Morris  <rgm@gnu.org>
11723         * Makefile.in (autoloads): Revert previous change.
11724         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
11725         the list of preloaded files passed on the command-line, get
11726         it from src/Makefile.
11728         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
11729         show the original buffer rather than a random one.
11731 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
11733         * help.el (describe-no-warranty): Place point in a slightly better
11734         position in the GPLv3 text.
11736 2009-10-06  Sam Steingold  <sds@gnu.org>
11738         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
11739         the comm attribute is present before calling regexp-quote.
11741 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
11743         * play/animate.el (animate-string): For good effect, make sure
11744         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
11746         * play/animate.el (animate-sequence, animate-birthday-present):
11747         * misc.el (butterfly): Don't set `indent-tabs-mode'.
11749 2009-10-06  Glenn Morris  <rgm@gnu.org>
11751         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
11753         * emacs-lisp/autoload.el (autoload-excludes): New variable.
11754         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
11755         (batch-update-autoloads): Process a string value of autoload-excludes,
11756         set during the build process.
11757         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
11759         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
11760         inside with-parsed...  macro so that `v' is defined.
11762         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
11763         * progmodes/fortran.el (fortran-end-of-block)
11764         (fortran-beginning-of-block):
11765         Also push mark in the macro case.
11767         * emerge.el (emerge-show-file-name):
11768         * calc/calc.el (calc-quit):
11769         * calc/calc-misc.el (calc-big-or-small):
11770         * calc/calc-graph.el (calc-graph-view):
11771         * calc/calc-ext.el (calc-reset):
11772         * calendar/calendar.el (calendar-basic-setup):
11773         Use window-full-height-p.
11775         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
11776         header we don't understand, don't insert another.  (Bug#4624)
11777         If changing mime charset, insert the new one in the right place.
11779 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
11781         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
11782         (cal-tex-cursor-month): Correctly increment the end date for diary and
11783         holiday listing.  (Bug#4626)
11785 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11787         * help-fns.el (describe-function-1): Don't burp if the function is not
11788         a symbol.
11790 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
11792         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
11793         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
11794         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
11795         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
11797         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
11798         (eieio-default-superclass): Reflow docstrings.
11799         (this, class-option-assoc, defclass, eieio-class-un-autoload)
11800         (eieio-unbind-method-implementations, defmethod)
11801         (eieio-validate-slot-value, eieio-validate-class-slot-value)
11802         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
11803         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
11804         (eieio-slot-originating-class-p, eieio-slot-name-index)
11805         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
11806         (constructor, initialize-instance, no-next-method, object-print)
11807         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
11808         Fix typos in docstrings.
11809         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
11810         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
11811         (next-method-p): Doc fixes.
11812         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
11813         Fix typos in error messages.
11814         (eieio-defmethod): Fix typo in description of generic method.
11816         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
11817         (eieio-persistent-save-interactive, slot-missing):
11818         Fix typos in docstrings.
11819         (eieio-instance-inheritor-slot-boundp): Doc fix.
11821         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
11822         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
11824         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
11825         (eieio-custom-object-apply-reset):
11826         Fix typos in docstrings and error messages.
11828         * emacs-lisp/eieio-datadebug.el (data-debug-show):
11829         Fix typo in docstring.
11831         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
11832         (eieio-browse-tree): Doc fix.
11833         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
11834         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
11835         Fix typos in docstrings.
11837         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
11838         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
11839         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
11840         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
11841         Reflow docstrings.
11843 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
11845         * vc-hg.el (log-view-vc-backend): Declare for compiler.
11846         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
11847         Set log-view-vc-backend so that diff can work.
11849         * log-view.el (log-view-diff): Use vc-diff-internal instead of
11850         vc-version-diff.
11851         (vc-diff-internal): Autoload this instead of vc-version-diff.
11853 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
11855         * simple.el (eval-expression): Doc fix.
11857         * progmodes/cwarn.el (cwarn-mode): Doc fix.
11859 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
11861         * files.el (directory-files-no-dot-files-regexp): New defconst.
11862         (delete-directory): Use it.
11863         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
11865         * net/tramp.el (tramp-verbose): Fix docstring.
11866         (tramp-methods): Add recursive option to `tramp-copy-args'.
11867         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
11868         "scp1_old", "scp2_old", "rsync", "rsyncc".
11869         (tramp-default-method): Check also for `auth-source-user-or-password'.
11870         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
11871         Add handler for `copy-directory'.
11872         (tramp-handle-copy-directory): New defun.
11873         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
11874         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
11875         Optimize sent command.
11877 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11879         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
11880         window if necessary.
11882         * calendar/calendar.el (calendar-basic-setup): Don't call
11883         switch-to-buffer in a dedicated window.
11885 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
11887         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
11888         don't do anything related to relocating, just return nil.
11889         (bookmark-error-no-filename): New error.
11890         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
11891         bookmark has no file.  Don't even attempt to handle things that
11892         are not files; the whole point of custom handlers is to keep that
11893         knowledge elsewhere anyway.  Tighten some comments.
11894         (bookmark-file-or-variation-thereof): Remove now-unused function.
11895         (bookmark-location): Doc string fix.
11896         (Bug#4250)
11898 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11900         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
11901         don't use a file dialog, because they usually don't know how to read
11902         a directory target from the user.  (Bug#4230)
11903         Also, make sure the prompt can display directories as well as files.
11905 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11907         * bookmark.el (bookmark-set, bookmark-buffer-name):
11908         Improve doc strings.  (Bug#1193)
11910 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11912         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
11913         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
11914         (bookmark-get-annotation, bookmark-set-annotation)
11915         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
11916         (bookmark-set-position, bookmark-get-front-context-string)
11917         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
11918         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
11919         (bookmark-jump-other-window, bookmark-handle-bookmark)
11920         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
11921         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
11922         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
11923         Improve doc strings to say whether bookmark can be a string or
11924         a record or both, and make other consistency and clarity fixes.
11925         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
11926         (bookmark-default-annotation-text, bookmark-yank-word)
11927         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
11928         (bookmark-import-new-list, bookmark-maybe-rename)
11929         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
11930         (bookmark-bmenu-bookmark): Give these doc strings.
11931         (bookmark-bmenu-check-position): Give this a doc string, but also
11932         add a FIXME comment about how the function may be pointless.
11933         (bookmark-default-handler): Rework doc string and change a
11934         parameter name, to clarify that this takes a bookmark record
11935         not a bookmark name.
11936         (bookmark-set): Change a parameter name to indicate its meaning,
11937         and improve the doc string a bit.
11938         (Bug#4188)
11940 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11942         * bookmark.el (bookmark-alist): Document the new `handler' element
11943         in the param alist.
11944         (bookmark-make-record-function): Adjust documentation for above.
11945         (Bug#4193)
11947 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11949         * info.el (Info-bookmark-make-record): Document this function.
11950         (Info-bookmark-jump): Document with a doc string, not just a comment.
11951         (Bug#4203)
11953 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
11955         * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
11956         (semantic-new-buffer-fcn): Call parser setup functions here.
11957         (semantic-mode): Don't call parser setup functions here, it's done
11958         in semantic-new-buffer-fcn now.
11959         (semantic-mode): Parse all existing buffers when enabled.
11961         * cedet/srecode/compile.el (srecode-compile-file):
11962         Call semantic-new-buffer-fcn if the buffer has not been parsed.
11964 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
11966         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
11968         * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
11969         (proj-comp-insert-variable-once): New macro, renamed from
11970         ede-pmake-insert-variable-once in ede/pmake.edl.
11971         (ede-proj-makefile-insert-variables): Use it.
11973 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
11975         * files.el (copy-directory): New defun.
11977         * dired-aux.el (dired-copy-file-recursive): Use it.
11979 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
11981         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
11982         (makefile-end-of-command):
11983         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
11984         (semantic-end-of-context): Fix previous change.  Doc fixes.
11986 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
11988         * files-x.el (modify-dir-local-variable)
11989         (copy-dir-locals-to-file-locals-prop-line):
11990         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
11991         (makefile-end-of-command):
11992         * cedet/semantic/lex.el (semantic-lex-token):
11993         * cedet/semantic/analyze/fcn.el
11994         (semantic-analyze-dereference-metatype-1):
11995         * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
11996         (semantic-lex-cpp-undef):
11997         * cedet/semantic/wisent/wisent.el (wisent-skip-block):
11998         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
11999         (semantic-end-of-context): Fix typos in docstrings.
12001         * recentf.el (recentf-unload-function): New function.
12003 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
12005         * cedet/ede.el (ede-project-placeholder-cache-file):
12006         * cedet/semantic/db-file.el (semanticdb-default-save-directory):
12007         * cedet/srecode/map.el (srecode-map-save-file):
12008         Use locate-user-emacs-file.  Suggested by Juanma Barranquero.
12010 2009-10-04  Glenn Morris  <rgm@gnu.org>
12012         * window.el (window-full-height-p): Add doc string.
12014 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
12016         * window.el (window-full-height-p): New function.  (Bug#4543)
12018 2009-10-03  Chong Yidong  <cyd@stupidchicken.com>
12020         * cedet/srecode/insert.el: Require srecode/args.
12022         * cedet/srecode/args.el: Require srecode/dictionary instead of
12023         srecode/insert.
12025         * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
12027         * files.el (auto-mode-alist): Add .srt and Project.ede.
12029         * cedet/semantic.el (semantic-mode):
12030         Handle srecode-template-mode-hook as well.
12031         (semantic-mode): Use js-mode-hook for Javascript hook.
12033         * cedet/srecode/template.el: Remove hook variable.
12035         * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
12037         * cedet/ede.el (ede-target-forms-menu): Don't enable if no
12038         projects exist.
12039         (ede-project-placeholder-cache-file): Default to a file in
12040         user-emacs-directory.
12042         * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
12043         templates in data-directory.
12044         (srecode-map-save-file): Default to a file in user-emacs-directory.
12046         * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
12047         directory.
12049 2009-09-30  Eric Ludlam  <zappo@gnu.org>
12051         * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
12052         Doc fix.
12054         * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
12055         Only insert each variable once.
12057         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
12058         (ede-pmake-insert-variable-shared): Use it.
12060         * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
12061         for lexical table iff table is nil.
12063 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
12065         * vc.el: Remove commented out code.
12066         (vc-derived-from-dir-mode): Remove, unused.
12067         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
12069 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
12071         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
12072         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
12073         there could be recursive loading when `default-directory' is a
12074         remote file name.  (Bug#4614)
12076 2009-10-03  Glenn Morris  <rgm@gnu.org>
12078         * calendar/calendar.el (calendar-basic-setup): Handle the case where
12079         the frame is wide.
12080         (calendar-generate-window): Test for shrinkability rather than width.
12082         * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
12083         declaration, currently false.
12085         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
12086         reusing existing buffers, in case we happen to visit two files with the
12087         same basename.  (Bug#4593)
12089 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
12091         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
12092         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
12093         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
12094         subdirs of cedet as well.
12095         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
12097 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12099         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
12100         Obey advertised-signature-table.
12102         * help-fns.el (help-function-arglist): Don't check
12103         advertised-signature-table.
12104         (describe-function-1): Do it here instead so it also applies to subrs.
12106 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
12108         * simple.el (start-file-process): Say in the doc-string, that file
12109         handlers might not support pty association, if PROGRAM is nil.
12111         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
12112         HOST and USER are strings.  They are nil, when there are
12113         incomplete entries in ~/.netrc, for example.
12114         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
12115         root directory ("device busy" error otherwise).
12117         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
12118         Flush file properties of created directory.
12120 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
12122         * makefile.w32-in (WINS_BASIC): Remove cedet.
12123         (WINS_CEDET): Add cedet.
12124         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
12126 2009-10-02  Kevin Ryde  <user42@zip.com.au>
12128         * net/browse-url.el (browse-url): Pass any symbol in
12129         browse-url-browser-function to `apply', since if you've mistakenly put
12130         an unbound symbol then the error is clearer.  (Bug#4531)
12132 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
12134         * allout.el (allout-init, allout-back-to-current-heading)
12135         (allout-beginning-of-current-entry, allout-ascend-to-depth)
12136         (allout-ascend, allout-up-current-level, allout-end-of-level)
12137         (allout-previous-visible-heading, allout-forward-current-level)
12138         (allout-backward-current-level, allout-show-children):
12139         * apropos.el (apropos-describe-plist):
12140         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
12141         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
12142         * completion.el (add-completion, add-permanent-completion):
12143         * descr-text.el (describe-text-category, describe-char):
12144         * desktop.el (desktop-lazy-abort):
12145         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
12146         * dired.el (dired-build-subdir-alist):
12147         * ediff.el (ediff-version):
12148         * elide-head.el (elide-head, elide-head-show):
12149         * emerge.el (emerge-version):
12150         * env.el (getenv):
12151         * face-remap.el (variable-pitch-mode):
12152         * faces.el (describe-face):
12153         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
12154         (dired-at-point):
12155         * files.el (find-file-existing, auto-save-mode):
12156         * font-lock.el (font-lock-fontify-buffer):
12157         * help-fns.el (describe-function, describe-variable)
12158         (describe-syntax, describe-categories):
12159         * help.el (view-lossage, describe-bindings, describe-key)
12160         (describe-mode):
12161         * hexl.el (hexl-current-address):
12162         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
12163         * info.el (Info-goto-emacs-key-command-node):
12164         * log-edit.el (log-edit-insert-cvs-template)
12165         (log-edit-insert-cvs-rcstemplate):
12166         * menu-bar.el (menu-bar-mode):
12167         * mouse.el (mouse-appearance-menu):
12168         * newcomment.el (comment-indent-new-line):
12169         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
12170         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
12171         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
12172         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
12173         * recentf.el (recentf-mode):
12174         * savehist.el (savehist-mode, savehist-save):
12175         * shadowfile.el (shadow-copy-files):
12176         * simple.el (kill-ring-save, next-line, previous-line)
12177         (normal-erase-is-backspace-mode):
12178         * strokes.el (strokes-update-window-configuration)
12179         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
12180         (strokes-xpm-for-stroke):
12181         * time.el (emacs-uptime, emacs-init-time):
12182         * tutorial.el (tutorial--describe-nonstandard-key)
12183         (tutorial--detailed-help):
12184         * type-break.el (type-break-mode)
12185         (type-break-mode-line-message-mode, type-break-query-mode)
12186         (type-break-guesstimate-keystroke-threshold):
12187         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
12188         * version.el (emacs-version):
12189         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
12190         * winner.el (winner-mode):
12191         * calendar/timeclock.el (timeclock-in, timeclock-out)
12192         (timeclock-status-string, timeclock-change)
12193         (timeclock-workday-remaining-string)
12194         (timeclock-workday-elapsed-string)
12195         (timeclock-when-to-leave-string):
12196         * calendar/todo-mode.el (todo-add-category):
12197         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
12198         * emacs-lisp/autoload.el (update-file-autoloads):
12199         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
12200         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
12201         (checkdoc-message-text, checkdoc-defun):
12202         * emacs-lisp/debug.el (debugger-list-functions):
12203         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12204         * emacs-lisp/eieio-opt.el (eieio-describe-class)
12205         (eieio-describe-generic):
12206         * emacs-lisp/lisp-mnt.el (lm-synopsis):
12207         * emacs-lisp/shadow.el (list-load-path-shadows):
12208         * emulation/cua-base.el (cua-mode):
12209         * emulation/edt.el (edt-set-scroll-margins):
12210         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
12211         (tpu-toggle-regexp, tpu-toggle-search-direction)
12212         (tpu-toggle-rectangle, tpu-toggle-control-keys):
12213         * emulation/tpu-extras.el (tpu-set-scroll-margins):
12214         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
12215         (viper-set-parsing-style-toggling-macro)
12216         (viper-set-emacs-state-searchstyle-macros):
12217         * emulation/viper.el (viper-set-hooks):
12218         * eshell/esh-mode.el (eshell-truncate-buffer):
12219         * international/mule-cmds.el (prefer-coding-system)
12220         (describe-input-method, describe-language-environment):
12221         * international/mule-diag.el (list-character-sets)
12222         (describe-character-set, describe-coding-system)
12223         (describe-fontset, list-fontsets, list-input-methods):
12224         * mail/sendmail.el (mail-signature):
12225         * net/ange-ftp.el (ange-ftp-copy-file):
12226         * net/browse-url.el (browse-url):
12227         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
12228         * net/quickurl.el (quickurl-add-url):
12229         * net/rcirc.el (names, topic):
12230         * net/xesam.el (xesam-mode):
12231         * play/5x5.el (5x5-new-game):
12232         * play/yow.el (apropos-zippy):
12233         * progmodes/ada-mode.el (ada-mode-version):
12234         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
12235         (f90-end-of-block)
12236         (f90-beginning-of-block):
12237         * progmodes/fortran.el (fortran-end-of-block)
12238         (fortran-beginning-of-block):
12239         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
12240         * progmodes/python.el (python-describe-symbol, python-shell):
12241         * term/ns-win.el (ns-print-buffer):
12242         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
12243         * textmodes/flyspell.el (flyspell-mode-on):
12244         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
12245         (pages-directory-for-addresses):
12246         * textmodes/table.el (table-recognize-cell)
12247         (table-query-dimension, table-generate-source)
12248         (table-insert-sequence, table--warn-incompatibility):
12249         * textmodes/tex-mode.el (tex-validate-buffer):
12250         * textmodes/texinfmt.el (texinfmt-version)
12251         (texinfo-format-buffer):
12252         Use `called-interactively-p' instead of `interactive-p'.
12254 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
12256         * image-mode.el (image-toggle-display):
12257         * emacs-lisp/elp.el (elp-instrument-function):
12258         * emacs-lisp/advice.el (ad-make-advised-definition):
12259         * emacs-lisp/easy-mmode.el (define-minor-mode):
12260         * net/browse-url.el (browse-url-maybe-new-window):
12261         * progmodes/sh-script.el (sh-learn-buffer-indent):
12262         Pass new argument 'any to `called-interactively-p'.
12264 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
12266         * international/uni-bidi.el:
12267         * international/uni-category.el:
12268         * international/uni-combining.el:
12269         * international/uni-comment.el:
12270         * international/uni-decimal.el:
12271         * international/uni-decomposition.el:
12272         * international/uni-digit.el:
12273         * international/uni-lowercase.el:
12274         * international/uni-mirrored.el:
12275         * international/uni-name.el:
12276         * international/uni-numeric.el:
12277         * international/uni-old-name.el:
12278         * international/uni-titlecase.el:
12279         * international/uni-uppercase.el:
12280         Regenerate from Unicode 5.2.0 data.
12282 2009-10-01  Glenn Morris  <rgm@gnu.org>
12284         * Makefile.in (ELCFILES): Regenerate.
12286 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12288         * subr.el (interactive-p): Mark obsolete.
12289         (called-interactively-p): Make the optional-ness of `kind' obsolete.
12290         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
12291         advertised-signature-table for subroutines as well.
12293         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
12294         (set-advertised-calling-convention): New function.
12295         (make-obsolete, define-obsolete-function-alias)
12296         (make-obsolete-variable, define-obsolete-variable-alias):
12297         Make the optional-ness of `when' obsolete.
12298         (define-obsolete-face-alias): Make `when' non-optional.
12299         * help-fns.el (help-function-arglist):
12300         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
12301         Use advertised-signature-table.
12303 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
12305         * files.el (delete-directory): New defun.  The original function
12306         in fileio.c has been renamed to `delete-directory-internal'.
12308         * dired.el (dired-delete-file): Call `delete-directory' with
12309         RECURSIVE parameter.
12311         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
12312         parameter RECURSIVE.  Implementation is missing.
12314         * net/tramp.el (tramp-handle-make-directory): Flush upper
12315         directory's file properties.
12316         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
12317         (tramp-handle-dired-recursive-delete-directory): Flush directory
12318         properties after the remove command only.
12320         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
12321         Handle optional parameter RECURSIVE.
12323         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
12324         Handle optional parameter RECURSIVE.
12326         * net/tramp-smb.el (tramp-smb-errors): Add error message for
12327         connection timeout.
12328         (tramp-smb-handle-delete-directory): Handle optional parameter
12329         RECURSIVE.
12331 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12333         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
12334         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
12335         (byte-compile-defmacro): Use backquotes.
12337         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
12339         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
12340         has no associated file.
12341         (vc-resynch-buffer): Use vc-dir-buffers.
12343 2009-10-01  Glenn Morris  <rgm@gnu.org>
12345         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
12346         (chart-file-count):
12347         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
12348         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
12349         * emacs-lisp/eieio-opt.el (eieio-describe-class):
12350         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
12351         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
12352         (eieio-copy-parents-into-subclass, make-instance, class-children)
12353         (eieio-generic-form):
12354         * cedet/cedet-files.el (cedet-directory-name-to-file-name):
12355         * cedet/cedet-idutils.el (cedet-idutils-search)
12356         (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
12357         (cedet-idutils-version-check):
12358         * cedet/cedet.el (cedet-version):
12359         * cedet/data-debug.el (data-debug-insert-overlay-button)
12360         (data-debug-insert-overlay-list-button)
12361         (data-debug-insert-buffer-button)
12362         (data-debug-insert-buffer-list-button)
12363         (data-debug-insert-process-button, data-debug-insert-ring-button)
12364         (data-debug-insert-widget, data-debug-insert-stuff-list-button)
12365         (data-debug-insert-stuff-vector-button)
12366         (data-debug-insert-symbol-button, data-debug-insert-string)
12367         (data-debug-insert-number, data-debug-insert-lambda-expression)
12368         (data-debug-insert-nil, data-debug-insert-simple-thing)
12369         (data-debug-insert-custom, data-debug-edebug-expr):
12370         * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
12371         (global-ede-mode-map, ede-new, ede-debug-target)
12372         (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
12373         * cedet/semantic.el (semantic-minimum-working-buffer-size)
12374         (semantic-fetch-tags, semantic-submode-list)
12375         (semantic-default-submodes):
12376         * cedet/ede/source.el (ede-source-match):
12377         * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
12378         (project-am-package-info):
12379         * cedet/ede/proj.el (ede-proj-target, project-new-target):
12380         * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
12381         * cedet/ede/proj-comp.el (ede-current-build-list):
12382         * cedet/ede/makefile-edit.el (makefile-move-to-macro):
12383         * cedet/ede/files.el (ede-toplevel-project-or-nil):
12384         * cedet/ede/cpp-root.el (initialize-instance):
12385         * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
12386         (autoconf-parameter-strip, autoconf-insert-new-macro):
12387         * cedet/semantic/wisent.el (wisent-lex-eoi):
12388         * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
12389         (semantic-show-parser-state-mode):
12390         * cedet/semantic/texi.el (semantic-texi-environment-regexp):
12391         * cedet/semantic/tag.el (semantic-tag-new-variable)
12392         (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
12393         (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
12394         (semantic--tag-deep-copy-tag-list)
12395         (semantic-tag-components-with-overlays-default):
12396         * cedet/semantic/symref.el (semantic-symref-find-text):
12397         * cedet/semantic/senator.el (senator-yank-tag)
12398         (senator-transpose-tags-up):
12399         * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
12400         (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
12401         * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
12402         * cedet/semantic/lex.el (semantic-lex-comment-regex)
12403         (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
12404         (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
12405         * cedet/semantic/lex-spp.el
12406         (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
12407         (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
12408         * cedet/semantic/idle.el
12409         (semantic-idle-summary-current-symbol-info-brutish)
12410         (semantic-idle-summary-current-symbol-info-default):
12411         * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
12412         (semantic--grammar-macro-compl-dict):
12413         * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
12414         * cedet/semantic/format.el (semantic-format-tag-custom-list)
12415         (semantic-format-tag-canonical-name-default):
12416         * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
12417         (semantic-find-tags-for-completion)
12418         (semantic-find-tags-by-scope-protection-default)
12419         (semantic-deep-find-tags-for-completion):
12420         * cedet/semantic/edit.el
12421         (semantic-edits-incremental-reparse-failed-hook)
12422         (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
12423         (semantic-edits-splice-remove, semantic-edits-splice-replace):
12424         * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
12425         * cedet/semantic/dep.el (semantic-dependency-include-path):
12426         * cedet/semantic/db.el (semanticdb-default-find-index-class)
12427         (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
12428         (semanticdb-project-roots):
12429         * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
12430         (semanticdb-find-adebug-insert-scanned-tag-cons)
12431         (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
12432         (semanticdb-brute-deep-find-tags-for-completion):
12433         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
12434         * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
12435         (semantic-end-of-context-default)
12436         (semantic-ctxt-current-function-default)
12437         (semantic-ctxt-scoped-types-default):
12438         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
12439         (semantic-complete-inline-tag-engine)
12440         (semantic-complete-inline-custom-type)
12441         (semantic-complete-read-tag-analyzer):
12442         * cedet/semantic/chart.el (semantic-chart-tags-by-class)
12443         (semantic-chart-database-size):
12444         * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
12445         (semantic-analyze-current-context):
12446         * cedet/semantic/symref/list.el (semantic-symref)
12447         (semantic-symref-hide-buffer, semantic-symref-symbol):
12448         * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
12449         * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
12450         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
12451         * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
12452         (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
12453         (semantic-c-dereference-template):
12454         * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
12455         (semantic--analyze-refs-full-lookup-with-parents)
12456         (semantic--analyze-refs-full-lookup-simple):
12457         * cedet/semantic/analyze/complete.el
12458         (semantic-analyze-possible-completions):
12459         * cedet/srecode/table.el (srecode-mode-table-new):
12460         * cedet/srecode/srt.el (srecode-read-variable-name):
12461         * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
12462         * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
12463         (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
12464         * cedet/srecode/map.el (srecode-current-map):
12465         * cedet/srecode/insert.el (srecode-insert)
12466         (srecode-insert-variable-secondname-handler, srecode-insert-method)
12467         (srecode-template-inserter-point-override)
12468         (srecode-insert-include-lookup):
12469         * cedet/srecode/getset.el (srecode-auto-choose-class):
12470         * cedet/srecode/extract.el (srecode-inserter-extract):
12471         * cedet/srecode/document.el
12472         (srecode-document-autocomment-return-last-alist)
12473         (srecode-document-autocomment-param-type-alist)
12474         (srecode-document-insert-function-comment)
12475         (srecode-document-insert-variable-one-line-comment)
12476         (srecode-document-function-name-comment):
12477         * cedet/srecode/dictionary.el (srecode-create-dictionary)
12478         (srecode-compound-toString):
12479         * cedet/srecode/compile.el (srecode-flush-active-templates):
12480         * cedet/srecode/args.el (srecode-semantic-handle-:blank):
12481         Doc/message fixes.
12483         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
12484         match-data.  (Bug#4555).
12486         * cedet/semantic/bovine/gcc.el
12487         (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
12488         (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
12490         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
12491         rather than parsing it as a regexp.  This relaxes the layout
12492         requirements and makes errors easier to detect.
12493         (check-declare-verify): Check file is regular.
12494         (check-declare-directory): Doc fix.
12495         * subr.el (declare-function): Doc fix.
12497         * ibuffer.el (ibuffer-format-qualifier):
12498         * isearch.el (hi-lock-regexp-okay):
12499         * calc/calc.el (math-zerop):
12500         * mail/uce.el (rmail-msgbeg, rmail-msgend):
12501         * term/w32-win.el (setup-default-fontset, set-fontset-font):
12502         Remove unused declarations.
12504 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
12506         * cedet/semantic/wisent/javat-wy.el
12507         (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
12509 2009-09-30  Juanma Barranquero  <lekktu@gmail.com>
12511         * cedet/srecode/expandproto.el: Fix provide statement.
12513 2009-09-30  Eric Ludlam  <zappo@gnu.org>
12515         * emacs-lisp/eieio.el (boolean-p): Delete.
12517 2009-09-30  Sascha Wilde  <wilde@sha-bang.de>
12519         * cedet/ede/srecode.el: Fix provide statement.
12521 2009-09-30  Glenn Morris  <rgm@gnu.org>
12523         * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
12524         * cedet/ede/proj-aux.el (ede-aux-source):
12525         * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
12526         (ede-misc-source):
12527         * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
12528         (semantic-mrub-switch-tags): Fix doc typos.
12530         * cedet/semantic/db-global.el (data-debug-new-buffer)
12531         (data-debug-insert-thing): Remove unneeded declarations (one broken).
12532         (semanticdb-enable-gnu-global-databases): Fix prompt typo.
12534         * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
12536         * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
12537         use of CL function `remove-if-not'.
12539         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
12541         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
12542         filename is not a string.
12544 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
12546         * files.el (safe-local-eval-forms): Fix typo.
12548 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12550         * vc-hooks.el (vc-dir-buffers): New var.
12551         (vc-state-refresh): New function.
12552         (vc-state): Use it.
12553         (vc-after-save): Always ask the backend to recompute the new state.
12554         Always call vc-dir if necessary, using vc-dir-buffers.
12555         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
12556         Use vc-dir-buffers.
12557         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
12558         (vc-dir-prepare-status-buffer, vc-dir-update)
12559         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
12560         Don't call expand-file-name on default-directory.
12562 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
12564         * speedbar.el (speedbar-item-delete):
12565         * calc/calc-prog.el (calc-kbd-if):
12566         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
12568         * epa.el (epa-key-list-mode-map):
12569         * hi-lock.el (hi-lock-menu): Fix typos in menus.
12571         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
12572         (hs-show-hook): Fix typo in docstring.
12574 2009-09-29  Glenn Morris  <rgm@gnu.org>
12576         * cedet/semantic/symref/idutils.el:
12577         * cedet/semantic/symref/list.el: Relicense under GPLv3+.
12579         * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
12581         * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
12582         * cedet/semantic/tag-file.el (semanticdb-table-child-p):
12583         * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
12584         Mark declarations not understood by check-declare.
12586         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
12587         file-name-nondirectory call preventing location of cedet files.
12588         (check-declare-verify): Use literal search rather than re-search.
12589         Add basic defmethod and defclass, and define-overloadable-function.
12591         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
12592         Use tramp-compat-file-attributes rather than nonexistent
12593         tramp-compat-handle-file-attributes.
12595         * Makefile.in (lisptagsfiles4): New.
12596         (AUTOGENEL): Add cedet loaddefs files.
12597         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
12598         (update-elclist, compile-always, backup-compiled-files)
12599         (bootstrap-clean): Add yet another directory level.
12600         (update-elclist): Use LC_COLLATE rather than COLLATE.
12601         (ELCFILES): Update, via `make update-elclist'.
12603 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
12605         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
12606         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
12607         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
12609 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
12611         * Makefile.in (lisptagsfiles3): Define.
12612         (TAGS, TAGS-LISP): Use it.
12613         (update-elclist): Add third directory level to look for elc files.
12614         (compile-always): Likewise.
12615         (backup-compiled-files): Likewise.
12616         (bootstrap-clean): Likewise.
12617         (ELCFILES): Update.
12619 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
12621         * Makefile.in (ELCFILES): Add CEDET files.
12623 2009-09-28  Eric Ludlam  <zappo@gnu.org>
12625         CEDET (development tools) package merged.
12627         * cedet/*.el:
12628         * cedet/ede/*.el:
12629         * cedet/semantic/*.el:
12630         * cedet/srecode/*.el: New files.
12632 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
12634         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
12636         * net/tramp.el (top): Require tramp-imap.
12638         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
12639         Use `tramp-compat-handle-file-attributes'.
12641 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12643         * net/tramp-imap.el: New package.
12645 2009-09-28  Eric Ludlam  <zappo@gnu.org>
12647         * emacs-lisp/chart.el:
12648         * emacs-lisp/eieio-base.el:
12649         * emacs-lisp/eieio-comp.el:
12650         * emacs-lisp/eieio-custom.el:
12651         * emacs-lisp/eieio-datadebug.el:
12652         * emacs-lisp/eieio-opt.el:
12653         * emacs-lisp/eieio-speedbar.el:
12654         * emacs-lisp/eieio.el: New files.
12656         * cedet/cedet-cscope.el:
12657         * cedet/cedet-files.el:
12658         * cedet/cedet-global.el:
12659         * cedet/cedet-idutils.el:
12660         * cedet/data-debug.el:
12661         * cedet/inversion.el:
12662         * cedet/mode-local.el:
12663         * cedet/pulse.el: New files.
12665 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12667         * whitespace.el (whitespace-trailing-regexp)
12668         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
12669         Fix doc string.
12671 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
12673         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
12674         menu.
12676         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
12677         menu-bar-ediff-menu.
12679         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
12680         define-overloadable-function.
12682         * progmodes/autoconf.el: Provide autoconf as well, so that this
12683         file can be `require'd.
12685         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
12687         * emacs-lisp/autoload.el (generated-autoload-feature)
12688         (generated-autoload-load-name): New vars.
12689         (autoload-rubric, autoload-generate-file-autoloads): Use them.
12690         (make-autoload): Recognize define-overloadable-function and
12691         defclass forms (for EIEIO).
12693         * Makefile.in (update-subdirs): Exclude cedet directory.
12695 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
12697         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
12699         * faces.el: Default light-background background for region face to
12700         ns_selection_color under NS.
12702 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
12704         * net/imap-hash.el: New library, see NEWS.
12706         * Makefile.in (ELCFILES): Add imap-hash.el.
12708 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12710         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
12711         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
12712         * help-macro.el (make-help-screen): Avoid using an ambiguous function
12713         definition where the docstring could be taken for the return value.
12715 2009-09-26  Glenn Morris  <rgm@gnu.org>
12717         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
12718         Add option to only show images below a certain size.
12719         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
12720         save-excursion calls.
12722 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
12724         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
12725         subdirectories) and eieio.
12727 2009-09-26  Alan Mackenzie  <acm@muc.de>
12729         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
12730         buggy bracketing.  (Bug#4289)
12732         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
12733         character constants (as case labels).  (Bug#4289)
12735 2009-09-25  Juri Linkov  <juri@jurta.org>
12737         * files.el (safe-local-eval-forms): Allow time-stamp in
12738         before-save-hook (Bug#4554).
12740 2009-09-25  Drew Adams  <drew.adams@oracle.com>
12742         * menu-bar.el (list-buffers-directory): Doc fix.
12744 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12746         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
12747         Try and avoid copying twice the same paragraph.
12748         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
12749         Remove save-excursion.
12750         (log-edit-changelog-entry): Do it here instead.
12752 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
12754         * bs.el (bs--get-file-name): Use `list-buffers-directory'
12755         when available, instead of hardcoding mode names.  Doc fix.
12757         * menu-bar.el (list-buffers-directory): Add docstring.
12758         Make automatically buffer-local.
12760         * dired.el (dired-mode):
12761         * files.el (cd-absolute):
12762         * pcvs.el (cvs-temp-buffer):
12763         * pcvs-util.el (cvs-get-buffer-create):
12764         * shell.el (shell-mode):
12765         * vc-dir.el (vc-dir-mode):
12766         Don't make `list-buffers-directory' buffer local.
12768 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
12770         * comint.el (comint-exec, comint-run, make-comint):
12771         Doc fixes (Bug#4542).
12773 2009-09-25  Glenn Morris  <rgm@gnu.org>
12775         * mail/rmailmm.el (rmail-mime): New custom group.
12776         Move all defcustoms in this file into this group.
12777         (rmail-mime-media-type-handlers-alist): Revert previous change.
12778         (rmail-mime-show-images): New option.
12779         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
12780         references to it, since it wasn't actually used for anything.
12781         (rmail-mime-insert-image): New function.
12782         (rmail-mime-image): Use rmail-mime-insert-image.
12783         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
12784         obey the value of `rmail-mime-show-images' option.  Print the size of
12785         attachments.
12787 2009-09-25  David Engster  <deng@randomsample.de>
12789         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
12791 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
12793         * whitespace.el: Does not highlight trailing spaces While point is
12794         at end of line.  Does not highligt spaces at beginning of buffer
12795         while point is at beginning of buffer.  Does not highlight spaces
12796         at end of buffer while point is at end of buffer.  (Bug#4177)
12797         New version 12.0.
12798         (whitespace-display-mappings): Adjust initialization.
12799         (whitespace-point, whitespace-font-lock-refontify): New vars.
12800         (whitespace-color-on, whitespace-color-off): Adjust code.
12801         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
12802         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
12803         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
12805 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
12807         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
12809         * textmodes/sgml-mode.el: Remove xml-mode alias.
12811         * files.el (auto-mode-alist, conf-mode-maybe)
12812         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
12814 2009-09-24  Alan Mackenzie  <acm@muc.de>
12816         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
12817         c-forward-conditionals, but it doesn't move point and doesn't set
12818         the mark.
12819         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
12820         (c-down-conditional-with-else, c-backward-conditional)
12821         (c-forward-conditional): Refactor to use c-scan-conditionals.
12823 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
12825         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
12826         (help-default-arg-highlight): Remove.
12827         (help-highlight-arg): New function.
12828         (help-do-arg-highlight): Use it.
12829         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
12831 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12833         * term.el (term-set-scroll-region, term-handle-ansi-escape):
12834         Undo last change, which didn't fix the problem and introduced others.
12836 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
12838         * progmodes/gdb-mi.el: Don't require speedbar.
12839         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
12841 2009-09-24  Glenn Morris  <rgm@gnu.org>
12843         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
12845         * term/ns-win.el (ns-reg-to-script): Define for compiler.
12847         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
12848         there is no newline after the final mime boundary.  (Bug#4539)
12849         Move markers on insertion so that any buttons inserted don't end up in
12850         the next part of a multipart message.
12851         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
12852         (rmail-mime-bulk-handler): Optionally handle images.
12853         (rmail-mime-image): New button action.
12854         (rmail-mime-image-handler): New function.
12855         (rmail-mime-mode): New mode.
12856         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
12858 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12860         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
12861         than just dropping elements from it (bug#4504).
12863         * term.el (term-set-scroll-region): Don't move cursor any more.
12864         (term-handle-ansi-escape): Call term-goto here instead.
12865         Suggested by Ivan Kanis <apple@kanis.eu>.
12867         * term.el: Require CL.
12868         (term-ansi-reset): New function.
12869         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
12870         (term-handle-colors-array): Simplify.
12872 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
12874         * allout.el (allout-overlay-interior-modification-handler)
12875         (allout-obtain-passphrase):
12876         * epa-file.el (epa-file-write-region):
12877         * ps-print.el (ps-begin-job):
12878         * vc-hooks.el (vc-toggle-read-only):
12879         * vc-rcs.el (vc-rcs-rollback):
12880         * vc-sccs.el (vc-sccs-rollback):
12881         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
12882         (vc-version-diff, vc-revert, vc-rollback):
12883         * wdired.el (wdired-check-kill-buffer):
12884         * emacs-lisp/authors.el (authors):
12885         * net/socks.el (socks-open-connection):
12886         * net/zeroconf.el (zeroconf-service-add-hook):
12887         * obsolete/vc-mcvs.el (vc-mcvs-register):
12888         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
12889         (gdb-select-frame):
12890         * progmodes/grep.el (lgrep, rgrep):
12891         * progmodes/idlw-help.el (idlwave-help-check-locations)
12892         (idlwave-help-html-link, idlwave-help-assistant-open-link):
12893         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
12894         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
12895         (reftex-toc-rename-label): Fix typos in error messages.
12897         * dired-aux.el (dired-do-shell-command): Reflow docstring.
12898         (dired-copy-how-to-fn): Doc fix.
12899         (dired-files-attributes, dired-read-shell-command):
12900         Fix typos in docstrings.
12902         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
12903         (dired-x-find-file-other-window): Reflow docstrings.
12904         (dired-omit-marker-char, dired-read-shell-command)
12905         (dired-x-submit-report): Fix typos in docstrings.
12907         * shell.el (shell-mode-hook):
12908         * view.el (View-scroll-line-forward):
12909         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
12910         Fix typos in docstrings.
12912         * net/dig.el (dig-invoke): Fix typo in docstring.
12913         (query-dig): Reflow docstring.
12915         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
12916         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
12917         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
12918         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
12919         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
12920         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
12921         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
12922         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
12923         (idlwave-completion-map, idlwave-current-indent)
12924         (idlwave-custom-ampersand-surround, idlwave-customize)
12925         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
12926         (idlwave-define-abbrev, idlwave-determine-class-special)
12927         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
12928         (idlwave-end-block-reg, idlwave-end-of-statement)
12929         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
12930         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
12931         (idlwave-explicit-class-listed, idlwave-file-header)
12932         (idlwave-fill-paragraph, idlwave-find-class-definition)
12933         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
12934         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
12935         (idlwave-in-quote, idlwave-indent-action-table)
12936         (idlwave-indent-expand-table, idlwave-indent-line)
12937         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
12938         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
12939         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
12940         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
12941         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
12942         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
12943         (idlwave-outlawed-buffers, idlwave-popup-select)
12944         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
12945         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
12946         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
12947         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
12948         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
12949         (idlwave-statement-type, idlwave-struct-skip)
12950         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
12951         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
12952         (idlwave-what-module-find-class): Fix typos in docstrings.
12953         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
12954         (idlwave-calculate-cont-indent, idlwave-expand-equal)
12955         (idlwave-find-module, idlwave-find-structure-definition)
12956         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
12957         (idlwave-list-load-path-shadows, idlwave-next-statement)
12958         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
12959         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
12960         (idlwave-template): Reflow docstrings.
12962         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
12963         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
12964         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
12965         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
12966         (idlwave-shell-display-line, idlwave-shell-display-wframe)
12967         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
12968         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
12969         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
12970         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
12971         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
12972         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
12973         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
12974         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
12975         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
12976         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
12977         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
12978         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
12979         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
12980         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
12981         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
12982         Fix typos in docstrings.
12983         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
12984         (idlwave-shell-hide-output, idlwave-shell-mode)
12985         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
12986         Reflow docstrings.
12988         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
12990 2009-09-24  Ivan Kanis  <apple@kanis.eu>
12992         * term.el (term-bold-attribute): New var.
12993         (term-handle-colors-array): Use it.
12995 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
12997         * progmodes/gdb-mi.el (gdb-version): New variable.
12998         (gdb-non-stop-handler): Set gdb-version.
12999         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
13000         Condition "--thread" option on gdb-version.
13001         (gdb-invalidate-threads): Remove unused argument.
13003 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13005         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
13006         to looking-back to avoid ridiculous slow down in large files (bug#4511).
13008 2009-09-23  Glenn Morris  <rgm@gnu.org>
13010         * mail/rmail.el (rmail-reply): Don't try to add a References header when
13011         replying to mail without References or Message-Id.  (Bug#4525)
13013 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
13015         * term/ns-win.el (ns-reg-to-script): New variable.
13017 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
13019         * epg.el (epg-wait-for-status): Preserve existing 'error results.
13021 2009-09-22  Sam Steingold  <sds@gnu.org>
13023         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
13024         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
13025         to 1 because hg returns status 1 when nothing is found.
13026         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
13028 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13030         * textmodes/fill.el: Convert to utf-8 encoding.
13031         (fill-french-nobreak-p): Remove redundant » and « inherited from our
13032         pre-Unicode days.
13034         * add-log.el (change-log-fill-forward-paragraph): New function.
13035         (change-log-mode): Use it so fill-region DTRT.
13036         Set fill-indent-according-to-mode here rather than in
13037         change-log-fill-paragraph.
13038         (change-log-fill-paragraph): Remove.
13040 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
13042         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
13043         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
13045 2009-09-22  Glenn Morris  <rgm@gnu.org>
13047         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
13048         the scroll-bar scroll the calendar window rather than the buffer.
13050         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
13051         commands that move point (as opposed to scrolling).
13053         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
13055         * emacs-lisp/elint.el (elint): New custom group.
13056         (elint-log-buffer): Make it a defcustom.
13057         (elint-scan-preloaded, elint-ignored-warnings)
13058         (elint-directory-skip-re): New options.
13059         (elint-builtin-variables): Doc fix.
13060         (elint-preloaded-env): New variable.
13061         (elint-unknown-builtin-args): Add an entry for encode-time.
13062         (elint-extra-errors): Make it a variable rather than a constant.
13063         (elint-preloaded-skip-re): New constant.
13064         (elint-directory): Skip files matching elint-directory-skip-re.
13065         (elint-features): New variable, local to linted buffers.
13066         (elint-update-env): Initialize elint-features.  Possibly add
13067         elint-preloaded-env to the buffer's environment.
13068         (elint-get-top-forms): Bind elint-current-pos, for log messages.
13069         Skip quoted forms.
13070         (elint-init-form): New function, extracted from elint-init-env.
13071         Make non-list forms a warning rather than an error.
13072         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
13073         easy-menu-define, put that adds an error-condition, and provide.
13074         When requiring cl, also require cl-macs.  Really require cl, to handle
13075         some cl macros.  Store required libraries in the list elint-features,
13076         so as not to re-load them.  Treat cc-require like require.
13077         (elint-init-env): Call elint-init-form to do the work.
13078         Handle eval-and-compile and such like.
13079         (elint-add-required-env): Do not clear messages.
13080         (elint-special-forms): Add handlers for function, defalias, if, when,
13081         unless, and, or.
13082         (elint-form): Add optional argument to ignore elint-special-forms,
13083         useful to prevent recursive calls from handlers.  Doc fix.
13084         Respect elint-ignored-warnings.
13085         (elint-form): Respect elint-ignored-warnings.
13086         (elint-bound-variable, elint-bound-function): New variables.
13087         (elint-unbound-variable): Respect elint-bound-variable.
13088         (elint-get-args): Respect elint-bound-function.
13089         (elint-check-cond-form): Add some simple handling for (f)boundp and
13090         featurep tests.
13091         (elint-check-defalias-form): New handler.
13092         (elint-check-let-form): Make an empty let a warning rather than an
13093         error.
13094         (elint-check-setq-form): Make an empty setq a warning rather than an
13095         error.  Respect elint-ignored-warnings.
13096         (elint-check-defvar-form): Accept null doc-strings.
13097         (elint-check-conditional-form): New handler.  Does some simple-minded
13098         checking of featurep and (f)boundp tests.
13099         (elint-put-function-args): New function.
13100         (elint-initialize): Use elint-scan-doc-file rather than
13101         elint-find-builtin-variables.  Use elint-put-function-args.
13102         Possibly scan preloaded-file-list.
13103         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
13104         extend to handle functions as well.
13106 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
13108         * linum.el (linum-delete-overlays, linum-update-window):
13109         Do not modify the right margin.  (Bug#3971)
13111 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
13113         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
13114         nxml-mode instead of xml-mode.
13116 2009-09-21  Kevin Ryde  <user42@zip.com.au>
13118         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
13120 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13122         * net/dig.el (dig-mode): Use define-derived-mode.
13124 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
13126         * vc-dispatcher.el (vc-do-command): Return the process object in
13127         the asynchronous case.  Use when instead of if.  Do not run
13128         vc-exec-after to display a message if not enabled.  (Bug#4463)
13130         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
13131         properties to the stash strings.
13132         (vc-git-stash-list): Return a list of strings.
13133         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
13134         (vc-git-stash-show-at-point): New functions.
13135         (vc-git-stash-map): New keymap.
13137         * register.el (ctl-x-r-map): Define the keys here instead of
13138         using autoload.
13140 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
13142         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
13143         list, to workaround performance problem (bug#4485).
13145 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
13147         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
13149 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
13151         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
13152         Document that this option is not recommended to use.
13154 2009-09-19  Glenn Morris  <rgm@gnu.org>
13156         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
13157         variable `var'.
13159         * calc/calc-alg.el (var):
13160         * calc/calcalg2.el (var): Define for compiler.
13162 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
13164         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
13165         Doc fix (Bug#3932).
13167         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
13169         * time-stamp.el (time-stamp-month-dd-yyyy)
13170         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
13171         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
13172         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
13173         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
13174         Remove functions that have been obsolete since 1995 (Bug#4436).
13176         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
13177         indent buffer only if called interactively (Bug#4452).
13179 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
13180             Eli Zaretskii  <eliz@gnu.org>
13182         This fixes bug#4197 (merged to bug#865, though not identical).
13183         * server.el (server-auth-dir): Add docstring note about FAT32.
13184         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
13185         but warn against using them.
13187 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
13189         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
13190         older GDB where there is no has_more field.
13192 2009-09-19  Glenn Morris  <rgm@gnu.org>
13194         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
13196 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
13198         * files.el (auto-mode-alist): Change default for XML files to nXML
13199         mode (Bug#4169).
13201 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
13203         * server.el (server-ensure-safe-dir): Pass 'integer
13204         to `file-attributes', as suggested.
13206 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
13208         * dired-aux.el (dired-query-alist): Remove spurious backslash.
13209         (dired-query): Use read-key.
13211 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
13213         * cus-start.el (ns-use-qd-smoothing): Remove.
13215 2009-09-18  Glenn Morris  <rgm@gnu.org>
13217         * allout.el (top-level): Remove unnecessary progn.
13219         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
13221         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
13222         definition of abbrev table.
13224         * speedbar.el (speedbar-track-mouse):
13225         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
13226         * net/eudc.el (eudc-expand-inline):
13227         * net/newst-backend.el (newsticker--cache-read-feed):
13228         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
13229         condition-case handlers.
13231 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
13233         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
13234         (gdb-var-list): Add an element for has_more field.
13235         (gdb-non-stop-handler): Enable pretty printing for STL containers.
13236         (gdb-var-create-handler, gdb-var-list-children-handler-1)
13237         (gdb-var-update-handler-1): Parse output of dynamic variable
13238         objects (STL containers).
13239         (gdb-var-delete-1): Pass var1 as an explicit second argument.
13240         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
13242         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
13243         gdb-var-list.
13244         (gud-speedbar-buttons): Make node expandable if expression "has more"
13245         children.
13247 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
13249         * startup.el (emacs-quick-startup): Remove variable and all uses.
13250         (command-line): Set `inhibit-x-resources' instead.
13251         (command-line-1): Use `inhibit-x-resources' instead.
13253 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
13255         * subr.el: Fix last change to avoid using the `unless' macro,
13256         which breaks bootstrapping.
13258 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13260         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
13261         extended definitions, in case we reload subr.el after having
13262         loaded CL.
13263         (eval-next-after-load): Mark as obsolete.
13265 2009-09-17  Juri Linkov  <juri@jurta.org>
13267         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
13268         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
13269         (menu-bar-showhide-menu, menu-bar-tools-menu)
13270         (menu-bar-describe-menu, menu-bar-help-menu)
13271         (minibuffer-local-completion-map, minibuffer-local-map):
13272         Fix list quoting.
13274 2009-09-17  Glenn Morris  <rgm@gnu.org>
13276         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
13277         arguments, whether or not it has a handler.
13279         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
13281         * simple.el (hard-newline): Give it a doc-string.
13283         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13284         (lisp-mode-syntax-table): Give them doc-strings.
13286 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
13288         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
13289         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
13290         (menu-bar-options-menu, menu-bar-showhide-menu)
13291         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
13292         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
13293         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
13294         (menu-bar-options-menu, menu-bar-tools-menu)
13295         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
13296         (menu-bar-help-menu):
13297         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
13298         string arguments.
13300         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
13301         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
13302         calls for the menu names and :help.
13304 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13306         * mouse.el (minor-mode-menu-from-indicator): Pay attention
13307         to :minor-mode-function (bug#4455).
13309 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
13311         * startup.el (command-line): Initialize the window-system after
13312         processing the command-line.
13314         * textmodes/page.el (what-page): Make sure we don't inf-loop if
13315         page-delimiter matches the empty string.
13317 2009-09-16  Glenn Morris  <rgm@gnu.org>
13319         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
13320         byte-compile-not-obsolete-var.  It's a list now.
13321         (byte-compile-not-obsolete-funcs): New variable.
13322         (byte-compile-warn-obsolete): Don't warn about functions if they are in
13323         byte-compile-not-obsolete-funcs.
13324         (byte-compile-variable-ref, byte-compile-defvar): Update for
13325         byte-compile-not-obsolete-vars name-change and list nature.
13326         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
13327         and variables behind (f)boundp tests.
13328         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
13330 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
13332         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
13334 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13336         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
13337         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
13338         Don't autoload.
13340 2009-09-15  Stephen Eglen  <stephen@gnu.org>
13342         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
13343         the virtual-buffers, use the name of the buffer specified by
13344         find-file-noselect, as the match may be a symlink.  (This was a
13345         problem if the target and the symlink had different names.)
13347 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13349         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
13351         * desktop.el (desktop-path): Check user-emacs-directory.
13353         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
13355         * loadup.el: Use after-load-functions to GC after loading each file.
13356         Remove the explicit GC calls that used to be sprinkled around.
13358         * subr.el (after-load-functions): New hook.
13359         (do-after-load-evaluation): Run it.  Use string-match-p to detect
13360         `obsolete' packages, rather than painfully extracting the relevant
13361         directory name.
13363 2009-09-15  Glenn Morris  <rgm@gnu.org>
13365         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
13366         free variable `doc'.
13368         * dired.el (dired-mode-map): Add menu entry for async shell command.
13370         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
13371         variables, also consider the .elc files, since the .el files are
13372         normally gzipped (subsequent code locates the .el.gz from the .elc).
13374         * calc/calc-prog.el (arglist): Define for compiler.
13376         * calendar/diary-lib.el (diary-display-function): Change the default to
13377         fancy display.
13378         (body): Define for compiler.
13380         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
13381         (byte-compile-file-form, byte-compile-lambda)
13382         (byte-compile-top-level-body, byte-compile-form)
13383         (byte-compile-variable-ref, byte-compile-setq)
13384         (byte-compile-setq-default, byte-compile-body)
13385         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
13386         (batch-byte-compile): Give some more local variables with common names
13387         a "bytecomp-" prefix to avoid masking warnings about free variables.
13389         * startup.el (command-line-1): Give local variables with common names a
13390         distinguishing prefix, so as not to hide free variable warnings during
13391         bootstrap.
13393         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
13394         clever and add a suffix to make a unique name, just let the user decide
13395         whether or not to overwrite it.  If the input is a directory, write the
13396         default filename to that directory.  (Bug#4388)
13397         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
13398         is a filename-as-a-directory.
13400 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13402         * textmodes/page.el (what-page): Don't move to beginning of line.
13403         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
13405 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
13407         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
13409 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
13411         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
13412         * help.el (help-for-help-internal): Add purecopy calls for text.
13414         * vc.el (top): print-log method now takes an optional SHORTLOG
13415         argument.  Add a new method: root.
13416         (vc-root-diff, vc-print-root-log): New functions.
13417         (vc-log-short-style): New variable.
13418         (vc-print-log-internal): Add support for showing short logs.
13420         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
13421         vc-print-root-log and vc-print-root-diff.
13423         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
13424         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
13425         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
13426         short logs.
13428         * vc-cvs.el (vc-cvs-print-log):
13429         * vc-mtn.el (vc-mtn-print-log):
13430         * vc-rcs.el (vc-rcs-print-log):
13431         * vc-sccs.el (vc-sccs-print-log):
13432         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
13433         that is ignored for now.
13435         * vc-mtn.el (vc-mtn-annotate-command):
13436         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
13438 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13440         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
13441         to function-key-map, and give them ascii-character property.
13442         * term/x-win.el (x-alternatives-map):
13443         * term/ns-win.el (ns-alternatives-map):
13444         * term/internal.el (msdos-key-remapping-map):
13445         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
13447 2009-09-14  Glenn Morris  <rgm@gnu.org>
13449         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
13450         temp-buffers (2009-09-12).
13452 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13454         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
13455         the new read-key function.
13457 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
13459         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
13460         is defined (Bug#4405).
13462 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
13464         * recentf.el (recentf-cleanup): Use a hash table to find
13465         duplicates (Bug#4407).
13467 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
13469         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
13470         kp-0 to ascii equivalents (Bug#4325).
13472 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
13474         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
13476         * eshell/em-hist.el:
13477         * eshell/em-dirs.el (eshell-complete-user-reference):
13478         Declare pcomplete functions and variables to avoid compiler warnings.
13480 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
13482         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
13483         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
13484         * eshell/em-alias.el (eshell-aliases-file):
13485         * eshell/em-hist.el (eshell-history-file-name):
13486         Use expand-file-name instead of concat to make file names (Bug#4308).
13488 2009-09-13  Glenn Morris  <rgm@gnu.org>
13490         * ediff-merg.el (ediff-do-merge):
13491         * filesets.el (filesets-run-cmd):
13492         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
13493         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
13494         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
13495         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
13496         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
13497         Replace empty `let's with `progn'.
13499 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13501         * mail/sendmail.el (send-mail-function):
13502         * tooltip.el (tooltip-mode):
13503         * simple.el (transient-mark-mode):
13504         * rfn-eshadow.el (file-name-shadow-mode):
13505         * frame.el (blink-cursor-mode):
13506         * font-core.el (global-font-lock-mode):
13507         * files.el (temporary-file-directory)
13508         (small-temporary-file-directory, auto-save-file-name-transforms):
13509         * epa-hook.el (auto-encryption-mode):
13510         * composite.el (global-auto-composition-mode):
13511         Use custom-initialize-delay.
13512         * startup.el (command-line): Don't explicitly call
13513         custom-reevaluate-setting for all the above vars.
13514         * custom.el (custom-initialize-safe-set)
13515         (custom-initialize-safe-default): Delete.
13517 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13519         * term/x-win.el (x-initialize-window-system):
13520         * term/w32-win.el (w32-initialize-window-system):
13521         * term/ns-win.el (ns-initialize-window-system): Don't call
13522         mouse-wheel-mode since it's enabled globally by default already.
13524         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
13525         actually define the variable, but only silences the byte-compiler.
13526         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
13527         before looking it up.
13528         (mouse-wheel-scroll-amount): Also reset the bindings if this value
13529         is changed.
13531 2009-09-12  Glenn Morris  <rgm@gnu.org>
13533         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
13534         1000.
13535         (elint-add-required-env): Don't beep on error.
13536         (elint-forms): In case of error, return ENV unchanged.
13537         (elint-init-env): Skip non-list forms.
13538         (elint-log): Handle unknown file positions.
13540 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
13542         * epg.el (epg-make-context): Add autoload cookie.
13543         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
13544         (epg-decrypt-string, epg-start-verify, epg-verify-file)
13545         (epg-verify-string, epg-start-sign, epg-sign-file)
13546         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
13547         (epg-encrypt-string, epg-start-export-keys)
13548         (epg-export-keys-to-file, epg-export-keys-to-string)
13549         (epg-start-import-keys, epg-import-keys-from-file)
13550         (epg-import-keys-from-string, epg-start-receive-keys)
13551         (epg-receive-keys, epg-import-keys-from-server)
13552         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
13553         (epg-sign-keys, epg-start-generate-key)
13554         (epg-generate-key-from-file, epg-generate-key-from-string):
13555         Remove autoload cookie.
13557 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
13559         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
13560         reevaluation of trash-directory.
13562         * mwheel.el: Fix last change.
13563         (mouse-wheel-mode): New defvar.
13564         (mouse-wheel-mode): Remove autoload cookie.
13566 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13568         * mwheel.el (mwheel-installed-bindings): New var.
13569         (mouse-wheel-mode): Use it, so as to make sure we really remove all
13570         the bindings we set last time.  Use custom-initialize-delay.
13571         * loadup.el: Load mwheel after term/*-win.el.
13572         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
13573         and mouse-wheel-up-event now that their first evaluation is done
13574         sufficiently late to be correct.
13576         * startup.el (tutorial-directory): Make it a defcustom.
13577         Use custom-initialize-delay rather than eval-at-startup to set it.
13578         * image.el (image-load-path): Make it a defcustom.
13579         Use custom-initialize-delay rather than eval-at-startup to set it.
13580         * subr.el (eval-at-startup): Remove.
13581         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
13583         * subr.el (do-after-load-evaluation): Warn the user after loading an
13584         obsolete package.
13586 2009-09-12  Glenn Morris  <rgm@gnu.org>
13588         * proced.el (proced-mark-alt): Remove alias.
13589         (proced-mode-map): Remove proced-mark-alt.
13591         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
13592         Elint file and directory.  Remove initialization entry.
13594         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
13595         commands.
13596         (elint-current-buffer): Set mode-line-process.
13597         (elint-init-env): Handle define-derived-mode.
13598         Fix declare-function with unspecified arglist.  Guard against odd
13599         defalias statements (eg iso-insert's 8859-1-map).
13600         (elint-add-required-env): Use a temp buffer.
13601         (elint-form): Just print the function/macro name, not the whole form.
13602         Return env unchanged if we fail to parse a macro.
13603         (elint-forms): Guard against parse errors.
13604         (elint-output): New function, to handle batch mode.
13605         (elint-log-message): Add optional argument.  Use elint-output.
13606         (elint-set-mode-line): New function.
13608 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
13610         * emacs-lisp/elp.el (elp-not-profilable): Add more
13611         functions (Bug#4233).
13613 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
13615         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
13616         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
13618 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
13620         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
13621         (gdb-var-list-children): Use json parsing.
13623 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
13625         * progmodes/js.el (js--proper-indentation): Handle the case where
13626         char-before is null.  Reported by Deniz Dogan.
13628 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
13630         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
13632 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
13634         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
13635         (epg-digest-algorithm-alist): Add SHA224.
13636         (epg-context-set-passphrase-callback)
13637         (epg-context-set-progress-callback): Add description about
13638         callback function.
13640 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13642         * custom.el (custom-delayed-init-variables): New var.
13643         (custom-initialize-delay): New function.
13644         * startup.el (command-line): "Re"evaluate all vars in
13645         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
13646         explicitly any more.
13647         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
13648         to avoid creating a ~/.emacs.d at build-time (bug#4347).
13650         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
13652 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
13654         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
13655         (gdb-var-update-handler): Use json parsing.
13657 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
13659         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
13660         decode annotated text, regardless of language environment.  (Bug#2741)
13662 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13664         * Makefile.in (autoloads): Make rmail.el writable as well.
13666 2009-09-11  Glenn Morris  <rgm@gnu.org>
13668         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
13669         loaddefs.el.
13670         * dired.el: Regenerate with extracted autoloads.
13671         * Makefile.in (autoloads): Make dired.el writable.
13673         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
13674         * ibuffer.el: Regenerate with extracted autoloads.
13675         * Makefile.in (autoloads): Make ibuffer.el writable.
13677         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
13678         * version.el (emacs-copyright, emacs-major-version)
13679         (emacs-minor-version): Reformat doc-strings for make-docfile.
13681         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
13682         functions and variables, since they must be stuff specific to some other
13683         platform.
13684         (apropos-print): Make mouse-click message less specific about button.
13686         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
13687         that records where a macro was defined.
13688         * help-fns.el (describe-function-1): Mention if a function has a
13689         compiler-macro.
13690         * help-mode.el (help-function-cmacro): New button.
13692         * locate.el (top-level): Always require dired.
13693         (locate-mode-map): Initialize inside the defvar.
13695         * net/ange-ftp.el (dired-compress-file): Declare.
13696         (ange-ftp-dired-compress-file): Add doc string.
13698         * term/ns-win.el (x-display-name, x-setup-function-keys):
13699         Unify doc-strings with X versions.
13701 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13703         * emulation/crisp.el (crisp-mode-map): Move initialization
13704         into declaration.
13705         (crisp-mode): Use define-minor-mode.
13707         * progmodes/xscheme.el (xscheme-evaluation-commands):
13708         Put a :advertised-binding property rather than using
13709         advertised-xscheme-send-previous-expression.
13710         (advertised-xscheme-send-previous-expression): Declare obsolete.
13711         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
13712         `advertised-undo'.
13713         (crisp-mode): Add corresponding bindings to
13714         undo's :advertised-binding instead.
13715         * dired.el (dired-mode-map): Put a :advertised-binding property rather
13716         than using dired-advertised-find-file.
13717         (dired-advertised-find-file):
13718         * simple.el (advertised-undo):
13719         * wid-edit.el (advertised-widget-backward): Declare obsolete.
13720         (widget-keymap): Put a :advertised-binding property rather
13721         than using advertised-widget-backward.
13722         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
13723         than using advertised-undo.
13724         * tutorial.el (tutorial--default-keys): Adjust accordingly.
13726 2009-09-10  Simon South  <ssouth@slowcomputing.org>
13728         * progmodes/delphi.el (delphi-tab): Indent region when Transient
13729         Mark mode is enabled and region is active; otherwise indent or
13730         insert TAB as usual.
13731         (delphi-mode): Update description of TAB-key binding.
13733 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13735         * subr.el (define-key-rebound-commands): Mark obsolete.
13736         * startup.el (precompute-menubar-bindings): Remove.
13737         (normal-top-level): Remove obsolete code that tried to precompute
13738         menubar bindings.
13739         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
13740         define-key-rebound-commands and precompute-menubar-bindings.
13742 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13744         * net/imap.el (imap-interactive-login): Better messages.
13745         (imap-open): Fix bug with renamed buffer on reconnect.
13746         (imap-authenticate): Add buffer-local imap-last-authenticator variable
13747         for easier debugging and cleaner code.  On successful (guessed based on
13748         server capabilities) secondary authentication, set imap-state
13749         correctly.
13750         (imap-last-authenticator): Define imap-last-authenticator as a variable
13751         to avoid warnings.
13753 2009-09-10  Glenn Morris  <rgm@gnu.org>
13755         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
13757         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
13758         (byte-compile-file-form-autoload): Don't warn about unknown functions
13759         where the autoload statement comes after the use.
13760         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
13761         that any handlers inside the body (eg require) are in turn respected.
13763         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
13764         effects.
13766         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
13767         and syntax and abbrev tables basic docs, if they don't have any.
13769         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
13771         * international/mule-cmds.el (top-level): Require cl when compiling.
13772         (view-hello-file): Use default-value rather than
13773         default-enable-multibyte-characters.
13775         * progmodes/fortran.el: Move all safe and risky properties into the
13776         defcustoms.
13778         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
13779         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
13780         * mail/undigest.el:
13781         Put autoloads in rmail.el rather than loaddefs.el.
13782         * mail/rmail.el: Regenerate with extracted autoloads.
13784         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
13785         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
13787 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
13789         Reported in thread for Bug#4375.
13790         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
13791         "-data-evaluate-expression" instead of print.
13792         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
13793         (gdb-tooltip-print): Parse output from above MI command.
13794         (gdb): Revert 2009-08-11 change.  User should detach inferior
13795         manually.
13797         Remove the word "separate" from IO functions as inferior
13798         output is now never displayed in the GUD buffer.
13800 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
13802         * startup.el (command-line-normalize-file-name): On Windows and
13803         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
13805 2009-09-10  Juri Linkov  <juri@jurta.org>
13807         * isearch.el (isearch-text-char-description): Propertize escape
13808         character sequences with the `escape-glyph' face.  (Bug#4344)
13810         * simple.el (shell-command): Set asynchronous process filter to
13811         `comint-output-filter'.  (Bug#4343)
13813         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
13814         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
13815         the list.  Move "asm" to the bottom.
13816         (grep-find-ignored-directories): Add `choice' with nil value
13817         to empty the list easily.
13818         (grep-find-ignored-files): New option.
13819         (grep-files-history): Set to nil by default instead of '("ch" "el").
13820         (grep-compute-defaults): Add "<X>" to `grep-template'.
13821         (grep-read-files): Bind new local variables `default-alias' and
13822         `default-extension'.  Use a list of default values for the file prompt.
13823         (lgrep): Add `--exclude=' command line options composed from
13824         `grep-find-ignored-files'.
13825         (rgrep): Add `-name' command line options composed from
13826         `grep-find-ignored-files'.  (Bug#4301)
13828 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13830         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
13831         (bug#4368).
13833 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13835         * calendar/time-date.el (autoload):
13836         Expand define-obsolete-function-alias into defalias and make-obsolete
13837         for old Emacsen that Gnus supports.
13838         (with-no-warnings): Define it for old Emacsen.
13839         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
13840         is available.
13841         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
13842         float-time is available; suppress compile warning for time-to-seconds.
13844 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
13846         * net/imap.el (imap-message-map): Docstring fix.
13848 2009-09-09  Glenn Morris  <rgm@gnu.org>
13850         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
13851         line numbers too.  (Bug#4374)
13853 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13855         * smerge-mode.el (smerge-remove-props, smerge-refine):
13856         Use with-silent-modifications (bug#4342).
13858         * subr.el (with-silent-modifications): New macro.
13860 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
13862         * files.el (top-level): Require `cl' when compiling.
13864 2009-09-07  Glenn Morris  <rgm@gnu.org>
13866         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
13868         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
13869         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
13871 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
13873         * vc-git.el (vc-git-annotate-command): Use separator to parse
13874         arguments correctly.
13876 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
13878         * proced.el (proced-mode): Doc fix.
13880 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
13882         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
13883         lstat fails.
13884         (tramp-do-file-attributes-with-ls): Check for file existence at
13885         remote end.
13886         (tramp-do-file-attributes-with-stat): Likewise.
13887         (tramp-convert-file-attributes): Return nil when attr is nil.
13889 2009-09-05  Glenn Morris  <rgm@gnu.org>
13891         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
13892         properties to this button.
13893         (diary-fancy-display): Don't extend the button to the final newline.
13894         (diary-fancy-display-mode): Continue to define "q" as a local key.
13896         * calendar/cal-china.el (holiday-chinese): Make it slightly more
13897         efficient.
13899         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
13901         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
13902         (byte-compile-dest-file-function): New option.
13903         (byte-compile-dest-file): Doc fix.
13904         Obey byte-compile-dest-file-function.
13905         (byte-compile-cl-file-p): New function.
13906         (byte-compile-eval): Only suppress noruntime warnings about cl functions
13907         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
13908         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
13909         than for file being previously loaded.
13910         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
13911         (byte-compile-file-form-require): Handle the case where requiring a file
13912         indirectly causes CL to be loaded.
13914 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
13916         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
13917         before killing the old buffer, since by the time `kill-buffer' is
13918         run so many buffer variables have been set to nil that it may not
13919         behave as expected.  (Bug#4061)
13921 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
13923         * files.el (find-alternate-file): If the old buffer is modified
13924         and visiting a file, behave similarly to `kill-buffer' when
13925         killing it, thus reverting to the pre-1.878 behavior; see
13926         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
13927         for discussion.  Also, consult `buffer-file-name' as a variable
13928         not as a function, for consistency with the rest of the code.
13930 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
13932         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
13933         also when adding a new directory.
13935         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
13936         defun.
13938 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
13940         * files.el (locate-file-completion-table): Make it provide boundary
13941         information, so partial-completion works better.
13943 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
13945         * mail/footnote.el (Footnote-text-under-cursor):
13946         Check footnote-text-marker-alist before using it (bug#4324).
13948 2009-09-04  Glenn Morris  <rgm@gnu.org>
13950         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
13951         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
13952         * play/solitaire.el, play/tetris.el:
13953         Remove leading * from defcustom and defface docs.
13955         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
13956         necessary.
13957         (diary-fancy-overriding-map): New variable.
13958         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
13959         Use view-mode.
13961         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
13962         goto-line.
13964 2009-09-03  Glenn Morris  <rgm@gnu.org>
13966         * arc-mode.el (archive-mode):
13967         * dos-fns.el (set-default-process-coding-system):
13968         * man.el (Man-getpage-in-background):
13969         * menu-bar.el (menu-bar-describe-menu):
13970         * server.el (server-process-filter):
13971         * startup.el (command-line):
13972         * tar-mode.el (tar-header-block-tokenize, tar-extract):
13973         * w32-fns.el (set-default-process-coding-system):
13974         * x-dnd.el (x-dnd-handle-file-name):
13975         * international/mule-cmds.el (mule-menu-keymap)
13976         (set-default-coding-systems, language-info-alist, set-language-info)
13977         (set-language-environment, standard-display-european-internal)
13978         (set-locale-environment):
13979         * international/mule-diag.el (mule-diag):
13980         * mail/emacsbug.el (report-emacs-bug):
13981         * mail/rmail.el (rmail-mode):
13982         * mail/sendmail.el (mail-setup):
13983         Use default-value rather than default-enable-multibyte-characters.
13985         * progmodes/f90.el: Move all safe properties into the defcustoms.
13986         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
13988         * calendar/appt.el (appt-check):
13989         * calendar/diary-lib.el (diary-set-header, diary-live-p)
13990         (diary-check-diary-file, diary-list-entries)
13991         (diary-include-other-diary-files, diary-simple-display)
13992         (diary-fancy-display, diary-print-entries)
13993         (diary-mark-included-diary-files, diary-make-entry):
13994         Don't call substitute-in-file-name on diary-file.
13996 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
13997             Stefan Monnier  <monnier@iro.umontreal.ca>
13999         * mail/footnote.el (footnote-prefix): Make it a defcustom.
14000         (footnote-mode-map): Move initialization into the declaration.
14001         (footnote-minor-mode-map): Define it rather than changing global-map.
14002         (footnote-mode): Use define-minor-mode.
14004 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
14006         * net/tramp.el (tramp-handle-file-attributes-with-ls)
14007         (tramp-do-file-attributes-with-perl)
14008         (tramp-do-file-attributes-with-stat): Rename from
14009         `tramp-handle-file-attributes-with-*'.
14010         (tramp-handle-file-attributes): Use them.
14011         (tramp-do-directory-files-and-attributes-with-perl)
14012         (tramp-do-directory-files-and-attributes-with-stat): Rename from
14013         `tramp-handle-directory-files-and-attributes-with-*'.
14014         (tramp-handle-directory-files-and-attributes): Use them.
14015         (tramp-method-out-of-band-p): Additional parameter SIZE.
14016         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
14017         (tramp-handle-write-region): Use it.
14018         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
14019         (tramp-handle-vc-registered): Check, whether the first run did
14020         return files to be tested.
14021         (tramp-advice-make-auto-save-file-name): Do not call directly
14022         `tramp-handle-make-auto-save-file-name', because this would bypass
14023         the locking mechanism.
14025         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
14026         (file-remote-p, process-file, start-file-process, set-file-times)
14027         (tramp-compat-file-attributes): Compatibility functions shall not
14028         call directly `tramp-handle-*', because this would bypass the
14029         locking mechanism.
14030         (tramp-compat-number-sequence): New defun.
14032 2009-09-02  Glenn Morris  <rgm@gnu.org>
14034         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
14035         alias for float-time.
14036         (time-to-number-of-days): In Emacs, use float-time.
14037         * net/newst-backend.el (time-add): Suppress warnings from compat
14038         function.
14039         * time.el (emacs-uptime, emacs-init-time):
14040         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
14041         Use float-time rather than time-to-seconds.
14043         * minibuffer.el (completion-initials-expand): Fix typo.
14045         * faces.el (modeline, modeline-inactive, modeline-highlight)
14046         (modeline-buffer-id):
14047         * info.el (info-menu-5): Mark these face aliases as obsolete.
14049 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
14051         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
14052         space ...
14053         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
14054         no "--thread" option.
14055         (gdb-stopped): Don't print "Switched to thread" message when it is
14056         unchanged.
14058 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14060         * minibuffer.el (completion-try-completion)
14061         (completion-all-completions): Remove ill-defined (and
14062         mistakenly installed and luckily never used nor documented)
14063         `completion-styles' property.
14064         (completion-initials-expand, completion-initials-all-completions)
14065         (completion-initials-try-completion): New functions.
14066         (completion-styles-alist): Add doc to each entry.
14067         Add new `initials' entry.
14069 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
14071         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
14072         MI command -var-evaluate-expression.
14073         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
14074         and tweak for case of string child.
14075         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
14077 2009-09-01  Glenn Morris  <rgm@gnu.org>
14079         * add-log.el (change-log-date-face, change-log-name-face)
14080         (change-log-email-face, change-log-file-face, change-log-list-face)
14081         (change-log-conditionals-face, change-log-function-face)
14082         (change-log-acknowledgement-face):
14083         * cus-edit.el (custom-invalid-face, custom-rogue-face)
14084         (custom-modified-face, custom-set-face, custom-changed-face)
14085         (custom-saved-face, custom-button-face, custom-button-pressed-face)
14086         (custom-documentation-face, custom-state-face, custom-comment-face)
14087         (custom-comment-tag-face, custom-variable-tag-face)
14088         (custom-variable-button-face, custom-face-tag-face)
14089         (custom-group-tag-face-1, custom-group-tag-face):
14090         * diff-mode.el (diff-header-face, diff-file-header-face)
14091         (diff-index-face, diff-hunk-header-face, diff-removed-face)
14092         (diff-added-face, diff-changed-face, diff-function-face)
14093         (diff-context-face, diff-nonexistent-face):
14094         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
14095         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
14096         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
14097         (Info-title-4-face):
14098         * isearch.el (isearch-lazy-highlight-face):
14099         * log-view.el (log-view-file-face, log-view-message-face):
14100         * paren.el (show-paren-match-face, show-paren-mismatch-face):
14101         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
14102         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
14103         (cvs-msg-face):
14104         * smerge-mode.el (smerge-mine-face, smerge-other-face)
14105         (smerge-base-face, smerge-markers-face):
14106         * wid-edit.el (widget-documentation-face, widget-button-face)
14107         (widget-field-face, widget-single-line-field-face)
14108         (widget-inactive-face, widget-button-pressed-face):
14109         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
14110         (woman-addition-face):
14111         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
14112         (eshell-ls-executable-face, eshell-ls-readonly-face)
14113         (eshell-ls-unreadable-face, eshell-ls-special-face)
14114         (eshell-ls-missing-face, eshell-ls-archive-face)
14115         (eshell-ls-backup-face, eshell-ls-product-face)
14116         (eshell-ls-clutter-face):
14117         * eshell/em-prompt.el (eshell-prompt-face):
14118         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
14119         * obsolete/old-whitespace.el (whitespace-highlight-face):
14120         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
14121         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
14122         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
14123         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
14124         (antlr-font-lock-literal-face):
14125         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
14126         (ebrowse-root-class-face, ebrowse-file-name-face)
14127         (ebrowse-default-face, ebrowse-member-attribute-face)
14128         (ebrowse-member-class-face, ebrowse-progress-face):
14129         * progmodes/make-mode.el (makefile-space-face):
14130         * progmodes/sh-script.el (sh-heredoc-face):
14131         * textmodes/flyspell.el (flyspell-incorrect-face)
14132         (flyspell-duplicate-face):
14133         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
14134         * textmodes/texinfo.el (texinfo-heading-face):
14135         Mark face aliases with "-face" suffix as obsolete.
14137         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
14138         compiler.
14140         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
14141         (eudc-bob-sound-menu): Use defvar rather than defconst, since
14142         easy-menu-define wants to modify these.
14144         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
14146         * net/browse-url.el (browse-url-file-url):
14147         * term/internal.el (dos-codepage-setup):
14148         Use default-value rather than default-enable-multibyte-characters.
14150         * progmodes/etags.el (etags-goto-tag-location):
14151         * progmodes/flymake.el (flymake-highlight-line)
14152         (flymake-goto-file-and-line, flymake-goto-line):
14153         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
14154         (gdb-goto-breakpoint):
14155         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
14156         * progmodes/python.el (python-find-function)
14157         (python-pdbtrack-track-stack-file):
14158         * progmodes/verilog-mode.el (verilog-surelint-off):
14159         * term/ns-win.el (ns-open-file-select-line):
14160         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
14161         Use forward-line rather than goto-line.
14163         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
14164         * textmodes/reftex-index.el (reftex-display-index):
14165         * textmodes/reftex-ref.el (reftex-offer-label-menu):
14166         * textmodes/reftex-toc.el (reftex-toc):
14167         Remove unnecessary bindings of default-major-mode (all are followed by
14168         major-mode check and possible mode switch).
14170 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
14172         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14173         Handle watchpoints (bug#4282).
14174         (def-gdb-thread-buffer-command): Enable thread to be selected by
14175         clicking without selecting threads buffer first.
14176         (gdb-current-context-command): Use selected frame so that "up",
14177         "down" etc work in the GUD buffer.
14178         (gdb-update): Find selected frame before rendering stack buffer.
14179         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
14181 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
14183         * progmodes/sym-comp.el (displayed-completions): Remove.
14184         (symbol-complete): Use minibuffer-complete.
14186 2009-08-31  Glenn Morris  <rgm@gnu.org>
14188         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
14190         * apropos.el (apropos-symbols-internal):
14191         Handle (obsolete) face aliases.
14193         * faces.el (describe-face): Adjust the output format to be more like
14194         describe-variable, and to mention (obsolete) face aliases.
14195         Adjust the whitespace so that help-setup-xref works.
14197         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
14198         * calendar/diary-lib.el (diary-button-face):
14199         Mark these face aliases as obsolete.
14201         * calendar/calendar.el (calendar-today): Doc fix.
14203 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
14205         * progmodes/gdb-mi.el (gdb-control-all-threads)
14206         (gdb-control-current-thread): Force tool bar update.
14207         (gdb-non-stop-handler): New function.
14208         (gdb-init-1): Use it to test if non-stop mode is supported.
14209         Remove unused gdbmi buffer type.
14211 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
14213         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
14214         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
14216 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
14218         * comint.el (comint-exec-1): Check command is non-null first.
14219         Part of gdb-mi.el change (2009-08-28).
14221 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14223         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
14225 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
14227         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
14228         instead of `dolist' to avoid a recursive require when bootstrapping.
14230 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14232         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
14234         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
14236         * net/imap.el (imap-send-command): Simplify.
14237         (imap-wait-for-tag): point-max -> buffer-size.
14239         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
14241         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
14242         with constant argument.
14244         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
14246         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
14248         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
14249         Change default, since most of our files don't have a history.
14250         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
14251         the user.
14253         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
14254         Add comint-run.
14256         * calc/calc.el: Improve commenting convention.
14257         (calc-digit-map, toplevel): Simplify.
14259         * comint.el (comint-insert-input): Be careful to only set point if we
14260         don't delegate to some other command.
14262         * proced.el (proced-signal-list): Make it an alist.
14263         (proced-grammar-alist): Capitalize names.
14264         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
14265         Disable undo manually and make it read-only.
14266         Use completion-annotate-function.
14268         * minibuffer.el (minibuffer-message): If the current buffer is not
14269         a minibuffer, insert the message in the echo area rather than at the
14270         end of the buffer.
14271         (completion-annotate-function): New variable.
14272         (minibuffer-completion-help): Use it.
14273         (completion--embedded-envvar-table): Environment vars are
14274         always case-sensitive.
14276 2009-08-30  Glenn Morris  <rgm@gnu.org>
14278         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
14279         from fortran-current-defun.
14280         (fortran-beginning-of-subprogram): Be more precise about finding the
14281         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
14282         (fortran-end-of-subprogram): Simplify.
14283         (fortran-current-defun): Use fortran-start-prog-re.
14285 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
14287         * subr.el (do-after-load-evaluation): Simplify.
14289 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
14291         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
14293         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
14294         (vc-rcs-print-log): Use it.
14296         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
14298 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14300         * paths.el (abbrev-file-name): Move to abbrev.el.
14301         * abbrev.el (abbrev-file-name): Move from paths.el.
14302         Obey user-emacs-directory.
14303         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
14304         user-emacs-directory.
14305         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
14306         abbrev-file-name and calc-settings-file any more.
14307         * startup.el (command-line): Recompute abbrev-file-name and
14308         abbreviated-home-dir.
14309         (normal-no-mouse-startup-screen): Improve the generic code and get rid
14310         of the special code for when C-h bindings haven't been changed.
14311         (display-startup-echo-area-message): Use with-current-buffer.
14312         (command-line-1): Use a list of strings, rather than a list of lists
14313         of strings for longopts.
14315         * files.el (get-free-disk-space): Use / for default-directory.
14317         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
14318         Use with-current-buffer.
14320         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
14321         Recognize immutable variables like most-positive-fixnum.
14322         (byte-compile-setq-default): Check and warn if trying to assign
14323         to an immutable variable, or a non-variable.
14325         * progmodes/cc-vars.el (c-comment-continuation-stars):
14326         * progmodes/cc-engine.el (c-looking-at-bos):
14327         * progmodes/cc-cmds.el (c-toggle-auto-state)
14328         (c-forward-into-nomenclature, c-backward-into-nomenclature)
14329         (c-comment-line-break-function): Add version of obsolescence.
14331 2009-08-28  Juri Linkov  <juri@jurta.org>
14333         * files.el (magic-fallback-mode-alist): Add ZIP magic number
14334         associated with `archive-mode'.
14336         * image.el (image-type-header-regexps): Use only JPEG magic number
14337         to determine JPEG images, and don't use `image-jpeg-p' because
14338         Emacs can display non-JFIF non-Exif JPEG images.
14340 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
14342         * arc-mode.el (archive-mode):
14343         * emacs-lisp/re-builder.el (re-builder-unload-function):
14344         Protect against the default value of `major-mode' being nil.
14346 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
14348         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
14349         Fix typos in docstrings.
14351         * progmodes/js.el (js--macro-decl-re): Doc fix.
14352         (js--plain-method-re, js--split-name): Refloc docstring.
14353         (js--class-styles, js--make-merged-item, js--splice-into-items):
14354         Fix typos in docstrings; reflow docstrings.
14355         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
14356         (js--variable-decl-matcher, js--inside-pitem-p)
14357         (js--parse-state-at-point, js--get-all-known-symbols)
14358         (js--symbol-history, js-find-symbol, js--js-references)
14359         (js--moz-interactor, js--js-encode-value, js--read-tab):
14360         Fix typos in docstrings.
14362 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14364         * textmodes/reftex.el (reftex-get-file-buffer-force):
14365         * progmodes/verilog-mode.el (verilog-batch-execute-func):
14366         * emulation/viper.el (viper-go-away, viper-set-hooks):
14367         * emacs-lisp/re-builder.el (re-builder-unload-function):
14368         * emacs-lisp/bytecomp.el (byte-compile-file):
14369         * ses.el (ses-unload-function):
14370         * hexl.el (hexl-find-file):
14371         * files.el (normal-mode):
14372         * ehelp.el (with-electric-help):
14373         * autoinsert.el (auto-insert-alist):
14374         * arc-mode.el (archive-mode):
14375         Use (default-value 'major-mode) instead of default-major-mode.
14377         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
14378         * international/mule.el (load-with-code-conversion):
14379         * emacs-lisp/debug.el (debug):
14380         * ediff-vers.el (ediff-rcs-get-output-buffer):
14381         * dired.el (dired-internal-noselect): Don't let-bind
14382         default-major-mode around code that doesn't use it.
14383         E.g. buffer creation via get-buffer-create doesn't use it.
14385 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
14387         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
14388         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
14389         when writing the temp file.  Otherwise, epa-file gets confused.
14390         (tramp-register-file-name-handlers): Make it a defun.  Move also
14391         `epa-file-handler' to the front of `file-name-handler-alist'.
14393 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14395         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
14396         start right after a ^M.
14397         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
14398         (tramp-completion-file-name-regexp-separate)
14399         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
14400         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
14401         Don't modify last-coding-system-used by accident.
14402         (tramp-completion-file-name-handler): Apply the checks here,
14403         instead during registration.
14404         (tramp-register-file-name-handlers): Renamed from
14405         `tramp-register-file-name-handler'.  Register both
14406         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
14407         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
14409 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
14411         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
14412         Remove variable ...
14413         (gdb-init-1, gdb-display-separate-io-buffer)
14414         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
14415         references to it.
14416         (gdb-inferior-io-mode): Use make-comint-in-buffer.
14417         (gdb-inferior-filter): Use comint-output-filter to stop
14418         echoing and remove ^M characters.
14420 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14422         * emulation/viper-init.el (viper-restore-cursor-type):
14423         * emulation/cua-base.el (cua--update-indications):
14424         Replace default-cursor-type with (default-value 'cursor-type).
14426         * mail/sendmail.el (mail-recover-1):
14427         * international/mule-diag.el (describe-current-coding-system-briefly)
14428         (describe-current-coding-system):
14429         * international/mule-cmds.el (select-safe-coding-system)
14430         (select-message-coding-system)
14431         (set-language-environment-coding-systems, set-locale-environment):
14432         * hexl.el (hexl-insert-multibyte-char):
14433         * dos-w32.el (find-buffer-file-type-coding-system):
14434         * simple.el (what-cursor-position):
14435         Replace uses of default-buffer-file-coding-system
14436         with (default-value 'buffer-file-coding-system).
14438         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
14439         Replace uses of default-cursor-in-non-selected-windows
14440         with (default-value 'cursor-in-non-selected-windows).
14441         Use with-current-buffer.
14443         * mail/feedmail.el: Use CL macros.
14444         (feedmail-run-the-queue, feedmail-send-it-immediately):
14445         * dos-w32.el (find-buffer-file-type): Replace uses of
14446         default-buffer-file-type with (default-value 'buffer-file-type).
14448 2009-08-28  Glenn Morris  <rgm@gnu.org>
14450         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
14451         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
14452         Use default-value of major-mode rather than default-major-mode.
14454 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14456         * Makefile.in (update-elcfiles): Report left over elc files.
14458         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
14459         expand-file-name and with-current-buffer.
14460         (mail-get-names, mail-directory): Use with-current-buffer.
14462         * vc.el (vc-read-revision): New function.
14463         (vc-version-diff, vc-merge): Use it.
14465 2009-08-27  Sam Steingold  <sds@gnu.org>
14467         * simple.el (kill-do-not-save-duplicates): New user option.
14468         (kill-new): When it is non-nil, and the new string is the same as
14469         the latest kill, set replace to t to avoid duplicates in kill-ring.
14471 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
14473         * net/tramp.el (tramp-handle-process-file): Do not flush all
14474         caches when `process-file-side-effects' is set.
14475         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
14476         instead of `tramp-find-file-exists-command'.
14477         Unset `process-file-side-effects'.
14479 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
14481         * net/tramp.el (tramp-methods): New method "rsyncc".
14482         (top): Add completion function for "rsyncc".
14483         (tramp-message-show-message): New defvar.
14484         (tramp-message, tramp-error): Use it.
14485         (tramp-do-copy-or-rename-file-directly): Extend check for direct
14486         remote copying.
14487         (tramp-do-copy-or-rename-file-out-of-band): Handle new
14488         `tramp-methods' entry `copy-env' of "rsyncc".
14489         (tramp-vc-registered-read-file-names): New defconst.
14490         (tramp-vc-registered-file-names): New defvar.
14491         (tramp-handle-vc-registered): Implement optimization strategy.
14492         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
14493         (tramp-vc-file-name-handler): New defun.
14494         (tramp-get-ls-command, tramp-get-test-command)
14495         (tramp-get-file-exists-command, tramp-get-remote-ln)
14496         (tramp-get-remote-perl, tramp-get-remote-stat)
14497         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
14499         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
14500         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
14501         timestamps.
14502         (tramp-get-file-property): Check for timestamps in
14503         `tramp-cache-inhibit-cache'.
14504         (tramp-set-file-property): Write timestamp.
14506 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
14508         * language/japan-util.el (japanese-symbol-table): Add entries for
14509         cp932-2-byte.
14511         * international/characters.el: Add category `j' to cp932-2-byte.
14513 2009-08-27  Kenichi Handa  <handa@m17n.org>
14515         * international/fontset.el (build-default-fontset-data): New macro.
14516         (setup-default-fontset): Use build-default-fontset-data for CJK,
14517         tibetan, ethiopic, and ipa.
14519 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14521         * cus-start.el (default-major-mode): Customize `major-mode' instead.
14522         (enable-multibyte-characters): Not customizable any more.
14524         * subr.el (default-mode-line-format, default-header-line-format)
14525         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
14526         (default-direction-reversed, default-truncate-lines)
14527         (default-left-margin, default-tab-width, default-case-fold-search)
14528         (default-left-margin-width, default-right-margin-width)
14529         (default-left-fringe-width, default-right-fringe-width)
14530         (default-fringes-outside-margins, default-scroll-bar-width)
14531         (default-vertical-scroll-bar, default-indicate-empty-lines)
14532         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
14533         (default-fringe-cursor-alist, default-scroll-up-aggressively)
14534         (default-scroll-down-aggressively, default-fill-column)
14535         (default-cursor-type, default-buffer-file-type)
14536         (default-cursor-in-non-selected-windows)
14537         (default-buffer-file-coding-system, default-major-mode)
14538         (default-enable-multibyte-characters): Mark as obsolete.
14540 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
14542         * vc-dir.el (vc-dir-update): Remove debug helper.
14544         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
14546 2009-08-26  Sam Steingold  <sds@gnu.org>
14548         * simple.el (save-interprogram-paste-before-kill): New user option.
14549         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
14550         save the interprogram-paste into kill-ring before overriding it
14551         with the Emacs kill.
14553 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
14555         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
14556         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
14557         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
14558         and move to vc-rcs.el.
14559         (vc-default-next-revision): Rename to vc-rcs-next-revision and
14560         move to vc-rcs.el.
14561         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
14562         (vc-rcs-update-changelog): Remove.
14563         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
14564         and move to vc-rcs.el.
14566         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
14567         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
14568         renaming.
14569         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
14570         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
14571         vc.el, renamed to be RCS specific.
14573         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
14574         New functions.
14575         (vc-cvs-update-changelog): Move here from vc.el.
14577         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
14578         New functions.
14580 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14582         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
14584 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
14586         * vc-git.el (vc-git-register): Use "git add" for directories.
14587         (vc-git-stash, vc-git-stash-show): New functions.
14588         (vc-git-extra-menu-map): Bind them.
14590         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
14591         directory correctly in case the item is a directory itself.
14593         * vc.el: Document the desired behavior for reverted files in the
14594         `added' state.
14595         (vc-default-prettify-state-info): Remove function, unused.
14597         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
14599 2009-08-26  Glenn Morris  <rgm@gnu.org>
14601         * bindings.el (standard-mode-line-format): Reposition dashes in
14602         which-func entry.  (Bug#4217)
14604         * files.el (enable-local-variables, enable-local-eval)
14605         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
14606         the defcustoms.
14607         (auto-mode-alist, ignored-local-variables)
14608         (save-some-buffers-action-alist): Move risky declarations to the
14609         definitions.
14610         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
14611         (font-lock-defaults, format-alist, imenu--index-alist)
14612         (imenu-generic-expression, input-method-alist, minor-mode-alist)
14613         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
14614         (mode-line-modified, mode-line-mule-info, mode-line-position)
14615         (mode-line-process, mode-line-remote, outline-level)
14616         (parse-time-rules, rmail-output-file-alist)
14617         (special-display-buffer-names, vc-mode):
14618         Move risky declarations to the relevant files.
14619         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
14620         (mode-line-modified, mode-line-process, mode-line-position)
14621         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
14622         * font-core.el (font-lock-defaults):
14623         * format.el (format-alist):
14624         * vc-hooks.el (vc-mode):
14625         * window.el (special-display-buffer-names):
14626         * international/mule-cmds.el (input-method-alist):
14627         Define riskiness here (dumped file) rather than in files.el.
14628         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
14629         * imenu.el (imenu-generic-expression, imenu--index-alist):
14630         * outline.el (outline-level):
14631         * time.el (display-time-string):
14632         * calendar/parse-time.el (parse-time-rules):
14633         * mail/rmailout.el (rmail-output-file-alist):
14634         Autoload riskiness here, rather than placing in files.el.
14636 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
14638         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
14640 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
14642         * simple.el (process-file-side-effects): New defvar.
14644         * dired-aux.el (dired-show-file-type):
14645         * vc.el (vc-diff-internal):
14646         * vc-arch.el (vc-arch-diff):
14647         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
14648         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
14649         * vc-git.el (vc-git-registered, vc-git-working-revision)
14650         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
14651         (vc-git--empty-db-p):
14652         * vc-hooks.el (vc-user-login-name):
14653         * vc-svn.el (vc-svn-registered, vc-svn-state)
14654         (vc-svn-dir-extra-headers, vc-svn-find-revision):
14655         * progmodes/grep.el (grep-probe): Let-bind
14656         `process-file-side-effects' with nil.
14658         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
14660         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
14661         daemon.  Replace ping by checking for running service for bluez
14662         and zeroconf.  (Bug#4239)
14664 2009-08-25  Kevin Ryde  <user42@zip.com.au>
14666         * net/dig.el (dig): Add autoload cookie.
14668 2009-08-25  Glenn Morris  <rgm@gnu.org>
14670         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
14671         load-history for absolute file-names.
14672         (byte-compile-file-form-require): Warn about use of the cl package.
14674         * format.el (format-alist): Doc fix.
14676         * play/bubbles.el (top-level): Don't require cl at run-time.
14678         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
14679         run-time cl).
14681 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
14683         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
14684         from cl package.
14685         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
14687 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
14689         * calc/calc-alg.el (math-trig-rewrite)
14690         (math-hyperbolic-trig-rewrite): New functions.
14691         (calc-simplify): Simplify trig functions when asked.
14693 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14695         * diff-mode.el (diff-find-source-location): Avoid goto-line.
14697 2009-08-24  Kenichi Handa  <handa@m17n.org>
14699         * language/ind-util.el (mapthread): Delete it.
14700         (combinatorial): New function.
14701         (indian--puthash-cv): Use combinatorial instead of mapthread.
14703 2009-08-22  Kevin Ryde  <user42@zip.com.au>
14705         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
14706         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
14707         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
14708         Clarify docstring that the value is strings not symbols.
14709         (checkdoc-list-of-strings-p): New function.
14711 2009-08-22  Glenn Morris  <rgm@gnu.org>
14713         * files.el (auto-mode-alist):
14714         * hippie-exp.el (he-concat-directory-file-name):
14715         * lpr.el (lpr-windows-system, printer-name):
14716         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
14717         * ps-print.el (ps-windows-system):
14718         * startup.el (command-line):
14719         * emulation/viper-ex.el (viper-glob-function):
14720         * international/mule-cmds.el (set-language-environment-coding-systems):
14721         * net/ange-ftp.el (ange-ftp-write-region):
14722         * obsolete/fast-lock.el (fast-lock-cache-name):
14723         Remove code for defunct system-types emx, macos, mswindows, next-mach,
14724         unisoft-unix, vax-vms, win32, w32.
14726         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
14727         given name if the pattern is not more specific.
14729         * calendar/lunar.el (lunar-phase-names): New option.
14730         (lunar-phase): Doc fix.
14731         (lunar-cycles-per-year): New constant.
14732         (lunar-index): New function.
14733         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
14734         (lunar-phase-name): Use lunar-phase-names.
14735         (calendar-lunar-phases): Use format.
14736         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
14738         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
14739         Copy imenu-example--name-and-position function here for own use.
14740         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
14742         * bs.el (bs--redisplay):
14743         * cus-edit.el (custom-redraw):
14744         * ibuffer.el (ibuffer-bury-buffer):
14745         * server.el (server-goto-line-column):
14746         * startup.el (command-line-1):
14747         * strokes.el (strokes-xpm-for-stroke):
14748         * term.el (term-display-buffer-line):
14749         * view.el (View-goto-line):
14750         * calc/calc.el (calc-do, calc-trail-buffer):
14751         * play/gamegrid.el (gamegrid-add-score-insecure):
14752         * progmodes/ada-mode.el (ada-compile-goto-error):
14753         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
14754         (ebrowse-select-1st-to-9nth):
14755         * progmodes/cperl-mode.el (cperl-time-fontification):
14756         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
14757         * progmodes/gud.el (gud-display-line):
14758         (idlwave-shell-display-line):
14759         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
14760         * progmodes/make-mode.el (makefile-browser-toggle):
14761         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
14762         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
14763         * textmodes/picture.el (picture-draw-rectangle):
14764         * textmodes/reftex-index.el (reftex-index-goto-letter):
14765         (reftex-select-jump-to-previous):
14766         * textmodes/reftex-sel.el (reftex-find-start-point)
14767         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
14768         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
14769         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
14770         * textmodes/tex-mode.el (tex-compilation-parse-errors):
14771         * textmodes/two-column.el (2C-associated-buffer):
14772         Use forward-line rather than goto-line.
14774         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
14775         goto-line.
14777         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
14778         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
14779         (quick-check-list-to-regexp): Declare.
14781         * progmodes/make-mode.el (makefile-browser-insert-selection):
14782         Use goto-char rather than goto-line.
14784         * progmodes/prolog.el (compilation-error-regexp-alist)
14785         (compilation-forget-errors): Declare.
14787 2009-08-22  Juri Linkov  <juri@jurta.org>
14789         * progmodes/grep.el (lgrep, rgrep): At the beginning
14790         set `dir' to `default-directory' unless `dir' is a non-nil
14791         readable directory.  (Bug#4052)
14792         (lgrep, rgrep): Change a weird way to report an error
14793         from using `read-string' to using `error'.
14794         Instead of using interactive arguments in the function body,
14795         add new argument `confirm'.
14797 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14799         * textmodes/remember.el (remember-buffer):
14800         * progmodes/cperl-mode.el (cperl-vc-header-alist):
14801         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
14802         (icalendar-extract-ical-from-buffer):
14803         * net/newst-treeview.el (newsticker-groups-filename):
14804         * net/newst-backend.el (newsticker-cache-filename):
14805         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
14806         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
14807         (speedbar-add-ignored-path-regexp, speedbar-line-path)
14808         (speedbar-buffers-line-path, speedbar-path-line)
14809         (speedbar-buffers-line-path):
14810         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
14811         (epg-sign-keys):
14812         * epa.el (epa-display-verify-result):
14813         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
14815 2009-08-21  Glenn Morris  <rgm@gnu.org>
14817         * progmodes/js.el (inferior-moz-process): Fix declaration.
14819         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
14821         * obsolete/rnewspost.el (news-mail-reply):
14822         Use goto-char rather than goto-line.
14824         * term/ns-win.el (ns-open-file-select-line):
14825         Use line-beginning-position rather than goto-line.
14827         * apropos.el (apropos-command):
14828         * ehelp.el (electric-helpify):
14829         * printing.el (pr-show-setup):
14830         * strokes.el (strokes-help):
14831         * tutorial.el (tutorial--describe-nonstandard-key)
14832         (tutorial--detailed-help):
14833         * woman.el (woman-mini-help, woman-display-extended-fonts):
14834         * calc/calc-help.el (calc-describe-key):
14835         * emulation/edt.el (edt-electric-helpify):
14836         * international/mule-diag.el (mule-diag):
14837         * play/yow.el (apropos-zippy):
14838         * progmodes/python.el (python-describe-symbol):
14839         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
14840         * textmodes/table.el (*table--cell-describe-mode)
14841         (*table--cell-describe-bindings):
14842         Use help-print-return-message rather than the now obsolete alias.
14844         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
14845         (calendar-cursor-to-visible-date):
14846         * play/5x5.el (5x5-position-cursor):
14847         * play/decipher.el (decipher):
14848         * play/gomoku.el (gomoku-goto-xy):
14849         * play/landmark.el (lm-goto-xy):
14850         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
14851         (mpuz-paint-digit):
14852         Use forward-line, not goto-line.
14854         * mail/rmail.el (rmail-obsolete): Delete custom group.
14855         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
14856         (rmail-remote-password, rmail-remote-password-required):
14857         Remove unneeded :set-after and :set properties.
14859 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
14861         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
14863 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
14865         * loadup.el: Remove leftover macos code.
14867         * vc-git.el (vc-git-annotate-command): Run asynchronously.
14868         Explicitly pass the date format to git blame so that user local
14869         so that the output format can be parsed.
14871 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
14873         * net/dbus.el (top): Don't check for (getenv
14874         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
14876 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
14878         * log-edit.el (log-edit-strip-single-file-name): New var.
14879         (log-edit-insert-changelog): Use it.  Bug#3571
14881 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14883         * subr.el (read-passwd): Use read-key so keypad keys work as well.
14884         Bug#3287
14886         * help.el (help-print-return-message): Rename from
14887         print-help-return-message.
14889         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
14890         cvs-mode-map parent hack.
14891         (log-view-mode): Derive from special-mode.
14893         * linum.el (linum-mode): window-size-change-functions is redundant.
14894         Adapt to new window-configuration-change-hook behavior.
14895         (linum-after-size, linum-after-config): Remove.
14897         * imenu.el (imenu-example--name-and-position)
14898         (imenu-example--lisp-extract-index-name)
14899         (imenu-example--create-lisp-index, imenu-example--create-c-index):
14900         Mark as obsolete.
14902         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
14903         (inferior-prolog-mode): Use it.
14904         (inferior-prolog-load-file): Reset list of errors.
14906 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
14908         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
14910         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
14912 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
14914         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
14915         is running already.
14917 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14919         * subr.el (listify-key-sequence-1): Use normal syntax since those
14920         integers are nowadays always represented by the same (positive) number
14921         on all platforms.
14922         (read-key-empty-map): New const.
14923         (read-key-delay): New var.
14924         (read-key): New function.
14925         (force-mode-line-update): Use with-current-buffer.
14926         (locate-user-emacs-file): Don't forget to abbreviate the file name.
14927         (start-process-shell-command, start-file-process-shell-command):
14928         Discourage the use of command-args.
14930 2009-08-19  Glenn Morris  <rgm@gnu.org>
14932         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
14934 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14936         * simple.el (choose-completion-string): Don't rely on
14937         minibuffer-completing-file-name and ad-hoc checks to decide whether
14938         to continue completion or not.
14940         * minibuffer.el (minibuffer-hide-completions): New function.
14941         (completion--do-completion): Use it.
14942         (completions-annotations): New face.
14943         (completion--insert-strings): Use it.
14944         (completion-pcm--delim-wild-regex): Add docstring.
14945         (completion-pcm--string->pattern): Add support for 0-width delimiters
14946         in completion-pcm--delim-wild-regex.
14948 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14950         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
14951         Remove unused var `buffer-modified-p'.
14953         * minibuffer.el (completion--do-completion): Move point for the #b001
14954         case as well (bug#4176).
14955         (minibuffer-complete, minibuffer-complete-word): Don't move point.
14957 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
14959         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
14960         and :session buses.
14962 2009-08-18  Kenichi Handa  <handa@m17n.org>
14964         * international/ucs-normalize.el (ucs-normalize-version):
14965         Change to 1.1.
14966         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
14967         (utf-8-hfs): Make it perform normalization on encoding too.
14969         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
14970         (sentence-end-without-space): Delete duplicated chars.
14971         (sentence-end-base): Likewise.
14973         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
14974         (html-mode): Delete duplicated chars from sentence-end-base.
14976         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
14977         (texinfo-mode): Delete duplicated chars from sentence-end-base.
14979 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
14981         * files.el (hack-one-local-variable): If the mode function is for
14982         a minor mode, pass it an argument (Bug#4148).
14984 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
14986         * net/tramp.el (tramp-register-completion-file-name-handler):
14987         Check also for (member 'partial-completion completion-styles).
14989 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
14991         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
14992         abbrev (Bug#3943).
14994 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
14996         * progmodes/cperl-mode.el: Merge upstream 6.2.
14997         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
14998         (cperl-forward-re): Check cperl-brace-recursing.
14999         (cperl-highlight-charclass): New function.
15000         (cperl-find-pods-heres): Use it.
15001         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
15002         (cperl-beautify-regexp-piece): Fix column calculation.
15003         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
15004         (cperl-beautify-level): Don't process entire regexp.
15005         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
15006         calling man.
15007         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
15008         (cperl-init-faces): Build a list in the normal way.
15010 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
15012         * calendar/parse-time.el (parse-time-string-chars): Save match
15013         data.
15015 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15017         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
15018         (sql-product): Use it.
15019         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
15020         (sql-set-product): Add completion.
15021         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
15022         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
15023         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
15024         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
15025         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
15026         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
15027         (sql-highlight-db2-keywords): Remove.
15028         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
15029         (sql-highlight-product): Use derived-mode-p.
15030         (sql-set-sqli-buffer): Use with-current-buffer.
15031         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
15032         Simplify.
15034         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
15036         * term.el: Fix commenting convention, turn comments into docstrings.
15038 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
15040         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
15042 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
15044         * calendar/parse-time.el (parse-time-string-chars): Compute using
15045         character classes, to handle non-ascii characters (Bug#3190).
15047 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
15049         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
15050         another heredoc if the user adds another < (Bug#3226).
15052         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
15053         Don't initialize based on window-system (Bug#4124).
15055         * facemenu.el (facemenu-read-color): Use a completion function
15056         that accepts any defined color, such as RGB triplets (Bug#3677).
15058         * files.el (get-free-disk-space): Change fallback default
15059         directory to /.  Expand DIR argument before switching to fallback.
15060         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
15062 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
15064         * files.el (load-library): Doc fix.
15066 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
15068         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
15069         (viper-if-string): Redefine C-s in the minibuffer to insert the last
15070         incremental search string.
15072         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
15073         XEmacs.
15075         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
15076         (ediff-merge-region-is-non-clash)
15077         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
15078         Also check if the job is really a merge job.
15080         * ediff.el (ediff-current-file): New function.
15082 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
15084         * progmodes/js.el: Edit docstrings throughout to follow Emacs
15085         conventions.
15086         (js-insert-and-indent): Delete function.
15087         (js-mode-map): Don't bind keys to js-insert-and-indent.
15088         (js-beginning-of-defun): Rename from js--beginning-of-defun.
15089         (js-end-of-defun): Rename from js--end-of-defun.
15090         (js-auto-indent-flag): Delete variable.
15092 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
15094         * progmodes/js.el: Remove proclaim statement.
15095         Defvar which-func-imenu-joiner-function to silence compiler.
15097         * files.el (auto-mode-alist): Use js-mode for .js files.
15099         * progmodes/js2-mode.el: Remove file.
15101         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
15103         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
15105         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
15107 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
15108             Karl Landstrom  <karl.landstrom@brgeight.se>
15110         * progmodes/js.el: New file.
15112 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
15114         * timezone.el (timezone-parse-date): Add ability to understand ISO
15115         basic format (minimal separators) dates in addition to the
15116         already-supported extended format dates.
15118 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
15120         * international/ucs-normalize.el: Add a `coding' file variable.
15122         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
15124 2009-08-14  Sam Steingold  <sds@gnu.org>
15126         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
15128 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
15130         * faces.el (help-argument-name): Define it here instead of
15131         help-fns.el, because in daemon mode help-fns.el may be loaded when
15132         faces are still uninitialized (Bug#1078).
15134         * help-fns.el (help-argument-name): Move defface to faces.el.
15136 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
15138         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
15139         create buffer with a pty but no process so that GDB can make the
15140         inferior the controlling process.
15142 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
15144         * international/ucs-normalize.el: New file.
15146 2009-08-13  Richard Stallman  <rms@gnu.org>
15148         * mail/rmail.el (rmail-get-attr-names):
15149         Accept an attribute header that is too short.
15151         * mail/rmail.el (rmail-forget-messages):
15152         Ignore nil elt in rmail-message-vector.  Use dotimes.
15154         * progmodes/compile.el (compilation-goto-locus):
15155         Use next-error-move-function.
15157         * simple.el (next-error-move-function): New variable.
15159 2009-08-12  Juri Linkov  <juri@jurta.org>
15161         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
15162         always non-nil.  (Bug#4052)
15164         * replace.el (read-regexp): Return empty string when
15165         `default-value' is nil.
15166         (keep-lines-read-args): Don't use empty string as the
15167         default value for `read-regexp'.  (Bug#2495)
15169 2009-08-12  Juri Linkov  <juri@jurta.org>
15171         * international/mule-cmds.el (ucs-insert): Change arguments
15172         from `arg' to `character', `count', `inherit' to be the same
15173         as in `insert-char'.  Doc fix.  (Bug#4039)
15175         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
15177 2009-08-12  Juri Linkov  <juri@jurta.org>
15179         * files-x.el: New file.
15181         * files.el: Move code that deals with adding/deleting
15182         file/directory-local variables to files-x.el.
15184         * Makefile.in (ELCFILES): Add files-x.elc.
15186 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
15188         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
15189         to use `goto-line'.
15190         (gdb-place-breakpoints, gdb-get-location): Rewritten without
15191         `goto-line'.
15192         (gdb-invalidate-disassembly): Do not refresh upon receiving
15193         'update signal.  Instead, update all disassembly buffers only after
15194         threads list.
15195         (gdb): Send -target-detach when buffer is killed (Bug#3794).
15196         (gdb-starting): Moved -data-list-register-names...
15197         (gdb-stopped): ...here so it's sent when first thread stops.
15198         (gdb-registers-handler-custom): Do nothing if register names are
15199         unknown yet.
15201         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
15202         from `gdb-mi.el' to avoid extra tangling.
15204         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
15205         change which breaks `gud-def' definitions used in `gdb'.
15206         (gdb-update-gud-running): No extra fuss for updating frame number.
15208 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15210         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
15211         (describe-language-environment-map, setup-language-environment-map)
15212         (set-coding-system-map): Move initialization into declaration.
15213         (set-language-info-alist): Last arg to define-key-after can be skipped.
15215         * international/quail.el (quail-completion-1): Simplify.
15216         (quail-define-rules): Use slightly more compact code.
15217         (quail-insert-decode-map): Propertize keys, compact columns.
15219         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15220         Add goto-line.
15222 2009-08-10  Miles Bader  <miles@gnu.org>
15224         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
15225         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
15226         (js2-instance-member, js2-private-member, js2-private-function-call)
15227         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
15228         (js2-magic-paren, js2-external-variable):
15229         Remove "-face" suffix from face names.
15230         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
15231         (js2-highlight-undeclared-vars, js2-peek-token)
15232         (js2-parse-function-params, js2-mode-show-errors)
15233         (js2-mode-show-warnings, js2-make-magic-delimiter)
15234         (js2-mode-highlight-magic-parens): Update to use new face names.
15236 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
15238         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
15239         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
15241 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
15243         * subr.el: Provide hashtable-print-readable.
15245         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
15246         hs-c-like-adjust-block-beginning.
15247         (hs-hide-block-at-point): Stop hiding at the beginning of
15248         hs-block-end-regexp (Bug#700).
15250 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
15252         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
15253         a macro.
15254         (gdb-registers-handler-custom): Do not fail when register names
15255         are unavailable.
15257 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
15259         * progmodes/gdb-mi.el (gdb-control-all-threads)
15260         (gdb-control-current-thread): Interactive setters for
15261         `gdb-gud-control-all-threads' to use in menu.
15262         (gdb-show-run-p): Show «Go» when process is not active.
15263         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
15264         gud/thread.xpm and gud/all.xpm.
15266 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
15268         * net/net-utils.el (net-utils-font-lock-keywords): New var.
15269         (nslookup-font-lock-keywords): Make it a variable.
15270         (net-utils-mode): New mode for viewing diagnostic network output.
15271         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
15272         (net-utils-run-simple): New function.
15273         (ifconfig, iwconfig, netstat, arp, route): Use it.
15275 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
15277         * progmodes/gdb-mi.el (gdb-read-memory-custom)
15278         (gdb-memory-set-address, def-gdb-set-positive-number)
15279         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
15280         after changing settings.
15281         (gdb-invalidate-disassembly): Update when first shown.
15282         (gdb-edit-locals-value): Fixed.
15283         (gdb-registers-handler-custom): Print registers in right order and
15284         allow changing register values (only for current thread yet).
15285         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
15286         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
15287         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
15288         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
15289         info in mode name.
15290         (gdb-registers-mode-map): TAB to switch to locals.
15292 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
15294         * mail/rmail.el (rmail-add-mbox-headers)
15295         (rmail-set-message-counters-counter): Search for
15296         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
15298 2009-08-08  Glenn Morris  <rgm@gnu.org>
15300         * Makefile.in (ELCFILES): Update.
15302 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
15304         * mail/sendmail.el (mail-yank-original): Set
15305         buffer-file-coding-system from the one used by the message whose
15306         text is yanked.
15308         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
15309         to "windows" when "pgnuplot" is used.
15310         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
15311         call accept-process-output if "pgnuplot" is used.
15312         (calc-graph-init): Don't send -display and -geometry to
15313         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
15314         running "pgnuplot -V" with shell-command-to-string.
15316         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
15317         the default.
15319 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
15321         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
15322         org/org-latex.elc.
15324 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
15326         * vc-dispatcher.el (vc-resynch-window): Update comment.
15328         * term.el (term-handle-ansi-escape): Add comments with the
15329         terminfo capabilities implemented.
15331 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
15333         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
15334         (gdb-var-create-handler): Rewritten using JSON parser.
15335         (gdb-propertize-header): Moved earlier.
15336         (gdb-set-header): Removed to avoid duplication.
15337         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
15338         Refresh disassembly buffers only after threads list have been
15339         update.
15340         (gdb-threads-header, gdb-registers-header): Per-buffer header line
15341         variables.
15343 2009-08-04  Juri Linkov  <juri@jurta.org>
15345         * files.el: Commands to add/delete file/directory-local variables.
15346         (read-file-local-variable, read-file-local-variable-value)
15347         (read-file-local-variable-mode, modify-file-local-variable)
15348         (modify-file-local-variable-prop-line)
15349         (modify-dir-local-variable): New functions.
15350         (add-file-local-variable, delete-file-local-variable)
15351         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
15352         (add-dir-local-variable, delete-dir-local-variable)
15353         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
15354         (copy-dir-locals-to-file-locals-prop-line): New commands.
15356 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
15358         * abbrev.el (insert-abbrev-table-description): Prettify output.
15359         Suggested by Karl Chen.
15361 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
15363         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
15364         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
15365         (gdb-overlay-arrow-position, gdb-thread-position)
15366         (gdb-disassembly-position): Declare variables.
15367         (gdb-wait-for-pending): Function now.
15368         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
15369         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
15370         compilation goes smoothly.
15371         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
15372         (gdb-non-stop-setting): New customization setting which replaces
15373         `gdb-non-stop' so changing it doesn't break active GDB session.
15374         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
15375         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
15376         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
15377         (gdb-show-threads-by-default): New customization options.
15378         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
15379         routines.
15380         (gdb-get-buffer-create): Send buffers update signal when they are
15381         created.
15382         (gdb-invalidate-locals, gdb-invalidate-registers)
15383         (gdb-invalidate-breakpoints)
15384         (gdb-invalidate-threads, gdb-invalidate-disassembly)
15385         (gdb-invalidate-memory): Accept update signal.
15386         (gdb-current-context-command): Use --frame option.
15387         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
15388         Implement `gdb-frame-number' selection logic.
15389         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
15390         whether to show GUD toolbar buttons.
15391         (gdb-thread-exited): Unselect current thread when it exits.
15392         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
15393         (gdb-mark-line): Routine which sets overlay arrow or inverses
15394         video on fringeless displays.
15395         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
15396         to build aligned columns of data in GDB buffers and set text
15397         properties line-by-line.
15398         (gdb-invalidate-breakpoints)
15399         (gdb-breakpoints-list-handler-custom)
15400         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
15401         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
15402         (gdb-registers-handler-custom): Align data columns.
15403         (gdb-locals-handler-custom): Now prints data like in variable
15404         declarations.
15405         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
15406         Removed confusing buttons.
15407         (gdb-invalidate-threads): Append --frame.
15408         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
15409         between breakpoints/threads buffers.
15410         (gdb-set-window-buffer): Now can ignore dedicated windows.
15411         (gdb-propertize-header): Use `gdb-set-window-buffer'.
15412         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
15413         (def-gdb-thread-buffer-gud-command): Replaces
15414         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
15415         for fine thread control.
15416         (gdb-preempt-existing-or-display-buffer): New function used to
15417         display bound buffers without breaking window layout.
15418         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
15419         (gdb-select-frame): New version of `gdb-frames-select' which now
15420         sets `gdb-frame-number' so commands may use --frame option instead
15421         of inner debugger state.
15422         (gdb-frame-handler): Do not set `gdb-frame-number'.
15423         (gdb-threads-mode-map): Select threads with mouse.
15425         * progmodes/gud.el (gdb-gud-context-call): Declare function to
15426         avoid compilation warning.
15427         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
15428         `gdb-show-stop-p`.
15430         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
15431         Argument `key' renamed to `buffer-type'.
15432         (gdb-current-context-buffer-name): Do not add thread info to
15433         buffer name when no thread is selected.
15434         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
15435         command (bug 3794).
15436         (gdb-thread-selected): Handle `=thread-selected' notification.
15437         (gdb-wait-for-pending): New macro to deal with congestion problems.
15438         (gdb-breakpoints-list-handler-custom): Don't fail on pending
15439         breakpoints.
15440         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
15441         This fixes problem similar to one described in bug 3947.
15442         (gud-menu-map): More menu items.
15443         (gdb-init-1): Reset `gdb-thread-number' to nil.
15445         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
15446         non-stop settings.
15448         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
15449         (gdb-current-context-command): Do not append --thread if
15450         `gdb-thread-number' is nil.
15451         (gdb-running-threads-count, gdb-stopped-threads-count): New
15452         variables.
15453         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
15454         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
15455         customization options.
15456         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
15457         GUD commands.
15458         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
15459         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
15460         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
15461         set `gdb-thread-number' and update `gud-running' properly.
15462         (gdb-running): Update threads list when new threads appear.
15463         (gdb-stopped): Support non-stop operation and new thread switching
15464         logic.
15465         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
15466         (gdb-json-partial-output): New set of JSON routines.
15467         (def-gdb-auto-update-trigger): New `signal-list' optional
15468         argument.
15469         (gdb-thread-list-handler-custom): Update `gud-running',
15470         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
15471         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
15472         (gdb-continue-thread, gdb-step-thread): New commands for fine
15473         thread execution control.
15474         (gud-menu-map): New menu items to switch non-stop options.
15475         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
15476         (gdb-send): Mimic RET properly (bug 3794).
15478         * progmodes/gdb-mi.el (gdb-rules-name-maker)
15479         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
15480         gdb-buffer-rules.
15481         (def-gdb-auto-update-handler): New nopreserve optional argument.
15482         (gdb-stack-list-frames-custom): Print stack from top to bottom.
15484         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
15485         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
15486         (gdb-parent-mode): New mode to derive other GDB modes from.
15487         (gdb-display-disassembly-for-thread)
15488         (gdb-frame-disassembly-for-thread): New commands for threads
15489         buffer.
15491         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
15492         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
15493         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
15494         (gdb-update): We now store all GDB buffers in a list so that they
15495         can be updated by traversing a list instead of calling invalidate
15496         triggers explicitly.
15497         (def-gdb-trigger-and-handler): New macro to define trigger-handler
15498         pair for GDB buffer.
15499         (gdb-stack-buffer-name): Add thread information.
15500         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
15501         handle pending triggers.
15502         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
15503         (def-gdb-thread-buffer-simple-command)
15504         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
15505         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
15506         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
15507         New commands which show buffers bound to thread.
15508         (gdb-stack-list-locals-regexp): Removed unused regexp.
15510         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
15511         (gdb-locals-buffer-name, gdb-registers-buffer-name)
15512         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
15513         to (gud-comint-buffer) in *-buffer-name functions
15514         because (gdb-get-target-string) already does that.
15515         (gdb-locals-handler-custom, gdb-registers-handler-custom)
15516         (gdb-changed-registers-handler): Rewritten without regexps.
15518         * progmodes/gdb-mi.el: Basic thread selection support.
15519         (gdb-thread-number): New variable.
15520         (gdb-current-context-command): New macro which adds --thread
15521         option to command.
15522         (gdb-threads-mode-map): Select thread with SPC.
15523         (gdb-thread-list-handler-custom): Mark current thread with overlay
15524         arrow.  Synchronize GDB thread and Emacs thread.
15525         (gdb-select-thread): New command which selects current thread.
15526         (gdb-invalidate-frames, gdb-invalidate-locals)
15527         (gdb-invalidate-registers): Use --thread option.
15529 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
15531         * net/tramp.el (top): Make check for tramp-gvfs loading more
15532         robust.  (Bug#3977)
15533         (tramp-handle-insert-file-contents): `unwind-protect' must be
15534         inside `with-parsed-tramp-file-name'.
15536         * net/tramp-gvfs.el (top): Remove superfluous message when loading
15537         fails.
15539 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
15541         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
15542         directory if CLASSPATH is not set.
15544 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
15546         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
15547         New defconst.
15548         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
15550 2009-08-02  Kevin Ryde  <user42@zip.com.au>
15552         * net/newst-backend.el (newsticker--raw-url-list-defaults):
15553         Update freshmeat link.  Delete newsforge.com as it seems gone.
15555 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
15557         * select.el (x-set-selection): Doc fix (Bug#4021).
15559         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
15561         * help-fns.el (describe-variable): Treat list return values from
15562         dir-locals-find-file properly (Bug#4005).
15564 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
15566         * net/tramp.el (tramp-debug-message): Print also microseconds.
15568 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
15570         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
15571         or END is non-nil.
15572         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
15573         (tramp-get-debug-buffer): Change `outline-regexp' according to new
15574         format.
15576         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
15577         (tramp-get-file-property): Use it.
15579         * autorevert.el (auto-revert-handler): Allow
15580         `auto-revert-tail-mode' for remote files.
15582 2009-08-02  Jason Rumney  <jasonr@gnu.org>
15584         * minibuffer.el (read-file-name): Treat confirm options to
15585         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
15587 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
15589         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
15590         (font-lock-variable-name-face, font-lock-constant-face): Darken
15591         the colors for light backgrounds.
15593 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
15595         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
15596         month names.  (Bug#3987)
15598 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
15600         * simple.el (line-move-finish): Pass whole number to
15601         line-move-to-column.
15602         (line-move-visual): Perform hscroll to the recorded position.
15604 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
15606         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
15608 2009-07-29  Alan Mackenzie  <acm@muc.de>
15610         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
15612 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
15614         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
15615         (gdb-place-breakpoints): Use full path when setting breakpoints.
15617 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
15619         * calc/calc.el (calc-mode-map): Add keybinding for
15620         `calc-transpose-lines'.
15622 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
15624         * calc/calc-misc.el (calc-transpose-lines): New function.
15626 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
15628         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
15629         Simplify check for out-of-band methods.
15630         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
15631         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
15633 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
15635         * vc-git.el (vc-git-checkin): Fix typo.
15637 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
15639         * progmodes/js2-mode.el: New file.
15641 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
15643         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
15644         (gud-menu-map): Adjust tooltip accordingly.
15646 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
15648         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
15649         (vc-bzr-log-view-mode): Adjust log-view-file-re.
15651         * add-log.el (change-log-mode-map): Add a menu.
15653 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
15655         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
15656         function returns nil.
15657         (dbus-handle-event): Handle special return value :ignore.
15658         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
15660 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
15662         * view.el (view-mode-enable): Don't define Helper-return-blurb if
15663         it's not needed.
15665 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
15667         Fix Bug#3888:
15669         * w32-vars.el (x-select-enable-clipboard): Doc fix.
15671         * term/pc-win.el (x-display-name, x-colors)
15672         (x-select-enable-clipboard, x-select-text): Doc fix.
15674         * term/common-win.el (x-display-name, x-colors): Doc fix.
15676         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
15677         (xw-defined-colors): Doc fix.
15679         * w32-fns.el (x-select-text, x-setup-function-keys)
15680         (x-get-selection, x-set-selection): Doc fix.
15682         * term/x-win.el (x-select-text, x-setup-function-keys)
15683         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
15685         * select.el (x-set-selection): Doc fix.
15687 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
15689         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
15690         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
15691         "IsNSSSupportAvailable" method is not available.  Reported by
15692         Steve Youngs <steve@sxemacs.org>.
15694 2009-07-24  Kenichi Handa  <handa@m17n.org>
15696         * international/characters.el: Fix setting of category ?C, ?|, ?K,
15697         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
15698         (build-unicode-category-table): Fix range checks.
15700 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
15702         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
15703         the buffer we try to sync is current when calling
15704         vc-resynch-buffer.
15706         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
15707         not show up to date files.
15709 2009-07-24  Glenn Morris  <rgm@gnu.org>
15711         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
15712         Add autoload cookies.  If necessary, initialize.
15713         (elint-log): Handle non-file buffers.
15714         (elint-initialize): Add optional argument to reinitialize.
15715         (elint-find-builtin-variables): Save excursion.
15717 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
15719         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
15720         for Lint.
15722 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
15724         * vc.el (vc-print-log-internal): New function, split out from ...
15725         (vc-print-log): ... here.
15726         (vc-dir-move-to-goal-column): Declare.
15728         * vc-git.el (vc-git-add-signoff): New variable.
15729         (vc-git-checkin): Use it.
15730         (vc-git-toggle-signoff): New function.
15731         (vc-git-extra-menu-map): Bind it to menu.
15732         (vc-git--run-command-string): Accept a nil FILE argument.
15733         (vc-git-stash-list): New function.
15734         (vc-git-dir-extra-headers): Use it.
15736 2009-07-23  Glenn Morris  <rgm@gnu.org>
15738         * help-fns.el (describe-variable): Describe ignored and risky local
15739         variables in a similar way to that in which we describe safe ones.
15741         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
15742         (byte-compile-output-file-form, byte-compile-output-docform)
15743         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
15744         Give some more local variables with common names a "bytecomp-" prefix,
15745         so as not to shadow things during compilation.
15746         * emacs-lisp/cl-macs.el (load-time-value)
15747         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
15748         `outbuffer' to `bytecomp-outbuffer'.
15750         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
15751         since the next two variables cover them automatically now.
15752         (elint-builtin-variables, elint-autoloaded-variables): New.
15753         (elint-unknown-builtin-args): Remove all members, since they can be
15754         parsed automatically now.
15755         (elint-extra-errors): New.
15756         (elint-env-add-env, elint-env-add-macro): Use cadr.
15757         (elint-current-buffer): Use or.  Change final message.
15758         (elint-get-top-forms): Use line-end-position.
15759         (elint-init-env): Use cadr.  Handle autoload, declare-function,
15760         and defalias.
15761         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
15762         (regexp-assoc): Remove unused function.
15763         (elint-top-form): Set elint-current-pos, to record the start of the
15764         top-level form, for compilation-mode.
15765         (elint-form): Trap errors in macro expansion.  Use dolist.
15766         (elint-unbound-variable): Use elint-builtin-variables and
15767         elint-autoloaded-variables.
15768         (elint-get-args): Use cadr, or.
15769         (elint-check-cond-form): Use dolist, cadr.
15770         (elint-check-condition-case-form): Doc fix.  Use cadr.
15771         Use elint-extra-errors.
15772         (elint-log): New function.
15773         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
15774         Distinguish errors and warnings.
15775         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
15776         Use a bytecomp-style format.
15777         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
15778         (elint-get-log-buffer): Use compilation mode.  Disable undo.
15779         Don't truncate lines.
15780         (elint-initialize): Set builtin and autoloaded variable lists.
15781         Only process elint-unknown-builtin-args if non-nil.
15782         (elint-find-builtin-variables, elint-find-autoloaded-variables):
15783         New functions.
15784         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
15786 2009-07-22  Kevin Ryde  <user42@zip.com.au>
15788         * net/newst-backend.el (newsticker--parse-atom-1.0)
15789         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
15790         (newsticker--parse-rss-1.0):
15791         * progmodes/idlwave.el (idlwave-mode):
15792         * progmodes/idlw-shell.el (idlwave-shell-mode):
15793         * progmodes/vera-mode.el (vera-mode):
15794         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
15795         * progmodes/vhdl-mode.el (vhdl-mode):
15796         * textmodes/table.el (table-generate-source)
15797         (table--warn-incompatibility):
15798         Hyperlink urls in docstrings with URL `...'.
15800 2009-07-22  Glenn Morris  <rgm@gnu.org>
15802         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
15803         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
15804         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
15805         Remove leading * from defcustom docs.
15807         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
15809         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
15810         defcustom doc.
15811         (list-load-path-shadows): Optionally, just return shadows as a string.
15813         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
15815 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
15817         * mail/rmailedit.el (rmail-edit-mode): Use
15818         auto-save-include-big-deletions.
15820         * mail/rmail.el (rmail-variables): Use
15821         auto-save-include-big-deletions.
15823         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
15824         changes.
15826 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
15828         * calc/calc.el (calc-undo-length): New variable.
15829         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
15831 2009-07-21  Richard Stallman  <rms@gnu.org>
15833         * files.el (auto-save-mode): Handle buffer-save-size = -2
15834         for toggling mode.
15836 2009-07-21  Glenn Morris  <rgm@gnu.org>
15838         * textmodes/ispell.el (ispell-looking-back): Update declaration.
15840         * calendar/todo-mode.el (calendar-current-date): Update declaration.
15842         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
15843         silence compiler.  Instead...
15844         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
15845         (ps-print-ensure-fontified): Update for above function name changes.
15847         * printing.el (pr-mh-get-msg-num, pr-mh-show)
15848         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
15849         silence compiler.  Instead...
15850         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
15851         (mh-show-buffer): Only define for compiler.
15852         (pr-mh-current-message): Update for above function name changes.
15854         * files.el (abort-if-file-too-large): Explicitly pass `filename'
15855         as an argument.
15856         (find-file-noselect, insert-file-1): Update for above change.
15858         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
15860         * mail/mailclient.el (mailclient-send-it): Fix message.
15862         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
15863         (edebug-eval): Check cl-debug-env is bound.
15864         (print-level, print-circle): Don't redefine built-in variables.
15866         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
15867         (custom-print-vectors): Remove old comments from doc.
15869         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
15870         (emerge-version): Make the variable an obsolete alias for the
15871         emacs-version variable.  Make the function obsolete.
15872         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
15873         Emerge options, rather than merging in into the main Options menu.
15874         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
15875         and auto advance modes.  Disable edit/fast items when not relevant.
15877 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
15879         * term/vt420.el (terminal-init-vt420): Fix typo.
15881 2009-07-20  Sam Steingold  <sds@gnu.org>
15883         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
15884         variable (removed from compile.el on 2004-03-11).
15886 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
15888         * files.el (hack-local-variables-filter): Fix last change.
15890 2009-07-19  Juri Linkov  <juri@jurta.org>
15892         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
15893         (dir-local-variables-alist): New buffer-local variable.
15894         (hack-local-variables-filter): If variable is not dir-local,
15895         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
15896         because file-local overrides dir-local.
15897         (c-postprocess-file-styles) <declare-function>:
15898         Remove obsolete declaration.
15899         (hack-dir-local-variables): Add dir-local variable/value pair to
15900         `dir-local-variables-alist' and remove duplicates.  Doc fix.
15902         * help-fns.el (describe-variable): Add information about
15903         file-local and dir-local variables.
15905 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
15907         * files.el (hack-local-variables-filter): Rewrite.
15909 2009-07-19  Glenn Morris  <rgm@gnu.org>
15911         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
15912         Silence compiler by only defining on XEmacs.
15914         * international/mule.el (auto-coding-regexp-alist): Only match
15915         BABYL... at the start of buffer, not of lines.  (Bug#3790)
15917         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
15918         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
15919         (cal-menu-context-mouse-menu): Doc fix.
15921         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
15923         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
15925 2009-07-18  Juri Linkov  <juri@jurta.org>
15927         * info.el: Virtual Info keyword finder.
15928         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
15929         (Info-finder-file): New variable.
15930         (Info-finder-find-file): New function.
15931         (finder-known-keywords, finder-package-info)
15932         (find-library-name, lm-commentary): Use defvar and
15933         declare-function to silence compiler warnings.
15934         (Info-finder-find-node): New function.
15935         (info-finder): New command.
15937         * subr.el (process-kill-buffer-query-function): New function.
15938         (add-hook)<kill-buffer-query-functions>: Add hook
15939         `process-kill-buffer-query-function'.
15941 2009-07-18  Alan Mackenzie  <acm@muc.de>
15943         * progmodes/cc-mode.el (c-before-hack-hook)
15944         (c-postprocess-file-styles): Give invocation of `c-set-style'
15945         DONT-OVERRIDE parameter of t.  Already set style variables will
15946         thus not be overridden by style settings given by `c-file-syle'.
15948         * files.el (hack-local-variables-filter): Remove entries with
15949         duplicate keys from `file-local-variables-alist'.
15951 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
15953         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
15954         x-set-selection if display-selections-p returns nil for the
15955         current frame.
15957 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
15959         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
15961 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
15963         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
15964         Accept nil in addition to a regexp.
15965         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
15966         Accept nil in addition to a regexp.
15967         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
15968         buffers that have an associated file.  Handle nil values of
15969         desktop-buffers-not-to-save and desktop-files-not-to-save.
15970         (Bug#3833)
15972         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
15973         (x-disown-selection-internal): New functions.
15975 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
15977         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
15978         warning.
15979         (gdb-breakpoints-header): Move forward to avoid compiler warning.
15980         (gdb-make-header-line-mouse-map): Remove duplicate definition.
15982 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
15984         * simple.el (set-mark): Revert last change.
15986 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
15988         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
15989         rendering of pngs is not possible instead of messaging a long
15990         description.
15992 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
15994         * w32-fns.el (x-selection-owner-p): New function.
15996         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
15997         (mouse-yank-at-click, mouse-yank-primary): If
15998         select-active-regions is non-nil, deactivate the mark before
15999         insertion.
16001         * simple.el (deactivate-mark, set-mark): Only save selection if we
16002         own it.
16004 2009-07-17  Kenichi Handa  <handa@m17n.org>
16006         * case-table.el (describe-buffer-case-table): Fix for the case
16007         that KEY is a cons.
16009 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
16011         * vc-rcs.el (vc-rcs-find-file-hook):
16012         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
16014 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
16016         * net/tramp.el (tramp-wait-for-output): Handle the case when
16017         commands do not return a newline but a null byte before the shell
16018         prompt.  (Bug#3858)
16020 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16022         * term/ns-win.el (ns-set-alpha): Don't declare.
16023         (ns-set-background-alpha): Remove function.
16025 2009-07-16  Kevin Ryde  <user42@zip.com.au>
16027         * emacs-lisp/copyright.el (copyright-update): Save match-data across
16028         y-or-n-p, for safety.
16030 2009-07-16  Richard Stallman  <rms@gnu.org>
16032         * files.el (auto-save-mode): If buffer-saved-size is -2,
16033         don't clobber it.
16035         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
16036         (rmail-retry-ignored-headers): Add more uninteresting fields.
16038 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
16040         * net/rcirc.el (rcirc): Use history variables.
16041         (rcirc-server-name-history, rcirc-nick-name-history)
16042         (rcirc-server-port-history): New variables.
16044 2009-07-15  Kenichi Handa  <handa@m17n.org>
16046         * international/mule-cmds.el (set-language-environment-charset):
16047         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
16048         ignore them.
16050         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
16051         Delete unibyte-display.
16053 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
16055         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
16057 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
16059         * simple.el (deactivate-mark): Optional argument FORCE.
16060         (set-mark): Use deactivate-mark.
16062         * info.el (Info-search): No need to check transient-mark-mode
16063         before calling deactivate-mark.
16065         * select.el (x-set-selection): Doc fix.
16066         (x-valid-simple-selection-p): Allow buffer values.
16067         (xselect--selection-bounds): Handle buffer values.  Suggested by
16068         David De La Harpe Golden.
16070         * mouse.el (mouse-set-region, mouse-drag-track): Call
16071         copy-region-as-kill before setting the mark, to let
16072         select-active-regions work.
16074 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
16076         * simple.el (deactivate-mark): If select-active-regions is
16077         non-nil, copy the selection data into a string.
16078         (activate-mark): If select-active-regions is non-nil, set the
16079         selection to the current buffer.
16080         (set-mark): Update selection if select-active-regions is non-nil.
16082         * select.el (x-valid-simple-selection-p): Allow buffer values.
16084 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
16086         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
16087         and more featureful message-mode.
16089 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
16091         * select.el (x-set-selection): Doc fix.
16092         (x-valid-simple-selection-p): Disallow selection data consisting
16093         of a list or cons of integers, since that is not used.
16094         (xselect--selection-bounds, xselect--int-to-cons): New functions.
16095         (xselect-convert-to-string, xselect-convert-to-length)
16096         (xselect-convert-to-filename, xselect-convert-to-charpos)
16097         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
16099 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
16101         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
16102         output in -break-info command (Emacs bug #3794).
16104 2009-07-14  Glenn Morris  <rgm@gnu.org>
16106         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
16107         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
16108         (edebug-print-length, edebug-print-level, edebug-print-circle)
16109         (edebug-sit-for-seconds, edebug-view-outside)
16110         (edebug-bounce-point, edebug-set-global-break-condition)
16111         (edebug-Go-nonstop-mode, edebug-trace-mode)
16112         (edebug-Trace-fast-mode, edebug-continue-mode)
16113         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
16114         (edebug-visit-eval-list): Doc fixes.
16116         * subr.el (def-edebug-spec): Doc fix.
16118 2009-07-14  Kenichi Handa  <handa@m17n.org>
16120         * international/characters.el: Fix setting of category ?C.
16122 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
16124         * term/ns-win.el (x-select-font): defalias x-select-font to
16125         ns-popup-font-panel instead of generate-fontset-menu.
16127 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
16129         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
16131 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
16133         * arc-mode.el (archive-find-type): Allow for a PK00 string before
16134         the PK\003\004 header (Bug#3770).
16136 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
16138         * pcomplete.el (pcomplete-comint-setup): Check for
16139         shell-dynamic-complete-filename too.
16141 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
16143         * simple.el (temporary-goal-column): Change the value for
16144         line-move-visual to a cons cell.
16145         (line-move-visual): Record or set the window hscroll, if
16146         necessary (Bug#3494).
16147         (line-move-1): Handle cons value of temporary-goal-column.
16149 2009-07-11  Kenichi Handa  <handa@m17n.org>
16151         * international/mule-diag.el (describe-character-set): Don't show
16152         width.
16154 2009-07-10  Sam Steingold  <sds@gnu.org>
16156         * progmodes/compile.el (compilation-mode-font-lock-keywords):
16157         Omake sometimes indents the errors it prints, so allow all
16158         regexps to start with spaces.
16160 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
16162         * cus-edit.el (customize-changed-options-previous-release):
16163         Bump value to 22.1.  (Bug#3804)
16165 2009-07-08  Sam Steingold  <sds@gnu.org>
16167         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
16168         to be a cons cell (test . ignored-directory) to selectively ignore
16169         some directories depending on the location of the search.
16171 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
16173         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
16174         remote user is root, on the local host.
16175         (tramp-local-host-p): Either the local user or the remote user
16176         must be root.  (Bug#3771)
16178 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
16180         * progmodes/gdb-mi.el (gdb): Remove description of
16181         gdb-use-separate-io-buffer.
16182         (menu): Don't allow toggling of or enable
16183         gdb-use-separate-io-buffer from menubar.
16185 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
16187         * mail/unrmail.el (unrmail): Make sure the message ends with two
16188         newlines (Bug#3769).
16190 2009-07-08  Glenn Morris  <rgm@gnu.org>
16192         * calendar/calendar.el (calendar-current-date): Rework previous change.
16194 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
16196         * calendar/calendar.el (calendar-current-date):
16197         Add an optional argument giving an offset from today.
16199 2009-07-08  Glenn Morris  <rgm@gnu.org>
16201         * tutorial.el (tutorial--describe-nonstandard-key):
16202         Adjust the message for when a key has been unbound.
16203         (help-with-tutorial): Hide the arch-tag.
16205 2009-07-08  Kenichi Handa  <handa@m17n.org>
16207         * international/fontset.el (setup-default-fontset): For each
16208         script, append (not set) font-specs.
16210         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
16211         docstring.
16213 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
16215         * progmodes/gdb-mi.el (gdb-init-1): Move sending
16216         -data-list-register-names to ...
16217         (gdb-starting): ... here because GDB 7.0 requires execution to
16218         have started when using this MI command.
16219         (gdb-set-header): New function to distinguish select and
16220         unselected tabs in gdb buffers.
16221         (gdb-propertize-header): New macro that uses gdb-set-header.
16222         (gdb-breakpoints-header, gdb-locals-header): Use it.
16223         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
16225 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
16227         * Makefile.in (ELCFILES): Remove fadr.elc.
16229 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
16231         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
16232         may contain frame information, so `string-match' should be used.
16233         (gdb-update): Disassembly is invalidated through
16234         `gdb-get-selected-frame'.
16235         (gdb-pad-string): New function to pad string with spaces.
16236         (gdb-invalidate-disassembly): Invalidate only if the buffer
16237         exists.
16238         (gdb-disassembly-handler-custom): Column alignment.
16239         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
16240         placing new ones.
16241         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
16242         end of line, too.
16243         (gdb-frame-handler): Match convention to for disassembly buffer
16244         mode name.
16245         (gdb-stack-list-frames-handler): Rewritten without regexps.
16246         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
16247         not highlight breakpoints without line information.
16248         (gdb-input): Add trailing newline to command.
16250         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
16251         buffer properly.
16252         (gdb-breakpoints-list-handler-custom): Replacement for
16253         `gdb-break-list-handler'.  Using real parser instead of regexps
16254         now.
16255         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
16256         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
16257         to place breakpoints.
16258         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
16259         functions.
16260         (gdb-disassembly-handler-custom): Show overlay arrow.
16261         (gdb-disassembly-place-breakpoints): Show breakpoints in
16262         disassembly buffer.
16263         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
16264         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
16265         instead of parsing breakpoints buffer.  Fixed old menu references
16266         in `gud-menu-map'.
16268         * fadr.el: Remove.
16270         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
16271         (gdb-memory-address): New variable which holds top address of
16272         memory page shown in memory buffer.
16273         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
16274         customization variables.
16275         New functions:
16276         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
16277         display the memory buffer.
16278         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
16279         buffer display parameters.
16280         (def-gdb-memory-format, gdb-memory-format-binary)
16281         (gdb-memory-format-octal, gdb-memory-format-unsigned)
16282         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
16283         Functions for setting memory buffer format.
16284         (gdb-memory-unit-word, gdb-memory-unit-halfword)
16285         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
16286         unit size used in memory buffer.
16287         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
16288         to next/previous page of memory buffer.
16289         Now using (bindat-get-field) instead of fadr functions.
16291 2009-07-07  Sam Steingold  <sds@gnu.org>
16293         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
16294         non-top-level files.
16296 2009-07-07  Kenichi Handa  <handa@m17n.org>
16298         * international/mule-cmds.el (reset-language-environment): Put
16299         the highset priority to the charset iso-8859-1.
16301 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
16303         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
16304         to the end of the line when locating the block (Bug#700).
16306 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
16308         * net/tramp.el (tramp-handle-write-region): Flush file properties
16309         in case of short track.
16311 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
16313         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
16314         Coded custom representation of verilog error regular expressions
16315         to work with Emacs-22's new format.
16316         (verilog-error-regexp-xemacs-alist): Coded custom representation
16317         of verilog error regular expressions to work with XEmacs format.
16318         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
16319         error recognition into XEmacs.
16320         (verilog-error-regexp-add-emacs): Hook routine to install verilog
16321         error recognition into Emacs-22.
16323 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
16325         * woman.el: Remove stand-alone closing parentheses.
16326         (woman-file-name, woman2-format-paragraphs)
16327         (woman-leave-blank-lines): Code cleanup.
16328         (woman-use-own-frame): Change default to nil.
16329         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
16330         defaults to inherit from default faces.
16331         (woman2-process-escapes): Consume the newline after a stand-alone
16332         filler character (Bug#3651).
16334 2009-07-06  Glenn Morris  <rgm@gnu.org>
16336         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
16337         (top-level): Move provide to the end.
16338         (ffap): Remove defunct URL from custom group.
16340         * subr.el (eval-after-load): Doc fix.
16342 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
16344         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
16345         `calc-embedded-word' is called twice.
16347 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16349         * files.el (find-alternate-file-other-window, find-alternate-file):
16350         Obey confirm-nonexistent-file-or-buffer.
16352 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
16354         * dired-aux.el (dired-show-file-type): Handle remote files.
16356 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
16358         * desktop.el (desktop-globals-to-save):
16359         Add file-name-history (Bug#2750).
16361 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
16363         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
16365 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
16367         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
16368         property on entire argument since this is what eshell-lisp-command
16369         expects.
16371 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
16373         * net/tramp-gvfs.el (tramp-gvfs-methods)
16374         (tramp-gvfs-zeroconf-domain)
16375         (tramp-bluez-discover-devices-timeout): Add version flag.
16376         (tramp-gvfs-handler-mounted-unmounted)
16377         (tramp-gvfs-connection-mounted-p): Polish handling of
16378         incompatibilities between GVFS 0.2 and 1.0.
16380 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
16382         * cus-start.el (all): Add make-pointer-invisible.
16384 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
16386         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
16387         formatted correctly.
16389 2009-07-02  Juri Linkov  <juri@jurta.org>
16391         * info.el: Virtual Info files and nodes.
16392         (Info-virtual-files, Info-virtual-nodes): New variables.
16393         (Info-current-node-virtual): New variable.
16394         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
16395         New functions.
16396         (Info-file-supports-index-cookies): Use Info-virtual-file-p
16397         to check for a virtual file instead of checking a fixed list
16398         of node names.
16399         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
16400         instead of ad-hoc processing of "dir" and (apropos history toc).
16401         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
16402         instead of ad-hoc processing of "dir" and (apropos history toc).
16403         Reread a file when moving from a virtual node.
16404         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
16405         (Info-directory-toc-nodes, Info-directory-find-file)
16406         (Info-directory-find-node): New functions.
16407         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
16408         (Info-history): Move part of code to
16409         `Info-history-find-node'.
16410         (Info-history-toc-nodes, Info-history-find-file)
16411         (Info-history-find-node): New functions.
16412         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
16413         (Info-toc): Move part of code to `Info-toc-find-node'.
16414         (Info-toc-find-node): New function.
16415         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
16416         the current Info file name to references because now the node
16417         "*TOC*" belongs to the same Info manual.
16418         (Info-toc-build): Rename from `Info-build-toc'.
16419         (Info-toc-nodes): Rename input argument `file' to `filename'.
16420         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
16421         instead of ad-hoc processing of ("dir" apropos history toc).
16422         (Info-index-nodes): Use Info-virtual-file-p
16423         to check for a virtual file instead of checking a fixed list
16424         of node names.
16425         (Info-index-node): Add check for `Info-current-node-virtual'.
16426         Raise `save-match-data' higher up the tree to contain
16427         `search-forward' too (bug fix).
16428         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
16429         (Info-virtual-index-nodes): New variable.
16430         (Info-virtual-index-find-node, Info-virtual-index): New functions.
16431         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
16432         (Info-apropos-file, Info-apropos-nodes): New variables.
16433         (Info-apropos-toc-nodes, Info-apropos-find-file)
16434         (Info-apropos-find-node, Info-apropos-matches): New functions.
16435         (info-apropos): Move part of code to `Info-apropos-find-node' and
16436         `Info-apropos-matches'.
16437         (Info-mode-map): Bind "I" to `Info-virtual-index'.
16438         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
16439         for a virtual file instead of checking a fixed list of node names.
16441         * simple.el (async-shell-command): New command.
16443         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
16445         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
16446         instead of `mount-info'.
16448 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
16450         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
16451         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
16453 2009-07-02  Kenichi Handa  <handa@m17n.org>
16455         * international/mule.el (set-keyboard-coding-system): Force *-unix
16456         coding-system to avoid eol conversion.
16458 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
16460         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
16461         Add handler for `process-file', `shell-command' and
16462         `start-file-process'.
16463         (tramp-gvfs-handle-shell-command)
16464         (tramp-gvfs-handle-start-file-process)
16465         (tramp-gvfs-handle-process-file): New defuns.
16466         (tramp-synce-list-devices): Simplify check for existence of property.
16468 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
16470         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
16472 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
16474         * language/korean.el (set-language-info-alist): Add korean-cp949,
16475         cp949 to spec.
16477 2009-07-01  Kenichi Handa  <handa@m17n.org>
16479         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
16481         * international/encoded-kb.el: Deleted.
16483         * international/mule.el (set-keyboard-coding-system): Perform the
16484         necessary setup here instead of calling encoded-kbd-setup-display.
16486 2009-07-01  Glenn Morris  <rgm@gnu.org>
16488         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
16490 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
16492         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
16494 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
16496         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
16497         Handle also the 'rename case, when setting file modes.  (Bug#3712)
16498         (tramp-default-file-modes): Remove execute permissions.
16500         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
16501         (top): Add a default for "synce" in `tramp-default-user-alist'.
16502         Add completion function for "synce" method.
16503         (tramp-hal-service, tramp-hal-path-manager)
16504         (tramp-hal-interface-manager, tramp-hal-interface-device):
16505         New defconst.
16506         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
16507         (tramp-synce-list-devices, tramp-synce-parse-device-names):
16508         New defuns.
16510         * net/trampver.el: Update release number.
16512 2009-06-30  Kenichi Handa  <handa@m17n.org>
16514         * international/fontset.el (setup-default-fontset): Add CJK fonts
16515         for symbols and the other miscellaneous characters.
16517         * language/korea-util.el (setup-korean-environment-internal):
16518         Make char-width-table suitable for Korean environments.
16519         (exit-korean-environment): Cancel above.
16521         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
16522         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
16523         setup-function to make char-width-table suitable for respective
16524         environments, and an exit-function to cancel that.
16526         * language/japan-util.el (setup-japanese-environment-internal):
16527         Call use-cjk-char-width-table with arg `ja_JP'.
16529         * international/characters.el (cjk-char-width-table): Delete it.
16530         (cjk-char-width-table-list): New variable.
16531         (use-cjk-char-width-table): New arg local-name.
16532         (use-default-char-width-table): Fix for the case that Emacs is
16533         already using the default char-width-table.
16535 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
16537         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
16538         modes mandatory.  (Bug#3712)
16540 2009-06-29  Alan Mackenzie  <acm@muc.de>
16542         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
16543         correction between the visible width of TABs and their number of bytes.
16545 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
16547         * server.el (server-buffer-done): Prevent kill-buffer from
16548         prompting by clearing the buffer modification flag (Bug#3696).
16550 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
16552         * progmodes/verilog-mode.el (verilog-beg-of-statement)
16553         (verilog-endcomment-reason-re): Support unique case and priority case.
16554         (verilog-basic-complete-re): Support localparam lineup.
16555         (verilog-beg-of-statement-1): Fix for robustness, unique case.
16556         (verilog-set-auto-endcomments): Fix for unique case, always_comb
16557         commenting.
16558         (verilog-leap-to-case-head): Now support *nested* unique &
16559         priority case statements.
16560         (verilog-auto-lineup): Make just declarations the default (as it
16561         had been).
16562         (verilog-leap-to-case-head): Support priority/unique case statements.
16563         (verilog-auto-lineup): Rework to give users radio buttons to
16564         select the various styles of automatic lineup.
16565         (verilog-error-regexp-alist): Rework to support the XEmacs style
16566         of error regular expressions from compilers, lint tools &
16567         simulators.  Note that GNU Emacs has made it impossible for a mode
16568         to load such things.
16569         (electric-verilog-terminate-line, verilog-indent-declaration)
16570         (verilog-auto-wiure): Rework for radio button selection of
16571         auto-lineup selection of specification of auto lineup.
16572         (verilog-beg-of-statement-1): Redesign to support proper operation
16573         in additional code, based on testing with auto-lineup.
16574         (verilog-calculate-indent, assignments & declarations)
16575         (verilog-backward-token): Enhance to support auto-lineup of
16576         assignments & declarations.
16577         (verilog-in-directive-p, verilog-at-struct-p): New function for
16578         easy test of whether we are.
16579         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
16580         to support safe execution at almost anyline.
16581         (verilog-calc-1): Properly support indenting deep inside generate
16582         blocks.
16583         (verilog-init-font): Remove definition & use of verilog-init-font,
16584         as it is redundant with font-lock-defaults.
16585         (verilog-mode): Alter the definition of verilog-font-lock-defaults
16586         to avoid circular calls if syntax-ppss is a function (as is the
16587         case now in 22.x GNU Emacs) as that function would sometimes call
16588         itself, leading to (nearly) infinite recursion.
16589         (verilog-ovm-begin-re, verilog-ovm-end-re)
16590         (verilog-ovm-statement-re, verilog-leap-to-head)
16591         (verilog-backward-token): Add support for OVM macros.  Some are
16592         complete statements, and others open and close scopes like begin
16593         and end.
16594         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
16595         (verilog-defun-level-generate-only-re): Really fix the defun-list
16596         compilation issue.
16597         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
16598         coverpoint, constraint and cross statements.
16599         (verilog-defun-level-list, verilog-generate-defun-level-list)
16600         (verilog-all-defun-level-list): Redo these specifications - it is
16601         too hard to support eval-when compile aggregation of lists also
16602         built at when-compile time.
16603         (verilog-defun-level-list): Place defconsts of variables used in
16604         building regular expressions which are built in eval-when-compile
16605         bodies in the same eval-when-compile body to facilitate compile
16606         without load.
16607         (verilog-beg-block-re-ordered): Support indenting
16608         virtual/protected tasks and functions.
16609         (verilog-defun-level-list, verilog-in-generate-region-p)
16610         (verilog-backward-ws&directives, verilog-calc-1): Speed up
16611         indentation of some module items (generate items).
16612         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
16613         across virtual/protected tasks and functions.
16615 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
16617         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
16618         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
16619         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
16620         in concatenations.  Reported by Yishay Belkind.
16621         (verilog-auto-ascii-enum): Support one-hot state machines in
16622         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
16623         (verilog-auto-inst, verilog-auto-inst-port): Include interface
16624         modport in AUTOINST and add vl-modport for users.  Reported by
16625         David Rogoff.
16626         (verilog-auto-inout-module, verilog-auto-inst)
16627         (verilog-decls-get-interfaces, verilog-insert-definition)
16628         (verilog-insert-one-definition, verilog-read-decls)
16629         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
16630         (verilog-sig-modport, verilog-signals-combine-bus)
16631         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
16632         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
16633         Suggested by David Rogoff.
16634         (verilog-repair-open-comma): Fix non-insertion of comma when
16635         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
16636         (verilog-make-width-expression): Simplify [A-1:0] expression
16637         widths to just {A{1'b0}}.
16638         (verilog-mode): Cleanup checkdoc warnings.
16639         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
16640         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
16641         inputs/outputs or data type.  Suggested by Vasu Kandadi.
16642         (next-error-last-buffer): Fix byte-compiler warning.
16643         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
16644         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
16645         or shell command text during AUTO expansion.  Suggested by Tad Truex.
16646         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
16647         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
16648         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
16649         in AUTOINOUT.  Reported by Matthew Lovell.
16650         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
16651         causing use of <= assignments.  Reported by Alex Reed.
16652         (verilog-read-decls): Fix triand, trior, wand, wor to be
16653         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
16654         (verilog-extended-complete-re): Support import "DPI-C" functions.
16655         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
16656         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
16657         (verilog-insert-date, verilog-insert-year)
16658         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
16659         Windows systems.  Reported by Michael Potts.
16660         (verilog-read-module-name): Fix AUTOINST when the child module
16661         declaration's name is a tick define.  Reported by Elliot Mednick.
16662         (verilog-read-decls): Fix V2K parameter bit subscripts getting
16663         passed to next parameter's definition.  Reported by Bruce T.
16664         (verilog-read-decls): Fix detecting "parameter int" when using
16665         AUTOINSTPARAM.  Reported by Bruce T.
16666         (verilog-goto-defun): Fix goto not finding modules unless first
16667         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
16668         (verilog-mode): Expand -f flag arguments on entry to mode so
16669         verilog-goto-defun will work.  Reported by Lawrence Butcher.
16670         (verilog-getopt): Expand environment variables in -f file
16671         arguments.  Suggested by Lawrence Butcher.
16672         (verilog-set-define): Fix "Symbol's value as variable is void"
16673         when reading enumerations.
16674         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
16675         Suggested by Stephen Peltan.
16676         (verilog-read-defines): Fix reading of enumerations in include
16677         files.  Reported by Steve Peltan.
16679 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
16681         * files.el (trash-directory): Fix defcustom type.
16683 2009-06-28  Juri Linkov  <juri@jurta.org>
16685         * help-fns.el (describe-function-1): Correctly locate adviced
16686         functions in hyperlink (Bug#2438).
16688 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
16690         * files.el (trash-directory): Change default to nil.
16691         (move-file-to-trash): If trash-directory is nil and
16692         system-move-file-to-trash is unbound, perform freedesktop-style
16693         trashing.
16695 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
16697         * files.el (move-file-to-trash): Add freedesktop trash
16698         support (Bug#973).
16700 2009-06-28  Glenn Morris  <rgm@gnu.org>
16702         * autorevert.el (global-auto-revert-non-file-buffers)
16703         (global-auto-revert-mode): Doc fixes.
16705 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
16707         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
16709 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
16711         * faces.el (x-handle-named-frame-geometry): Ensure that we have
16712         opened an X connection before calling x-get-resource (Bug#3194).
16714         * play/doctor.el: Remove reference to obsolete website.
16715         (make-doctor-variables): Correct grammar mistake (Bug#2633).
16717 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
16719         Remove find-file-not-found-hook VC method.  (Bug#2757)
16720         * vc-hooks.el (vc-file-not-found-hook)
16721         (vc-default-find-file-not-found-hook): Remove functions.
16722         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
16723         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
16724         * vc.el:
16725         * vc-hg.el:
16726         * vc-git.el: Do not mention find-file-not-found-hook VC method.
16728 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
16730         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
16731         compatibility function for `looking-back'.
16733         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
16734         Use `ispell-looking-back'.
16736 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
16738         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
16739         rather than `filename'.
16741 2009-06-23  Miles Bader  <miles@gnu.org>
16743         * face-remap.el (text-scale-set): New function.
16745 2009-06-23  Glenn Morris  <rgm@gnu.org>
16747         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
16749         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
16751         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
16753         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
16755         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
16756         Simplify Persian conditionals.
16758         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
16759         variable `filename'.
16761         * comint.el (comint-insert-input): Doc fix.
16763         * Makefile.in (ELCFILES): Fix typo in previous change.
16765 2009-06-23  Miles Bader  <miles@gnu.org>
16767         * cus-start.el: Add entry for `recenter-redisplay'.
16769 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
16771         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
16772         Add an optional argument for the backend, use it instead of
16773         calling vc-backend.
16774         (vc-mode-line): Add an optional argument for the backend.
16775         Pass the backend to vc-state and vc-working-revision.  Move code for
16776         special handling for vc-state being a buffer to ...
16778         * vc-rcs.el (vc-rcs-find-file-hook):
16779         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
16781         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
16782         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
16783         vc-stay-local-p and vc-mode-line calls.
16785         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
16786         (vc-cvs-diff, vc-cvs-annotate-command)
16787         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
16788         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
16789         vc-mode-line calls.
16791         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
16792         direct comparison.
16793         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
16794         backend when calling vc-mode-line.
16795         (vc-register): Do not create a closure for calling the vc register
16796         function, call it directly.
16798 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
16800         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
16801         to make it obvious item can be clicked.
16803         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
16805 2009-06-23  Kenichi Handa  <handa@m17n.org>
16807         * language/korea-util.el (korean-key-bindings): Change the binding
16808         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
16809         same command.
16811 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
16813         Sync with Tramp 2.1.16.
16815         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
16817         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
16818         when a loading of a package fails.  Completion function for rsync
16819         is `tramp-completion-function-alist-ssh'.
16820         (all): Replace all calls of `split-string' and
16821         `tramp-split-string' by `tramp-compat-split-string'.
16822         (tramp-default-method): Use `tramp-compat-process-running-p'.
16823         (tramp-default-proxies-alist): Allow also Lisp forms.
16824         (tramp-remote-path): Add choice "Private Directories".
16825         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
16826         (tramp-domain-regexp): Allow also "-", "_" and ".".
16827         (tramp-end-of-output): Remove newlines, and add "$" at the end.
16828         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
16829         (tramp-debug-message): Insert header line in debug buffer.
16830         (tramp-handle-directory-files-and-attributes-with-stat):
16831         Care about filenames with spaces, or starting with "-".
16832         (tramp-handle-dired-uncache): New defun.
16833         (tramp-handle-insert-directory): Don't flush the directory from
16834         cache, this is handled by `dired-uncache' now.
16835         (tramp-handle-insert-file-contents): Improve error handling.
16836         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
16837         Quote `tramp-end-of-output'.
16838         (tramp-action-password): Improve trace message.
16839         (tramp-check-for-regexp): Both echoes must be present, before removing.
16840         (tramp-open-connection-setup-interactive-shell): Trace coding system.
16841         (tramp-compute-multi-hops): Eval cons cells of
16842         `tramp-default-proxies-alist'.
16843         (tramp-maybe-open-connection): Use the same command pattern for
16844         first hop and further hops.
16845         (tramp-wait-for-output): Remove handling of newlines.
16846         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
16847         (tramp-split-string): Remove function.  It is handled in
16848         tramp-compat now.
16850         * net/tramp-cmds.el (tramp-bug):
16851         Recommend `tramp-cleanup-all-connections' in the bug mail.
16853         * net/tramp-compat.el (tramp-compat-split-string)
16854         (tramp-compat-process-running-p): New defuns.
16856         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
16857         for `dired-uncache'.
16859         * net/tramp-gvfs.el: New package.
16861         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
16862         Add handler for `dired-uncache'.
16863         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
16865         * net/trampver.el: Update release number.  Make version check fit
16866         for SXEmacs 22.
16868 2009-06-22  Jim Meyering  <meyering@redhat.com>
16870         Automatically handle .xz suffix (XZ-compressed files), too.
16871         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
16872         XZ is the successor to LZMA: <http://tukaani.org/xz/>
16874 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
16875             Nick Roberts  <nickrob@snap.net.nz>
16877         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
16878         repository (http://sphinx.net.ru/hg/gdb-mi/).
16880 2009-06-22  Glenn Morris  <rgm@gnu.org>
16882         * files.el (dir-locals-collect-mode-variables): Allow for any number of
16883         `mode' and `eval' entries.  (Bug#3430)
16885         * Makefile.in (ELCFILES): Add fadr.elc.
16887         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
16888         differing behavior of \n and ^ in strings.  (Bug#3385)
16890         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
16892         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
16893         property.
16894         (lisp-indent-function): Make it a defcustom.
16896 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
16898         * progmodes/gdb-ui.el: Replace with ...
16899         * progmodes/gdb-mi.el: ... this file.
16900         * progmodes/gud.el: Modify for gdb-mi.el.
16902 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
16904         * fadr.el: New file.
16906 See ChangeLog.14 for earlier changes.
16908 ;; Local Variables:
16909 ;; coding: utf-8
16910 ;; End:
16912     Copyright (C) 2009, 2010  Free Software Foundation, Inc.
16914   This file is part of GNU Emacs.
16916   GNU Emacs is free software: you can redistribute it and/or modify
16917   it under the terms of the GNU General Public License as published by
16918   the Free Software Foundation, either version 3 of the License, or
16919   (at your option) any later version.
16921   GNU Emacs is distributed in the hope that it will be useful,
16922   but WITHOUT ANY WARRANTY; without even the implied warranty of
16923   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16924   GNU General Public License for more details.
16926   You should have received a copy of the GNU General Public License
16927   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16929 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1